{"info":{"_postman_id":"df3625f0-1bb3-485a-9ac3-309ed0e0aa33","name":"ATS-CONNECT API","description":"<html><head></head><body><p>ATS Connect acts as an intermediary controller between client-side code and the Applicant Tracking System [ATS].</p>\n\n<h2>Authentication</h2>\n\n<p>To use ATS Connect you must provide your API key in the header of your POST call. Always keep your API key secret!</p>\n\n<p>All requests must be made over an encrypted<a href=\"http://en.wikipedia.org/wiki/HTTP_Secure\">HTTPS</a>connection.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /job/get HTTPS/1.1\nHost: api.ats-connect.com\napikey: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nContent-Type: application/json\nAccept: application/json\nCache-Control: no-cache\n\n</code></pre><h2>Call Basics</h2>\n\n<p>All calls made to ATS Connect are <b>POST</b> calls.</p>\n\n<p>There are two sets of hashes that are sent in the body of the call when a post is intitiated:</p>\n\n<ul><li><p><b>api_connect_data</b> - the ats credentials, along with various variables for debugging and development.</p></li><ul><li><p>api_connection: the credentials for the specific ATS</p></li><li><p>vendor: the specific ATS</p></li><li><p>api_performance_dump: if set to '1' will dump each call made in the process to the error log</p></li><li><p>api_verbose_dump: if set to '1' will dump to the error log full details of the last call made</p></li></ul></ul>\n\n<p><b>Example:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_connect_data\":{\n    \"api_connection\":{[ATS specific credentials]},\n    \"vendor\":\"bullhorn\",\n    \"api_performance_dump\":0,\n    \"api_verbose_dump\":0\n}\n\n</code></pre><ul><li><p><b>api_request_data</b> - the information being sent in the request as three separate hashes, however, not all calls utilize or even need them.&nbsp;Please refer to each call. See below.</p></li><ul><li><p><b>api_request_query</b> - a hash of key:value parameters that you want to query for</p></li><li><p><b>api_request_fields</b>- values separated by spaces - the fields you want returned in addition to the default fields</p></li><li><p><b>api_request_custom</b> - a hash of key:value parameters specific to the ATS</p></li></ul></ul>\n\n<p><b>Example:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_request_data\":{\n    \"api_request_query\":{\n        \"first_name\":\"Joe\",\n        \"last_name\":\"Smith\"\n    },\n    \"api_request_fields\":\"password dateAdded\",\n    \"api_request_custom\":\"\"\n}\n\n</code></pre><p><b>Example of a complete call:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /candidate/get HTTPS/1.1\nHost: api.ats-connect.com\napikey: xxxxxxxxxxxxxxxxxxxxxxxxxxx\nContent-Type: application/json\nAccept: application/json\nCache-Control: no-cache\n{    \"api_connect_data\":{        \"api_connection\":{            \"api_un\":\"haley.marketing\",            \"api_pw\":\"Haley2016bh!!\",            \"api_id\":\"xxxxxxxxxxxxx\",            \"api_secret\":\"xxxxxxxxx\"        },        \"vendor\":\"bullhorn\",        \"api_performance_dump\":0,        \"api_verbose_dump\":0    },    \"api_request_data\":{        \"api_request_query\":{            \"first_name\":\"Joe\",            \"last_name\":\"Smith\"        },        \"api_request_fields\":\"password dateAdded\",        \"api_request_custom\":\"\"    }}\n\n</code></pre><h2>Call Breakdown</h2>\n\n<h3>Get/Search Calls</h3>\n\n<ul><li><p><b>api_request_query:</b> A hash, the key:value pairs you wish to query for. The keys being values from the default request fields (see below). <b>NOTE:</b> If the ATS supports searching, please see the documentation below for the specific syntax for searches.<br></p></li><li><p><b>api_request_fields:</b> You may specify additional fields you want returned by populating this parameter with space separated values. This list will accept both default request fields and ATS specific fields.<br><br></p><h4>Default Fields Returned:</h4><p>Unless specified by the \"api_request_fields\" parameter, these are the values returned by default. If a value is not supported by the ATS the value is returned as null.</p><p><b>JOBS</b></p><ul><li><p>id</p></li><p></p><li><p>title</p></li><p></p><li><p>status</p></li><p></p><li><p>date_added</p></li><p></p><li><p>pay_rate</p></li><p></p><li><p>address</p></li><p></p><li><p>description</p></li><p></p><li><p>type</p></li><p></p><li><p>category</p></li><p></p><li><p>reply_to</p></li><p></p><li><p>url</p></li><p></p><li><p>rep_user</p></li><p></p><li><p>requirements</p></li><p></p></ul><p><b>CANDIDATES</b></p><ul><li><p>id</p></li><p></p><li><p>first_name</p></li><p></p><li><p>last_name</p></li><p></p><li><p>email</p></li><p></p><li><p>phone</p></li><p></p><li><p>cell_phone</p></li><p></p><li><p>address</p></li><p></p><li><p>date_of_birth</p></li><p></p><li><p>disability</p></li><p></p><li><p>ethnicity</p></li><p></p><li><p>gender</p></li><p></p><li><p>veteran</p></li><p></p><li><p>opt_out</p></li><p></p><li><p>referral_source</p></li><p></p><li><p>description</p></li><p></p><li><p>resume_html</p></li><p></p><li><p>date_added</p></li><p></p><li><p>skills</p></li><p></p><li><p>pay_rate</p></li><p></p><li><p>title</p></li><p></p><li><p>type</p></li><p></p><li><p>categories</p></li><p></p><li><p>category</p></li><p></p><li><p>rep_user</p></li></ul><p><b>APPLICATIONS</b></p><ul><li><p>id</p></li><p></p><li><p>status</p></li><p></p><li><p>candidate</p></li><p></p><li><p>job</p></li><p></p><li><p>note</p></li><p></p><li><p>referral_source</p></li><p></p><li><p>rep_user</p></li></ul></li></ul>\n\n<h3>Set/Update Calls</h3>\n\n<ul><li><p><b>api_request_query:</b> A hash, the key:value pairs you wish to submit to the ATS. The keys being values from the default request fields.<br></p></li><li><p><b>api_request_custom:</b> You may submit additional ATS specific data by populating this parameter with a hash, the keys being from the specific ATS in use.<br></p></li></ul>\n\n<h3>Custom Calls</h3>\n\n  \n<p>These parameters are used <strong>only</strong> when making a custom call. Not all ATSs allow for custom calls, please see documentation below.  </p>\n<ul><li><p><b>api_custom_call</b> - single value e.g. ‘Candidate’, ‘Job’, ‘Application’</p></li><li><p><b>api_custom_action</b>- single value e.g. 'GET' or 'POST'</p></li><li><p><b>api_request_query</b> - optional - see specific call documentation below</p></li><li><p><b>api_request_fields</b>- optional - see specific call documentation below</p></li><li><p><b>api_request_custom</b> - optional - see specific api documentation for the specific ATS</p></li></ul>\n\n<h2>Successful Response</h2>\n\n<p>ATS Connect's successful response consists of four bodies of data: atsconnect_ticket, atsconnect_status, atsconnect_message, and api_response.</p>\n\n<ol><li><p><b>atsconnect_ticket</b> will contain the call specifics</p></li><li><p><b>atsconnect_status</b> will contain a single digit '1' or '0' for success or fail respectively</p></li><li><p><b>atsconnect_message</b> will be empty if atsconnect_status is 1 and will contain an error message if atsconnect_status is 0.</p></li><li><p><b>api_response</b> will contain all of the api call data, inlcluding the api status, call attempts, call time, messages, and the returned api data</p></li></ol>\n\n<p><b>Example:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"atsconnect_ticket\": {\n        \"request\": {\n            \"call\": \"https://rest9.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=100&amp;query=isDeleted:0 AND email:test5@Test071316.com&amp;showEditable=false&amp;meta=off&amp;sort=-id&amp;fields=id,email,firstName,lastName,address,comments&amp;BhRestToken=xxxxxxxx&amp;start=0\",\n            \"values\": \"\"\n        },\n        \"fn\": \"_api_candidate\",\n        \"key\": \"xxxxxxxxxxxx\",\n        \"elapsed\": \"0.647253\",\n        \"api version\": \"1.0\",\n        \"vendor\": \"bullhorn\"\n    },\n    \"atsconnect_status\": \"1\",\n    \"atsconnect_message\": \"\",\n        \"api_response\": {\n        \"api_status\": \"1\",\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CALL_TIME\": 0.575668,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2016-11-28T15:33:59\",\n            \"APIKEY\": \"xxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_data\": {\n            \"count\": 1,\n            \"candidates\": [ {\n                \"address\": {\n                    \"country\": \"CA\",\n                    \"address1\": \"123 Any Street\",\n                    \"zip\": \"04563\",\n                    \"address2\": null,\n                    \"state\": \"MAINE\",\n                    \"city\": \"Portland\"\n                },\n                \"phone\": null,\n                \"first_name\": \"Test5\",\n                \"email\": \"test5@Test071316.com\",\n                \"resume_data\": null,\n                \"last_name\": \"Test071316\",\n                \"api_request_custom\": {\n                    \"_score\": 1,\n                    \"comments\": \"\"\n                },\n                \"id\": 180\n                }\n            ]\n        }\n    }\n}\n\n</code></pre><h2>Error Reporting</h2>\n\n<p>ATS Connect's error response can happen one of two ways: atsconnect failure, or an api failure.</p>\n\n<ol><li><p>If it is an ATS Connect error: <b>atsconnect_status</b> will contain a single digit '0' and <b>atsconnect_message</b> will contain the error message.</p></li><li><p>If it is an API error: <b>api_response-&gt;api_status</b> will contain a single digit '0' and <b>api_log -&gt; MESSAGE</b> will contain the error message.</p></li></ol>\n\n<p><b>Example of ATS Connect Error:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"atsconnect_ticket\": {\n    \"request\": {\n        \"call\": \"\",\n        \"values\": \"\"\n    },\n    \"fn\": \"_api_authenticate\",\n    \"key\": \"xxxxxxxxxxx\",\n    \"elapsed\": \"0.026863\",\n    \"api version\": \"1.0\",\n    \"vendor\": \"bullhorn\"\n},\n\"atsconnect_status\": \"0\",\n\"atsconnect_message\": \"ERROR: Missing API Credentials\",\n\"api_response\": {\n    \"api_status\": \"0\",\n    \"api_log\": {},\n    \"api_data\": {}\n}\n}\n\n</code></pre><p><b>Example of API Error:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"atsconnect_ticket\": {\n        \"request\": {\n            \"call\": \"https://rest9.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=100&amp;query=isDeleted:0 AND id:1&amp;showEditable=false&amp;meta=off&amp;sort=-id&amp;fields=id,address,status,submissions,email&amp;BhRestToken=xxxxxxxxx&amp;start=0\",\n            \"values\": \"\"\n        },\n        \"fn\": \"_api_candidate\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"elapsed\": \"0.649892\",\n        \"api version\": \"1.0\",\n        \"vendor\": \"bullhorn\"\n    },\n    \"atsconnect_status\": \"1\",\n    \"atsconnect_message\": \"\",\n    \"api_response\": {\n        \"api_status\": \"0\",\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 2,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CALL_TIME\": 0.212243,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2016-11-28T16:11:18\",\n            \"APIKEY\": \"xxxxxxxx\",\n            \"MESSAGE\": \"{  \\\"errorMessage\\\" : \\\"Error parsing fields at position 5, message: missing EOF at 'id'\\\"}\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_data\": {}\n    }\n}\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"388433","collectionId":"df3625f0-1bb3-485a-9ac3-309ed0e0aa33","publishedId":"RWTptHM3","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-12-16T18:24:34.000Z"},"item":[{"name":"API Healthcare","item":[{"name":"Authentication","item":[{"name":"ATS Authorization","id":"17220179-2323-4037-8503-c2c4bd7ab05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }\n"},"url":"{{ats-connect}}/authenticate","description":"<p><b>NOTE: This process is internal - this endpoint is available for testing purposes.</b></p>\n\n<ul>\n<li><p>api_un - username - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - password - <b>REQUIRED</b></p>\n</li>\n<li><p>api_site_name - site name, a designated value for compiling rest url - <b>REQUIRED</b></p>\n</li>\n<li><p>api_cluster_prefix - cluster prefix, a designated value for compiling rest url - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"508df195-cc87-4438-a0d8-671f6a43805a","name":"ATS Authorization","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{}\n    }\n"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 15:07:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"310"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272888"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"session_key\": \"bba1rjsm\",\n            \"password\": \"XXXXXX!\",\n            \"url\": \"https://ctms.contingenttalentmanagement.com/GENHC/clearConnect/2_0/index.cfm\",\n            \"username\": \"HaleyAPI\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.058359\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"17220179-2323-4037-8503-c2c4bd7ab05c"}],"id":"674c4c07-57ac-4e35-9f95-64c19253a684","_postman_id":"674c4c07-57ac-4e35-9f95-64c19253a684","description":""},{"name":"Application","item":[{"name":"Application Set","id":"8f468f8a-6c5f-45d0-8cbb-04d564a1d776","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n                \"api_connection\":{\r\n                            \"api_un\":\"{{api_un}}\",\r\n                            \"api_pw\":\"{{api_pw}}\",\r\n                            \"api_site_name\":\"{{api_site_name}}\",\r\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\r\n                            },\r\n                \"vendor\":\"apihealthcare\",\r\n                \"api_sandbox\":1,\r\n                \"api_performance_dump\":0,\r\n                \"api_verbose_dump\":1\r\n    },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\":{\"id\": 40704},\r\n    \t\"job\":{\"id\": 1826},\r\n        \"referral_source\": \"test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"709c351d-9770-4e27-afa5-de807a4158e4","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n                \"api_connection\":{\r\n                            \"api_un\":\"{{api_un}}\",\r\n                            \"api_pw\":\"{{api_pw}}\",\r\n                            \"api_site_name\":\"{{api_site_name}}\",\r\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\r\n                            },\r\n                \"vendor\":\"apihealthcare\",\r\n                \"api_sandbox\":1,\r\n                \"api_performance_dump\":0,\r\n                \"api_verbose_dump\":1\r\n    },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\":{\"id\": 40704},\r\n    \t\"job\":{\"id\": 1826},\r\n        \"referral_source\": \"test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 19 Mar 2024 23:17:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"532"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"86170"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"40704\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"updateWorkerURLTags\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.160708\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-03-19T23:17:49\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Worker URL tag updated successfully\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"tempId\\\":40704,\\\"action\\\":\\\"updateWorkerURLTags\\\",\\\"tags\\\":\\\"<tags>\\\\n                    <referredBy>test</referredBy>\\\\n                    <ltOrderId>1826</ltOrderId>\\\\n                  </tags>\\\",\\\"resultType\\\":\\\"json\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.974859\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Worker URL tag updated successfully\"\n}"}],"_postman_id":"8f468f8a-6c5f-45d0-8cbb-04d564a1d776"},{"name":"Application Get","id":"3dcee8af-a498-4c1c-8e2b-927610f4d9bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5bc1fac9-2f29-4e37-8dfb-1b3682720dee","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 19:42:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"381"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"37614"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-03-18T19:42:44\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-03-18T19:42:44\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"PAY_LOAD\": {},\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"apihealthcare\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.373454\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"3dcee8af-a498-4c1c-8e2b-927610f4d9bc"},{"name":"Application Get By ID","id":"cd714389-2fef-4758-a5b6-3587f2754daf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2fc4603a-dd9e-4ba1-a3c8-f1293e8d0806","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 19:44:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"381"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"37617"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-03-18T19:44:10\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-03-18T19:44:10\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"PAY_LOAD\": {},\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"apihealthcare\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.326545\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"cd714389-2fef-4758-a5b6-3587f2754daf"}],"id":"ed3b773d-583f-490c-b854-0a5a07123c5c","_postman_id":"ed3b773d-583f-490c-b854-0a5a07123c5c","description":""},{"name":"Candidate","item":[{"name":"Candidate Get By ID","event":[{"listen":"test","script":{"id":"770ec508-c4a0-45dd-b0f3-5de3c44f955f","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Step 1: Check if the status code is 200 OK","pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","// Step 2: Check if the MESSAGE value is \"Success\"","pm.test(\"MESSAGE is 'Success'\", function() {","    pm.expect(responseData.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Step 3: Proceed with other tests only if the previous checks pass","if (pm.response.code === 200 && responseData.api_response.api_log.MESSAGE === \"Success\") {","    // Parse the response body as JSON","    let responseData = pm.response.json();","","    // Extract the candidates array","    let candidates = responseData.api_response.api_data.candidates;","","    // Variables to check in candidate array","    const requiredVariables = ['referral_source', 'location','status','date_of_birth','requirements','phone','ethnicity','cell_phone','last_name','email','address','category','id','first_name','gender','address.country', 'address.city', 'address.zip', 'address.address1', 'address.address2', 'address.state'];","","","    // Initialize an array to store details of missing variables","    let missingVariables = [];","","    //TEST NUMBER 1","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","    requiredVariables.forEach(variable => {","            // Split the variable by '.' to handle nested objects","            let keys = variable.split('.');","            let value = candidate;","            for (let key of keys) {","                value = value[key];","                if (value === undefined) {","                    missingVariables.push(variable);","                    break;","                }","            }","        });","    });","","    // If any record is missing required candidate variables, fail the test","    pm.test(\"All candidates contain required variables\", function() {","        // If any variable is missing, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    //TEST NUMBER 2","","    const fieldsToCheck = ['email', 'last_name', 'first_name'];","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","        // Loop through the specified fields to check","        fieldsToCheck.forEach(field => {","            // Check if the field is missing or null","            if (!candidate.hasOwnProperty(field) || candidate[field] === null || candidate[field] === \"\") {","                missingVariables.push({","                    candidateId: candidate.id,","                    fieldName: field","                });","            }","        });","    });","","    // Check if any of the specified field is null or has no value","    pm.test(\"Check specified fields for missing or null values\", function() {","        // If any specified field is missing or null, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    // TEST NUMBER 3","","    // Get the actual count of candidates","    const actualCount = candidates.length;","","    // Extract the candidates array","    let count = responseData.api_response.api_data.count;","","    // Check if the actual count matches the expected count","    pm.test(\"Check if the number of candidates matches the expected count\", function() {","        // Set the expected count based on the number of elements in the candidates array","        const expectedCount = count;","        pm.expect(actualCount).to.equal(expectedCount);","    });","","    // Define the fields to check and their expected data types","    const fieldsDataTypeToCheck = {","        referral_source: 'string',","        location: 'string',","        status: 'string',","        date_of_birth: 'string', ","        requirements: 'string',","        phone: 'string',","        ethnicity: 'string',","        cell_phone: 'string',","        last_name: 'string',","        email: 'string',","        address: 'object',","        'address.country': 'string',","        'address.city': 'string',","        'address.zip': 'string',","        'address.address1': 'string',","        'address.address2': 'string',","        'address.state': 'string',","        category: 'string',","        id: 'string',","        first_name: 'string',","        gender: 'string'","    };","","    // Example Test: Check data types of specific fields","    pm.test(\"Check data types of specific fields in each candidate\", function() {","        candidates.forEach(candidate => {","            for (let field in fieldsDataTypeToCheck) {","                let expectedType = fieldsDataTypeToCheck[field];","                let fieldValue = getNestedProperty(candidate, field.split('.'));","","                if (expectedType === 'date') {","                    // Custom check for date type","                    pm.expect(typeof fieldValue).to.equal('string', `Expected ${field} to be a string for candidate ID ${candidate.id}`);","                    pm.expect(isValidDate(fieldValue)).to.be.true(`Expected ${field} to be a valid date for candidate ID ${candidate.id}`);","                } else {","                    // General type check","                    pm.expect(typeof fieldValue).to.equal(expectedType, `Expected ${field} to be a ${expectedType} for candidate ID ${candidate.id}`);","                }","            }","        });","    });","","","} else {","    pm.test(\"Skipping further tests as the initial conditions are not met\", function() {","        pm.expect(true).to.be.true;","    });","}","","// Helper function to check if a string is a valid date","function isValidDate(dateString) {","    let date = new Date(dateString);","    return !isNaN(date.getTime());","}","","// Helper function to get nested property value","function getNestedProperty(obj, pathArray) {","    return pathArray.reduce((acc, key) => (acc && acc[key] !== 'undefined') ? acc[key] : undefined, obj);","}"],"type":"text/javascript"}}],"id":"2fb56005-87de-4064-acc6-f5476aa5690e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":1\n                    }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/","description":"<p>For retrieving candidate data based on candidate ID.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate id</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n<li><p>api_request_query - hash with key:value pairs signifying the values the call wants to query  - <b>OPTIONAL</b> - will accept default fields or ATS specific fields - default: none</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":1610644\n                    }\n    }\n</pre>","urlObject":{"path":["candidate","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9fd7188c-8a0c-40c3-8e5a-f269a26455a3","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":28368\n                    }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 22:16:37 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"646"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"37687"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"Indeed\",\n                    \"status\": \"Prospect\",\n                    \"date_of_birth\": \"\",\n                    \"phone\": \"\",\n                    \"ethnicity\": \"\",\n                    \"last_name\": \"Manuel\",\n                    \"cell_phone\": \"+15618761656\",\n                    \"email\": \"sharling28@yahoo.com\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33309\",\n                        \"address1\": \"4373 NW 37th Terrace\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"28368\",\n                    \"first_name\": \"Sharling\",\n                    \"gender\": \"\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.103871\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-03-18T22:16:38\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getTemps&tempIdIn=28368&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.921586\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"2fb56005-87de-4064-acc6-f5476aa5690e"},{"name":"Candidate Get","event":[{"listen":"test","script":{"id":"1b6452ff-9919-4438-add9-043150a6c225","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Step 1: Check if the status code is 200 OK","pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","// Step 2: Check if the MESSAGE value is \"Success\"","pm.test(\"MESSAGE is 'Success'\", function() {","    pm.expect(responseData.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Step 3: Proceed with other tests only if the previous checks pass","if (pm.response.code === 200 && responseData.api_response.api_log.MESSAGE === \"Success\") {","    // Parse the response body as JSON","    let responseData = pm.response.json();","","    // Extract the candidates array","    let candidates = responseData.api_response.api_data.candidates;","","    // Variables to check in candidate array","    const requiredVariables = ['referral_source', 'location','status','date_of_birth','requirements','phone','ethnicity','cell_phone','last_name','email','address','category','id','first_name','gender','address.country', 'address.city', 'address.zip', 'address.address1', 'address.address2', 'address.state'];","","","    // Initialize an array to store details of missing variables","    let missingVariables = [];","","    //TEST NUMBER 1","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","    requiredVariables.forEach(variable => {","            // Split the variable by '.' to handle nested objects","            let keys = variable.split('.');","            let value = candidate;","            for (let key of keys) {","                value = value[key];","                if (value === undefined) {","                    missingVariables.push(variable);","                    break;","                }","            }","        });","    });","","    // If any record is missing required candidate variables, fail the test","    pm.test(\"All candidates contain required variables\", function() {","        // If any variable is missing, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    //TEST NUMBER 2","","    const fieldsToCheck = ['email', 'last_name', 'first_name'];","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","        // Loop through the specified fields to check","        fieldsToCheck.forEach(field => {","            // Check if the field is missing or null","            if (!candidate.hasOwnProperty(field) || candidate[field] === null || candidate[field] === \"\") {","                missingVariables.push({","                    candidateId: candidate.id,","                    fieldName: field","                });","            }","        });","    });","","    // Check if any of the specified field is null or has no value","    pm.test(\"Check specified fields for missing or null values\", function() {","        // If any specified field is missing or null, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    // TEST NUMBER 3","","    // Get the actual count of candidates","    const actualCount = candidates.length;","","    // Extract the candidates array","    let count = responseData.api_response.api_data.count;","","    // Check if the actual count matches the expected count","    pm.test(\"Check if the number of candidates matches the expected count\", function() {","        // Set the expected count based on the number of elements in the candidates array","        const expectedCount = count;","        pm.expect(actualCount).to.equal(expectedCount);","    });","","    // Define the fields to check and their expected data types","    const fieldsDataTypeToCheck = {","        referral_source: 'string',","        location: 'string',","        status: 'string',","        date_of_birth: 'string', ","        requirements: 'string',","        phone: 'string',","        ethnicity: 'string',","        cell_phone: 'string',","        last_name: 'string',","        email: 'string',","        address: 'object',","        'address.country': 'string',","        'address.city': 'string',","        'address.zip': 'string',","        'address.address1': 'string',","        'address.address2': 'string',","        'address.state': 'string',","        category: 'string',","        id: 'string',","        first_name: 'string',","        gender: 'string'","    };","","    // Example Test: Check data types of specific fields","    pm.test(\"Check data types of specific fields in each candidate\", function() {","        candidates.forEach(candidate => {","            for (let field in fieldsDataTypeToCheck) {","                let expectedType = fieldsDataTypeToCheck[field];","                let fieldValue = getNestedProperty(candidate, field.split('.'));","","                if (expectedType === 'date') {","                    // Custom check for date type","                    pm.expect(typeof fieldValue).to.equal('string', `Expected ${field} to be a string for candidate ID ${candidate.id}`);","                    pm.expect(isValidDate(fieldValue)).to.be.true(`Expected ${field} to be a valid date for candidate ID ${candidate.id}`);","                } else {","                    // General type check","                    pm.expect(typeof fieldValue).to.equal(expectedType, `Expected ${field} to be a ${expectedType} for candidate ID ${candidate.id}`);","                }","            }","        });","    });","","","} else {","    pm.test(\"Skipping further tests as the initial conditions are not met\", function() {","        pm.expect(true).to.be.true;","    });","}","","// Helper function to check if a string is a valid date","function isValidDate(dateString) {","    let date = new Date(dateString);","    return !isNaN(date.getTime());","}","","// Helper function to get nested property value","function getNestedProperty(obj, pathArray) {","    return pathArray.reduce((acc, key) => (acc && acc[key] !== 'undefined') ? acc[key] : undefined, obj);","}"],"type":"text/javascript"}}],"id":"b7439f81-1411-43cb-92ee-073243bd5571","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/","description":"<p>For retrieving candidate data based on candidate ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate id</li>\n<li>api_request_fields - this API does not support field requests</li>\n<li>api_request_query - hash with key:value pairs signifying the values the call wants to query - <strong>OPTIONAL</strong> - will accept default fields or ATS specific fields - default: none</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":1610644\n                    }\n    }\n\n</code></pre>","urlObject":{"path":["candidate","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7439f81-1411-43cb-92ee-073243bd5571"},{"name":"Candidate Get Education","event":[{"listen":"test","script":{"id":"e66fbbe0-164d-40de-b3e8-8a60329e27c6","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Extract the education array","let education = responseData.api_response.api_data.education;","","// Variables to check in candidate array","const requiredVariables = ['graduation_date','degree','school','type','major','comments','state'];","","","// Initialize an array to store details of missing variables","let missingVariables = [];","","//TEST NUMBER 1","","// Loop through each record in the education array","education.forEach(education => {","    requiredVariables.forEach(variable => {","        // Split the variable by '.' to handle nested objects","        let keys = variable.split('.');","        let value = education;","        for (let key of keys) {","            value = value[key];","            if (value === undefined) {","                missingVariables.push(variable);","                break;","            }","        }","    });","});","","// If any record is missing required education variables, fail the test","pm.test(\"All education contain required variables\", function() {","    // If any variable is missing, fail the test and log missing variables","    if (missingVariables.length > 0) {","        pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","    } else {","        pm.expect(true).to.be.true;","    }","});","","//TEST NUMBER 2","","const fieldsToCheck = ['graduation_date'];","","// Loop through each record in the education array","education.forEach(education => {","    // Loop through the specified fields to check","    fieldsToCheck.forEach(field => {","        // Check if the field is missing or null","        if (!education.hasOwnProperty(field) || education[field] === null || education[field] === \"\") {","            missingVariables.push({","                educationId: education.id,","                fieldName: field","            });","        }","    });","});","","// Define the test case","pm.test(\"Check specified fields for missing or null values\", function() {","    // If any specified field is missing or null, fail the test and log missing variables","    if (missingVariables.length > 0) {","        pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","    } else {","        pm.expect(true).to.be.true;","    }","});","","// TEST NUMBER 3","","// Get the actual count of educatiob","const actualCount = education.length;","","// Extract the educatiob array","let count = responseData.api_response.api_data.count;","","// Define the test case","pm.test(\"Check if the number of education matches the expected count\", function() {","    // Set the expected count based on the number of elements in the education array","    const expectedCount = count;","","    // Check if the actual count matches the expected count","    pm.expect(actualCount).to.equal(expectedCount);","});"],"type":"text/javascript"}}],"id":"47a4805f-dd55-4313-9b2b-c4bfa67b869d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"   {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                                \"api_un\":\"{{api_un}}\",\n                            \t\"api_pw\":\"{{api_pw}}\",\n                        \t\t\"api_site_name\":\"{{api_site_name}}\",\n                            \t\"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                                },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":1,\n                    \"api_verbose_dump\":1\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{            \n                \"candidate\": {\n                    \"id\": 40704\n                }                        \n        }\n    }\n}"},"url":"{{ats-connect}}/candidate/get/education","description":"<p>For retrieving candidate education data based on candidate ID.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate id</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","get","education"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f259ded2-a29b-4134-86cc-7c2531780027","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"   {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                                \"api_un\":\"{{api_un}}\",\n                            \t\"api_pw\":\"{{api_pw}}\",\n                        \t\t\"api_site_name\":\"{{api_site_name}}\",\n                            \t\"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                                },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":1,\n                    \"api_verbose_dump\":1\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{            \n                \"candidate\": {\n                    \"id\": 40704\n                }                        \n        }\n    }\n}"},"url":"{{ats-connect}}/candidate/get/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Apr 2024 19:13:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"598"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"414982"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 9,\n            \"education\": [\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2006-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Communications\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2003-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Art Design\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                },\n                {\n                    \"graduation_date\": \"2003-05-20\",\n                    \"degree\": \"BA\",\n                    \"school\": \"USC\",\n                    \"type\": \"\",\n                    \"major\": \"Art Design\",\n                    \"comments\": \"This is another comment\",\n                    \"state\": \"California\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.362223\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-12T19:13:27\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"9 candidate education results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?tempId=40704&action=getEducationHistory&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.95099\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"9 candidate education results returned\"\n}"}],"_postman_id":"47a4805f-dd55-4313-9b2b-c4bfa67b869d"},{"name":"Candidate Get Work History","event":[{"listen":"test","script":{"id":"f5b9ffc9-98ee-4476-9458-ba67f2afa8d7","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Step 1: Check if the status code is 200 OK","pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","// Step 2: Check if the MESSAGE value is \"Success\"","pm.test(\"MESSAGE is 'Success'\", function() {","    pm.expect(responseData.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Step 3: Proceed with other tests only if Step 1 & Step 2 checks is pass","if (pm.response.code === 200 && responseData.MESSAGE === \"Success\") {","","    // Parse the response body as JSON","    let responseData = pm.response.json();","","    // Extract the candidates array","    let candidates = responseData.api_response.api_data.candidates;","","    // Variables to check in candidate array","    const requiredVariables = ['referral_source', 'location','status','date_of_birth','requirements','phone','ethnicity','cell_phone','last_name','email','address','category','id','first_name','gender','address.country', 'address.city', 'address.zip', 'address.address1', 'address.address2', 'address.state'];","","","    // Initialize an array to store details of missing variables","    let missingVariables = [];","","    //TEST NUMBER 1","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","    requiredVariables.forEach(variable => {","            // Split the variable by '.' to handle nested objects","            let keys = variable.split('.');","            let value = candidate;","            for (let key of keys) {","                value = value[key];","                if (value === undefined) {","                    missingVariables.push(variable);","                    break;","                }","            }","        });","    });","","    // If any record is missing required candidate variables, fail the test","    pm.test(\"All candidates contain required variables\", function() {","        // If any variable is missing, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    //TEST NUMBER 2","","    const fieldsToCheck = ['email', 'last_name', 'first_name'];","","    // Loop through each candidate in the candidates array","    candidates.forEach(candidate => {","        // Loop through the specified fields to check","        fieldsToCheck.forEach(field => {","            // Check if the field is missing or null","            if (!candidate.hasOwnProperty(field) || candidate[field] === null || candidate[field] === \"\") {","                missingVariables.push({","                    candidateId: candidate.id,","                    fieldName: field","                });","            }","        });","    });","","    // Check if any of the specified field is null or has no value","    pm.test(\"Check specified fields for missing or null values\", function() {","        // If any specified field is missing or null, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    // TEST NUMBER 3","","    // Get the actual count of candidates","    const actualCount = candidates.length;","","    // Extract the candidates array","    let count = responseData.api_response.api_data.count;","","    // Define the test case","    pm.test(\"Check if the number of candidates matches the expected count\", function() {","        // Set the expected count based on the number of elements in the candidates array","        const expectedCount = count;","","        // Check if the actual count matches the expected count","        pm.expect(actualCount).to.equal(expectedCount);","    });","","    //INSERT DATA TYPE CHECKING","}"],"type":"text/javascript"}}],"id":"6f68a37a-deb9-4210-8cd9-c7403a3c7785","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":0,\n                    \"api_verbose_dump\":0\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{\n                \"candidate\": {\n                    \"id\":78455\n                }\n            }\n        }\n    }"},"url":"{{ats-connect}}/candidate/get/workhistory","description":"<p>For retrieving candidate work history data based on candidate ID.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n</ul>\n<pre>\n        \"api_request_data\":{\n                    \"api_request_query\":{\n                                \"id\":78455\n                        }\n        }\n    }\n</pre>","urlObject":{"path":["candidate","get","workhistory"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0328b87f-a928-4c98-afbc-567fd83ffd94","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":0,\n                    \"api_verbose_dump\":0\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{\n                \"candidate\": {\n                    \"id\":78455\n                }\n            }\n        }\n    }"},"url":"{{ats-connect}}/candidate/get/workhistory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Apr 2024 19:13:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"612"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"414985"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 9,\n            \"workhistory\": [\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle GreySkull\",\n                    \"title\": \"Master of the Universe\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"$500.00\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle Gre kull\",\n                    \"title\": \"Master of the Universe II\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"33000\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle Gre kull\",\n                    \"title\": \"Master of the Universe II\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"33000\",\n                    \"termination_reason\": \"Moved\"\n                },\n                {\n                    \"end_date\": \"1979-11-03\",\n                    \"company_name\": \"Castle Gre kull\",\n                    \"title\": \"Master of the Universe II\",\n                    \"start_date\": \"1979-11-02\",\n                    \"starting_salary\": \"33000\",\n                    \"termination_reason\": \"Moved\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"getWorkHistory\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.118341\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-12T19:13:56\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"9 candidate workhistory results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?tempId=78455&action=getWorkHistory&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.766764\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"9 candidate workhistory results returned\"\n}"}],"_postman_id":"6f68a37a-deb9-4210-8cd9-c7403a3c7785"},{"name":"Candidate Set Education","id":"bbd02cfd-422c-426c-a58e-e0ceb0effa05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"candidate\": {\n                \"id\": 40704\n            },                    \n                            \"start_date\":\"09/01/1997\",\n                            \"comments\":\"This is another comment\",\n                            \"major\":\"Art Design\",\n                            \"degree\":\"BA\",\n                            \"state\":\"California\",\n                            \"school\":\"USC\",\n                            \"graduation_date\":\"05/20/2003\"\n                            }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/education","description":"<p>For submitting Candidate Education History to ATS.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":78455,\n                            \"start_date\":\"09/01/1999\",\n                            \"comments\":\"This is another comment\",\n                            \"major\":\"Communications\",\n                            \"degree\":\"BA\",\n                            \"state\":\"California\",\n                            \"school\":\"USC\",\n                            \"graduation_date\":\"05/20/2006\",\n                            \"type\":\"\"\n                            }\n    }\n\n</code></pre>","urlObject":{"path":["candidate","set","education"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"caf63d58-dafe-4808-ac2f-f1e721bb9adc","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"candidate\": {\n                \"id\": 40704\n            },                    \n                            \"start_date\":\"09/01/1999\",\n                            \"comments\":\"This is another comment\",\n                            \"major\":\"Communications\",\n                            \"degree\":\"BA\",\n                            \"state\":\"California\",\n                            \"school\":\"USC\",\n                            \"graduation_date\":\"05/20/2006\"\n                            }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 22:41:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"637"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"334489"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": \"12983\",\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.106952\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-04-09T22:41:03\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Education set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"educationHistoryRecords\\\":\\\"<educationHistoryRecords>\\\\n<educationHistoryRecord>\\\\n<tempId>40704</tempId>\\\\n<degree>BA</degree>\\\\n<campusLocation>California</campusLocation>\\\\n<notes>This is another comment</notes>\\\\n<courseOfStudy>Communications</courseOfStudy>\\\\n<graduationDate>05/20/2006</graduationDate>\\\\n<start_date>09/01/1999</start_date>\\\\n<institution>USC</institution>\\\\n</educationHistoryRecord>\\\\n</educationHistoryRecords>\\\\n\\\",\\\"action\\\":\\\"insertEducationHistory\\\",\\\"resultType\\\":\\\"json\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.655742\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Education set\"\n}"}],"_postman_id":"bbd02cfd-422c-426c-a58e-e0ceb0effa05"},{"name":"Candidate Set Work History","id":"0e30f356-0cd8-445a-98cd-78b8ef1beca5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"   {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                                \"api_un\":\"{{api_un}}\",\n                            \t\"api_pw\":\"{{api_pw}}\",\n                            \t\"api_site_name\":\"{{api_site_name}}\",\n                            \t\"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                                },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":0,\n                    \"api_verbose_dump\":0\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{\n            \"candidate\": {\n                \"id\": 78455\n            },                \n                                \"title\":\"Master of the Universe II\",\n                                \"company_name\":\"Castle Gre kull\",\n                                \"starting_salary\":\"33000\",\n                                \"termination_reason\":\"Moved\",\n                                \"start_date\":\"11/02/1979\",\n                                \"end_date\":\"11/03/1979\"\n                                }\n        }\n    }\n"},"url":"{{ats-connect}}/candidate/set/workhistory","description":"<p>For submitting Candidate Work History to ATS.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n        \"api_request_data\":{\n                    \"api_request_query\":{\n                                \"id\":78455,\n                                \"title\":\"Master of the Universe\",\n                                \"company_name\":\"Castle GreySkull\",\n                                \"starting_salary\":\"$500.00\",\n                                \"termination_reason\":\"Moved\",\n                                \"start_date\":\"11/02/1979\",\n                                \"end_date\":\"11/03/1979\"\n                                }\n        }\n</pre>","urlObject":{"path":["candidate","set","workhistory"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"933a856a-345f-4e27-937a-e8b9eca4d029","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"   {\n        \"api_connect_data\":{\n                    \"api_connection\":{\n                                \"api_un\":\"{{api_un}}\",\n                            \t\"api_pw\":\"{{api_pw}}\",\n                            \t\"api_site_name\":\"{{api_site_name}}\",\n                            \t\"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                                },\n                    \"vendor\":\"apihealthcare\",\n                    \"api_sandbox\":1,\n                    \"api_performance_dump\":0,\n                    \"api_verbose_dump\":0\n        },\n        \"api_request_data\":{\n            \"api_request_query\":{\n            \"candidate\": {\n                \"id\": 78455\n            },                \n                                \"title\":\"Master of the Universe II\",\n                                \"company_name\":\"Castle Gre kull\",\n                                \"starting_salary\":\"33000\",\n                                \"termination_reason\":\"Moved\",\n                                \"start_date\":\"11/02/1979\",\n                                \"end_date\":\"11/03/1979\"\n                                }\n        }\n    }\n"},"url":"{{ats-connect}}/candidate/set/workhistory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 22:40:41 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"620"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"412039"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": \"13286\",\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Workhistory SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.103563\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-04-09T22:40:42\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Workhistory set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"workHistoryRecords\\\":\\\"<workHistoryRecords>\\\\n<workHistoryRecord>\\\\n<rate>33000</rate>\\\\n<tempId>78455</tempId>\\\\n<endDate>11/03/1979</endDate>\\\\n<title>Master of the Universe II</title>\\\\n<reasonForLeaving>Moved</reasonForLeaving>\\\\n<startDate>11/02/1979</startDate>\\\\n<facility>Castle Gre kull</facility>\\\\n</workHistoryRecord>\\\\n</workHistoryRecords>\\\\n\\\",\\\"action\\\":\\\"insertWorkHistory\\\",\\\"resultType\\\":\\\"json\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.665695\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Workhistory set\"\n}"}],"_postman_id":"0e30f356-0cd8-445a-98cd-78b8ef1beca5"},{"name":"Candidate Update","id":"e198d1e6-d7c1-44ab-81ef-df460016df71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":40704,\n                            \"last_name\":\"Test18882916_2\",\n                            \"email\":\"tet1@Test122916.com\",\n                            \"phone\":\"909-555-1234\",\n                            \"address1\":\"456 That St\",\n                            \"city\":\"Thor City\",\n                            \"state\":\"OR\",\n                            \"zip\":\"97086\",\n                            \"status\": \"Boo\"\n                            }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/","description":"<p>For updating a Candidate record.</p>\n\n<p>When submitting a Candidate, API Healthcare has four additional custom parameters that are required: status, homeRegion, specialty, and certification.</p>\n\n<p>These values can be obtained by making additional calls to the api. Please see documentation</p>\n\n<ul>\n<li><p>api_request_query - candidate data to be updated - <b>id or email is REQUIRED</b></p>\n</li>\n<li><p>api_request_custom - hash with key:value pairs specific to the ATS  - <b>REQUIRED</b> - status, homeRegion, specialty, and certification</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":78455,\n                            \"last_name\":\"Test18882916_2\",\n                            \"email\":\"tet1@Test122916.com\",\n                            \"phone\":\"909-555-1234\",\n                            \"address1\":\"456 That St\",\n                            \"city\":\"Thor City\",\n                            \"state\":\"OR\",\n                            \"zip\":\"97086\"\n                            }\n    }\n</pre>","urlObject":{"path":["candidate","set",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e5101e71-e457-48cc-ad78-673db7182fe9","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":40704,\n                            \"last_name\":\"Test18882916_2\",\n                            \"email\":\"tet1@Test122916.com\",\n                            \"phone\":\"909-555-1234\",\n                            \"address1\":\"456 That St\",\n                            \"city\":\"Thor City\",\n                            \"state\":\"OR\",\n                            \"zip\":\"97086\"\n                            }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 19 Mar 2024 22:34:34 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"592"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"38089"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"40704\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.271613\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-03-19T22:34:35\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate updated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"tempRecords\\\":\\\"<tempRecords>\\\\n<tempRecord>\\\\n<email>tet1@Test122916.com</email>\\\\n<zip>97086</zip>\\\\n<tempId>40704</tempId>\\\\n<city>Thor City</city>\\\\n<lastName>Test18882916_2</lastName>\\\\n<phoneNumber>909-555-1234</phoneNumber>\\\\n<state>OR</state>\\\\n</tempRecord>\\\\n</tempRecords>\\\\n\\\",\\\"action\\\":\\\"updateTempRecords\\\",\\\"resultType\\\":\\\"json\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"1.064237\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate updated\"\n}"}],"_postman_id":"e198d1e6-d7c1-44ab-81ef-df460016df71"},{"name":"Candidate Set","event":[{"listen":"prerequest","script":{"id":"84a14653-124c-4ab4-bc4e-ba712a6c1f69","exec":["// Assuming the request body is JSON","let requestBody = pm.request.body.raw;","","// Parse the JSON string into an object","let requestBodyObject = JSON.parse(requestBody);","","// Extract variables from the request body","let first_name = requestBodyObject.api_request_data.api_request_query.first_name; // Replace 'key1' with your actual key","let last_name = requestBodyObject.api_request_data.api_request_query.last_name; // Replace 'key2' with your actual key","","// Save variables to the local environment","pm.environment.set(\"first_name\", first_name);","pm.environment.set(\"last_name\", last_name);",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"dcc82845-99f5-4b20-adcf-643c252502d7","exec":[""],"type":"text/javascript"}}],"id":"d973ed3c-7579-421c-b233-a4d08c9640c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"first_name\":\"Testing\",\n                            \"last_name\":\"Certification\",\n                            \"email\":\"TestStatus.24.November.2025.1@mailinator.com\",\n                            \"phone\":\"999-999-1234\",\n                            \"address1\":\"123 Any St\",\n                            \"city\":\"Shreveport\",\n                            \"state\":\"LA\",\n                            \"zip\":\"71108\",\n\t\t\t\t\t\t\t\"category\": \"Direct Service Worker\",\n\t\t\t\t\t\t\t\"specialty\": \"Caregiving\",\n\t\t\t\t\t\t\t\"status\": \"Prospect\",\n\t\t\t\t\t\t\t\"region\": \"Arkansas\"\n                            }\n    }\n}"},"url":"{{ats-connect}}/candidate/set/","urlObject":{"path":["candidate","set",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9c549e48-491e-4984-8253-aed4040ddb60","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"first_name\":\"Tast\",\n                            \"last_name\":\"States\",\n                            \"email\":\"t919u8ohiuk878989uljbkhh.kjlkl@mailinator.com\",\n                            \"phone\":\"999-999-1234\",\n                            \"address1\":\"123 Any St\",\n                            \"address2\": \"Apt 999\",\n                            \"city\":\"Any City\",\n                            \"state\":\"WA\",\n                            \"zip\":\"97086\",\n                            \"status\": \"Prospect\",\n                            \"location\": 3,\n                            \"requirements\": \"LTC\",\n                            \"category\": \"CNA\"\n                            }\n    }\n}"},"url":"{{ats-connect}}/candidate/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Apr 2024 17:37:57 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"630"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"204737"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"41680\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.186782\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-04-26T17:37:58\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate updated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"tempRecords\\\":\\\"<tempRecords>\\\\n<tempRecord>\\\\n<firstName>Tast</firstName>\\\\n<tempId>41680</tempId>\\\\n<status>Prospect</status>\\\\n<state>WA</state>\\\\n<email>t919u8ohiuk878989uljbkhh.kjlkl@mailinator.com</email>\\\\n<zip>97086</zip>\\\\n<city>Any City</city>\\\\n<lastName>States</lastName>\\\\n<phoneNumber>999-999-1234</phoneNumber>\\\\n</tempRecord>\\\\n</tempRecords>\\\\n\\\",\\\"action\\\":\\\"updateTempRecords\\\",\\\"resultType\\\":\\\"json\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.824658\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate updated\"\n}"}],"_postman_id":"d973ed3c-7579-421c-b233-a4d08c9640c1"}],"id":"7312ffb2-2303-4b8f-b97c-df3fced45324","_postman_id":"7312ffb2-2303-4b8f-b97c-df3fced45324","description":""},{"name":"Custom","item":[{"name":"Custom","id":"6843621b-2bf7-4a12-aea8-7068bb7354b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n\t    \"api_custom_action\":\"GET\",\n        \"api_request_query\":{\n        \t\"id\":40704\n        }\n    }\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to API Healthcare via ATS-Connect</p>\n\n<pre>\n    },\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n            \"api_custom_action\":\"GET\",\n        \"api_custom_type\":\"search\",\n        \"api_request_query\":{\n                    \"id\":193\n        }\n    }\n</pre>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d6ae5679-5726-4a89-9b29-1f73b47be0b5","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n\t        \"api_custom_action\":\"GET\",\n        \"api_request_query\":{\n        \t        \"id\":40704\n        }\n    }\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 23 Mar 2024 23:06:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"629"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"329006"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"count\": 1,\n                \"candidates\": [\n                    {\n                        \"referral_source\": \"\",\n                        \"country\": \"\",\n                        \"status\": \"Pending\",\n                        \"date_of_birth\": \"\",\n                        \"phone\": \"909-555-1234\",\n                        \"ethnicity\": \"\",\n                        \"cell_phone\": \"\",\n                        \"last_name\": \"Test18882916_2\",\n                        \"state\": \"OR\",\n                        \"email\": \"tet1@Test122916.com\",\n                        \"zip\": \"97086\",\n                        \"city\": \"Thor City\",\n                        \"id\": \"40704\",\n                        \"first_name\": \"Tast\",\n                        \"gender\": \"\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 candidate returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.091897\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-03-23T23:06:53\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Custom results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getTemps&tempIdIn=40704&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.839661\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Custom results returned\"\n}"}],"_postman_id":"6843621b-2bf7-4a12-aea8-7068bb7354b4"}],"id":"3cebb450-1393-43a6-8307-72d97cd15f37","_postman_id":"3cebb450-1393-43a6-8307-72d97cd15f37","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"ca29a1cf-3daf-45e5-ac07-4afc0351d099","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n            \"api_connection\":{\n                        \"api_un\":\"{{api_un}}\",\n                        \"api_pw\":\"{{api_pw}}\",\n                        \"api_site_name\":\"{{api_site_name}}\",\n                        \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                        },\n            \"vendor\":\"apihealthcare\",\n            \"api_sandbox\":1,\n            \"api_performance_dump\":1,\n            \"api_verbose_dump\":1\n},\n\"api_request_data\":{\n            \"api_request_query\":{\n                \"id\": 40704,\n                \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n                        }\n}\n}\n"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n<li><p>file_name - <b>REQUIRED</b></p>\n</li>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n</ul>\n<pre>\n            \"api_request_query\":{\n                        \"id\":1610644,\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n                        }\n}\n</pre>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"01c656cb-c1c7-4a5c-8343-e7919be66743","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n            \"api_connection\":{\n                        \"api_un\":\"{{api_un}}\",\n                        \"api_pw\":\"{{api_pw}}\",\n                        \"api_site_name\":\"{{api_site_name}}\",\n                        \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                        },\n            \"vendor\":\"apihealthcare\",\n            \"api_sandbox\":1,\n            \"api_performance_dump\":1,\n            \"api_verbose_dump\":1\n},\n\"api_request_data\":{\n            \"api_request_query\":{\n            \"candidate\": {\n                \"id\": 40704\n            },\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n                        }\n}\n}\n"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 12 Apr 2024 19:24:34 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"7531"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"414988"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"203340\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"insertDocument\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.241903\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-04-12T19:24:36\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"File Upload\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"tempId\\\":40704,\\\"contentSubType\\\":\\\"msword\\\",\\\"contents\\\":\\\"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAA\\\\nEAAAAgAAAAEAAAD+////AAAAAAAAAAD/////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n///////////////////////////////////////////////////////////////////////////9\\\\n//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8A\\\\nAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAA\\\\nAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n/////////////////////////////////////////////////////////////////////////1IA\\\\nbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\n/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////\\\\n////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAA\\\\nAP7////+////BAAAAAUAAAD+////BwAAAP7/////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n////////////////////////////////////////////////////////////////////////////\\\\n//////////////////////////////////////////////////////////////////////8BAP7/\\\\nAwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABN\\\\nU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgA\\\\nKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAAN\\\\nAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBl\\\\nOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAA\\\\nAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAA\\\\nAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAK\\\\n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\\\\nzw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAA\\\\nAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nDBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAA\\\\nAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAA\\\\nAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAA\\\\nAAAAAAAAAAAADBAAAF6EAABghOX+FcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAA\\\\nAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAA\\\\nAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcA\\\\nAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAA\\\\nABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfw\\\\nAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAAB\\\\nALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5K\\\\nCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoH\\\\nAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcA\\\\nUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZP\\\\nSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGG\\\\nBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYF\\\\nAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+\\\\nFcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1g\\\\nhOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E\\\\nkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAA\\\\nAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nDBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAA\\\\nAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAA\\\\nAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAA\\\\nAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAA\\\\nAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAA\\\\nAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcA\\\\nAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAA\\\\nABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfw\\\\n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\\\\nABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAw\\\\nAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2\\\\nBQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//\\\\nDwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAd\\\\nFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsL\\\\nAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgA\\\\nCAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBs\\\\nACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEA\\\\ndABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAg\\\\nAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4A\\\\nYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJ\\\\nACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkA\\\\ncwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAg\\\\nAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQA\\\\neQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAw\\\\nADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAA\\\\ncgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBv\\\\nAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYA\\\\nZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABv\\\\nACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0A\\\\nZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBu\\\\nAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUA\\\\ncwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABt\\\\nAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMA\\\\nYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBn\\\\nAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwA\\\\neQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBp\\\\nAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUA\\\\nZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABz\\\\nAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQA\\\\naAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBt\\\\nAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAA\\\\ndABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABh\\\\nAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAA\\\\nTQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUABy\\\\nAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkA\\\\ndABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBv\\\\nAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8A\\\\ncgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBu\\\\nAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQA\\\\nbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABv\\\\nAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4A\\\\nZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBh\\\\nAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAA\\\\ncgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABh\\\\nACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMA\\\\nIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBp\\\\nAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMA\\\\nIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABi\\\\nAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4A\\\\nbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0\\\\nAGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEA\\\\nbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABh\\\\nAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4A\\\\nIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAg\\\\nAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQA\\\\nZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABv\\\\nAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMA\\\\nIABmAG8AcgAgAHUAcAAgAHQAbwAgADEAMgAsADAAMAAwACAAZwBsAG8AYgBhAGwAIAB1AHMAZQBy\\\\nAHMALgANAEUAbgB0AGUAcgBwAHIAaQBzAGUAIABJAG0AcABsAGUAbQBlAG4AdABhAHQAaQBvAG4A\\\\ncwANAEsAUABJACAARABhAHMAaABiAG8AYQByAGQAcwAgACYAIABTAGMAbwByAGUAYwBhAHIAZABz\\\\nAA0ARABhAHQAYQAgAE0AaQBuAGkAbgBnACAAJgAgAEEAbgBhAGwAeQB0AGkAYwBzAA0ADQBSAGkA\\\\ncwBrACAATQBhAG4AYQBnAGUAbQBlAG4AdAANAEIASQAsACAARQBSAFAAIAAmACAAQgBpAGcAIABE\\\\nAGEAdABhACAAUABsAGEAdABmAG8AcgBtAHMADQBTAEEAUAAvAFMAQQBTACAAUwBvAGwAdQB0AGkA\\\\nbwBuAHMADQANABQgIAA5AC4AMgAlACAAcgBlAHYAZQBuAHUAZQAgAGcAcgBvAHcAdABoACAAKAAy\\\\nADAAMQA2ACkADQAUICAAVQBwACAAdABvACAANAA1ACUAIABpAG4AIABlAGYAZgBpAGMAaQBlAG4A\\\\nYwB5ACAAZwBhAGkAbgBzAA0ADQAUICAAJAA1ADcANQBLACAAYwBhAHAAaQB0AGEAbAAtAGUAeABw\\\\nAGUAbgBzAGUAIAByAGUAZAB1AGMAdABpAG8AbgANABQgIAAkADEALgAxAE0AIABsAGEAYgBvAHIA\\\\nLQBjAG8AcwB0ACAAcwBhAHYAaQBuAGcAcwANAA0AFCAgADkANwAlACAAYQBjAGMAbwB1AG4AdAAt\\\\nAHIAZQB0AGUAbgB0AGkAbwBuACAAcgBhAHQAZQBzAA0AFCAgADEAMAAlACAAaQBuAGMAcgBlAGEA\\\\ncwBlACAAaQBuACAAcgBlAGYAZQByAHIAYQBsAHMADQANAA0ADQAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAICAAAFggAABgIAAAaCAAAHAgAADAIAAAyCAAA\\\\nRAgAAJQIAACWCAAA5AgAAOYIAAA2CQAAOAkAAFgJAABaCQAAdAkAAI4JAACQCQAAuAkAANIJAADU\\\\nCQAAFAoAAC4KAAAwCgAASg0AAEwNAABODQAAfA4AAH4OAACADgAAgg4AAIQOAACGDgAAiA4AAIoO\\\\nAAAaEQAAHBEAAGgSAABqEgAA6QDk5ADQv62Zrb8Ah3ZnAHZnAHZnAHZnAL8Av78A5OTkAL+/vwC/\\\\nAAAAHDoIADsIAENKGAA2CAA1CABeSgYAT0oGAFFKBgAAIDBKHQA6CAA7CABDShgANggANQgAXkoG\\\\nAE9KBgBRSgYAACMwSh0AOggAOwgAQ0oYADYIAD4qATUIAF5KBgBPSgYAUUoGACcwSh4AOggAOwgA\\\\nQ0oYAECIAAA2CAA+KgE1CABeSgYAT0oGAFFKBgAjOggAOwgAQ0oYAECIAAA2CAA+KgE1CABeSgYA\\\\nT0oGAFFKBgAgOggAOwgAQ0oYAECIAAA2CAA1CABeSgYAT0oGAFFKBgAAJzBKHQA6CAA7CABDShgA\\\\nQIgAADYIADUIAV5KBgBcCAFPSgYAUUoGAAkDagAAAABVCAErQioAQ0oYAG1ICQRzSAkES0gCAFBK\\\\nBABuSAQIdEgECF5KBQBhShgAX0g5BAAoahIAAOoTAADsEwAAIBQAAAwVAAAOFQAAEBUAAEQVAABG\\\\nFQAASBUAAEoVAACEFQAAiBUAAIoVAACMFQAAyhUAAMwVAADOFQAA0BUAAAAWAAAEFgAABhYAAAgW\\\\nAAA+FgAAQBYAAEIWAABEFgAAdhYAAHwWAADvAOsA59/QAOff0ADn39AA59/QAOff0ADn39AAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\n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\\\\nAAAAAAAAAAAAAMgAAAAAAAAAAAAAAADGAAAAAAAAAAAAAAAAigAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAOyAACiYAC0YEAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAk\\\\nZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABR\\\\nxggAAAAAAAAAAEEkADsAAQAAAAEAADUgABJkaAEAAAMkAGEkAF6EAABdhAAAYIQAABOkAAAUpJYA\\\\nJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAA\\\\nUcYIAAAAAAAAAABBJAAABTMAPDAAH7DQLyCw4D0hsG4EIrBuBCOQbgQkkG4EMlAAADGQWAIwcACA\\\\nAAAzUAAAKDIADjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAUgBvAG8AdAAgAEUAbgB0AHIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYABQD//////////wEAAAAGCQIAAAAAAMAAAAAAAABGAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAAAAAAABAEMAbwBtAHAATwBiAGoAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgACAAIAAAAEAAAA/////wAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAAAEATwBsAGUAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAIA////\\\\n/wMAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABQAAAAAAAAA\\\\nMQBUAGEAYgBsAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAA4AAgD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAEAAAA1hwAAAAAAAAFAFMAdQBtAG0AYQByAHkASQBuAGYAbwByAG0AYQB0AGkAbwBuAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAACAAUAAAAHAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAMAAACsAAAAAAAAAFcAbwByAGQARABvAGMAdQBtAGUAbgB0AAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAIABgAAAP//////////AAAAAAAA\\\\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAADUqAAAAAAAATwBiAGoAZQBjAHQAUABv\\\\nAG8AbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAQD/////\\\\n//////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAF\\\\nAEQAbwBjAHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBtAGEAdABpAG8AbgAAAAAA\\\\nAAAAAAAAOAACAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\\nAAYAAAB0AAAAAAAAAA==\\\\n\\\",\\\"docTypeId\\\":\\\"13\\\",\\\"fileSize\\\":22528,\\\"documentType\\\":\\\"Temp\\\",\\\"filename\\\":\\\"Resume.doc\\\",\\\"action\\\":\\\"insertDocument\\\",\\\"resultType\\\":\\\"json\\\",\\\"contentType\\\":\\\"application\\\"}\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.98314\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"File Upload\"\n}"}],"_postman_id":"ca29a1cf-3daf-45e5-ac07-4afc0351d099"}],"id":"1fae341e-5e67-427e-83db-f2d566b1c914","_postman_id":"1fae341e-5e67-427e-83db-f2d566b1c914","description":""},{"name":"Job","item":[{"name":"Job Get","event":[{"listen":"test","script":{"id":"edc08b8a-de6a-4abd-b872-bf9b4ece4714","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Step 1: Check if the status code is 200 OK","pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","// Step 2: Check if the MESSAGE value is \"Success\"","pm.test(\"MESSAGE is 'Success'\", function() {","    pm.expect(responseData.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Step 3: Proceed with other tests only if the previous checks pass","if (pm.response.code === 200 && responseData.api_response.api_log.MESSAGE === \"Success\") {","    // Parse the response body as JSON","    let responseData = pm.response.json();","","    // Extract the jobs array","    let jobs = responseData.api_response.api_data.jobs;","","    // Variables to check in job array","    const requiredVariables = ['speciality','status','weeklyGrossPay','hourlyPayRate','weeklyRegularGrossPay','address.country', 'address.city', 'address.zip', 'address.address1', 'address.address2', 'address.state','id','category','region','requirements','hot_job','description','certification','date_added','totalWeeklyPayPackage','type','title','api_request_custom.hourlyPayRate','api_request_custom.weeklyRegularGrossPay','api_request_custom.totalWeeklyPayPackage','api_request_custom.weeklyGrossPay'];","","","    // Initialize an array to store details of missing variables","    let missingVariables = [];","","    //TEST NUMBER 1","","    // Loop through each job in the jobs array","    jobs.forEach(job => {","    requiredVariables.forEach(variable => {","            // Split the variable by '.' to handle nested objects","            let keys = variable.split('.');","            let value = job;","            for (let key of keys) {","                value = value[key];","                if (value === undefined) {","                    missingVariables.push(variable);","                    break;","                }","            }","        });","    });","","    // If any record is missing required job variables, fail the test","    pm.test(\"All jobs contain required variables\", function() {","        // If any variable is missing, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    //TEST NUMBER 2","","    const fieldsToCheck = ['id', 'speciality', 'category','requirements','certification','title'];","","    // Loop through each job in the jobs array","    jobs.forEach(job => {","        // Loop through the specified fields to check","        fieldsToCheck.forEach(field => {","            // Check if the field is missing or null","            if (!job.hasOwnProperty(field) || job[field] === null || job[field] === \"\") {","                missingVariables.push({","                    jobId: job.id,","                    fieldName: field","                });","            }","        });","    });","","    // Check if any of the specified field is null or has no value","    pm.test(\"Check specified fields for missing or null values\", function() {","        // If any specified field is missing or null, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    // TEST NUMBER 3","","    // Get the actual count of jobs","    const actualCount = jobs.length;","","    // Extract the jobs array","    let count = responseData.api_response.api_data.count;","","    // Check if the actual count matches the expected count","    pm.test(\"Check if the number of jobs matches the expected count\", function() {","        // Set the expected count based on the number of elements in the jobs array","        const expectedCount = count;","        pm.expect(actualCount).to.equal(expectedCount);","    });","","    // Define the fields to check and their expected data types","    const fieldsDataTypeToCheck = {","        speciality: 'string',","        status: 'string',","        weeklyGrossPay: 'string',","        hourlyPayRate: 'string', ","        weeklyRegularGrossPay: 'string',","        address: 'object',","        'address.country': 'string',","        'address.city': 'string',","        'address.zip': 'string',","        'address.address1': 'string',","        'address.address2': 'string',","        'address.state': 'string',","        id: 'string',","        category: 'string',","        region: 'string',","        requirements: 'string',","        hot_job: 'string',","        description: 'string',","        certification: 'string',","        date_added: 'string',","        totalWeeklyPayPackage: 'string',","        type: 'string',","        title: 'string',","        api_request_custom: 'object',","        'address.hourlyPayRate': 'undefined',","        'address.weeklyRegularGrossPay': 'undefined',","        'address.totalWeeklyPayPackage': 'undefined',","        'address.weeklyGrossPay': 'undefined',","    };","","    // Example Test: Check data types of specific fields","    pm.test(\"Check data types of specific fields in each job\", function() {","        jobs.forEach(job => {","            for (let field in fieldsDataTypeToCheck) {","                let expectedType = fieldsDataTypeToCheck[field];","                let fieldValue = getNestedProperty(job, field.split('.'));","","                if (expectedType === 'date') {","                    // Custom check for date type","                    pm.expect(typeof fieldValue).to.equal('string', `Expected ${field} to be a string for job ID ${job.id}`);","                    pm.expect(isValidDate(fieldValue)).to.be.true(`Expected ${field} to be a valid date for job ID ${job.id}`);","                } else {","                    // General type check","                    pm.expect(typeof fieldValue).to.equal(expectedType, `Expected ${field} to be a ${expectedType} for job ID ${job.id}`);","                }","            }","        });","    });","","","} else {","    pm.test(\"Skipping further tests as the initial conditions are not met\", function() {","        pm.expect(true).to.be.true;","    });","}","","// Helper function to check if a string is a valid date","function isValidDate(dateString) {","    let date = new Date(dateString);","    return !isNaN(date.getTime());","}","","// Helper function to get nested property value","function getNestedProperty(obj, pathArray) {","    return pathArray.reduce((acc, key) => (acc && acc[key] !== 'undefined') ? acc[key] : undefined, obj);","}"],"type":"text/javascript"}}],"id":"a6067df8-0234-49b1-8a0f-4b24e638a87e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":0,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n\t\t\t\"include_salary\": 0,\n\t\t\t\"hot_job\": 1,\n\t\t\t\"type\": \"long term\"\n        }\n    }\n}"},"url":"{{ats-connect}}/job/get/","description":"<p>For retrieving all jobs with optional filtering.</p>\n\n<p>NOTE: API Healthcare's API supports two kinds of job pulls: Per Diem, and Long Term.</p>\n\n<p>By default, this call will pull both varieties. However, should you need only one, add the parameter \"type\" with a value of either \"per diem\" for Per Diem, or \"long term\" for Long Term.</p>\n\n<ul>\n<li>type - \"per diem\" or \"long term\" - <strong>OPTIONAL</strong> - for choosing specific job types</li>\n<li>country - limit search by country code - <strong>OPTIONAL</strong> - Currently these are the countries and their respective IDs (1: United States, 2: Canada, 14: Australia)</li>\n<li>drivingMiles - defaults to 0</li>\n<li>hot_job - 0|1 - defaults to 0</li>\n<li>status - status of job posting - defaults to open</li>\n<li>start_date</li>\n<li>end_date</li>\n<li>region_id - Region ID (comma separated IDs)</li>\n<li>state_id - State ID (comma separated IDs)</li>\n<li>include_salary - defaults to 0 unless a job ID is passed</li>\n<li>api_request_fields - space delimited list</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n        \"api_request_fields\":\"teaserNote housingNote\",\n        \"api_request_query\":{\n           \"hotJobsOnly\": 1,\n           \"clientRegionIdIn\":\"15,34,20,36,21,43,86,16,61,57,45,58,47,81,77,2,22,84,14,96,93,23,91,67,92,13,89,10,29,41,83,46,25,3,9,6,63,56,39,17,75,68,4,99,87,26,18,97,40,1,37,95,12,7,55,5,42,19,76,27,44,100,69,8,24,11,48,74,33,70,59,38,65,32,85,30,31,82,28\"\n           \"include_salary\": 0\n        }\n    }\n\n</code></pre>","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0bf20a22-7e63-4fe6-884e-7a831c5563b1","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Apr 2024 20:49:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"11013"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"265556"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 621,\n            \"jobs\": [\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307873\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307874\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307875\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307876\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307877\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307878\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307932\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307933\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307934\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307935\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307936\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307937\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307938\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307966\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307967\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307968\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308025\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308026\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308027\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308028\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308085\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308086\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308087\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"308117\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"308118\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"308177\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308207\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"308208\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310046\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310047\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310048\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310049\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310050\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310051\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310052\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310053\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310054\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310055\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310056\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310057\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310058\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310059\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310060\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310061\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310062\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310063\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310064\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310065\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310066\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310067\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310068\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310069\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310070\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310071\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310072\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310073\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310074\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310075\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310076\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310077\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310078\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310079\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310080\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310081\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310082\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310083\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310084\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310085\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310086\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310087\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310088\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310089\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310090\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310091\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310092\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310093\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310094\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310095\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310096\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310097\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310098\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310099\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310100\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310101\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310102\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310103\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310104\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310105\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310106\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310107\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310108\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310109\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310110\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310111\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310112\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310113\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310114\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310115\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310116\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310117\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310118\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310119\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310120\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310121\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310122\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310123\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310124\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310125\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310126\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310127\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310128\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310129\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310130\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310131\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310132\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310133\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310134\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310135\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310136\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310137\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310138\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310139\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310140\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310141\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310142\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310143\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310144\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310145\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310146\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310147\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310148\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310149\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310150\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310151\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310152\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310153\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310154\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310155\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310156\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310157\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310159\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310160\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310161\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310162\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310163\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310164\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310165\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310166\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310167\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310168\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310169\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310170\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310171\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310172\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310173\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310174\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310175\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310176\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310177\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310178\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310179\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310180\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310181\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310182\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310183\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310184\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310185\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310186\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310187\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310188\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310189\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310190\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310191\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310192\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310193\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310194\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310195\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310196\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310197\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310198\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310199\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310200\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310203\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310204\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310205\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310206\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310207\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310208\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310211\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310212\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310213\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310214\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310216\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310217\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310218\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310220\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310223\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310224\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310225\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310226\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310228\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310230\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310231\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310232\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310233\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310234\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310235\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310236\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310239\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310240\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310242\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310244\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310245\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310246\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310247\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310248\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310249\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310250\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310254\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310256\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310257\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310258\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310259\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310260\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310261\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310262\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310264\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310265\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310266\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310268\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310272\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310273\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310274\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310275\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310278\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310279\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310280\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310281\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310282\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310283\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310284\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310285\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310286\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310287\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310288\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310289\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310290\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310291\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310292\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310294\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310296\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310297\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310298\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310300\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310301\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310302\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310303\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310304\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310305\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310306\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310308\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310310\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310312\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310313\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310315\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310316\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310317\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310318\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310319\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310320\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310321\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310322\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310323\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"310324\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-04\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310520\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"to replace debra singer lm\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-10\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310521\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"to replace debra singer lm\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-10\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310583\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Woodstock\",\n                        \"zip\": \"30188\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-12\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310584\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Woodstock\",\n                        \"zip\": \"30188\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-12\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310585\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Woodstock\",\n                        \"zip\": \"30188\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-12\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310790\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milledgeville\",\n                        \"zip\": \"31061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310794\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310795\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310796\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310797\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310798\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310799\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310800\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310801\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310802\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310803\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310804\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310805\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310806\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310807\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310808\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310809\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310810\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310811\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310812\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310813\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310814\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310815\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310816\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310817\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310818\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310819\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310820\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310821\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310822\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310823\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310824\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310825\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310826\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310827\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310828\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310829\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310830\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310831\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310832\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310833\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310834\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310835\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310836\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310837\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310838\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310839\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310840\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310841\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310842\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310843\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310844\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310845\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310846\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310847\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310848\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310849\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310850\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310851\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310852\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310853\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310854\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310855\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310856\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310857\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310858\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310859\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310860\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310861\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310862\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310863\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310864\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310865\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310866\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310867\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310868\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310869\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310870\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310871\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310872\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310873\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310874\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310875\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310876\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310877\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310878\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310879\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310880\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310881\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310882\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310883\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310884\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310885\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"310886\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310918\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310919\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310920\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310921\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310922\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310923\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310924\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310925\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310926\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310927\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310928\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310929\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310930\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310931\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310932\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310933\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310934\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310935\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310936\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310937\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310938\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310939\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310940\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310941\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310942\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310943\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310944\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310945\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310946\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310947\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310948\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310949\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310950\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310951\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310952\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310953\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310954\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310955\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310956\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310957\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310958\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310959\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310960\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310961\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310962\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310963\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310964\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310965\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310966\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310967\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310968\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310969\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310970\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310971\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310972\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310973\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310974\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310975\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310976\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310977\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310978\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310979\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310987\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310988\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310989\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310990\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310991\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310992\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310993\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"310994\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311001\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311004\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311011\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311015\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311017\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311022\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311024\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311029\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311030\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311033\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311037\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311038\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311043\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311048\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311049\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311050\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311051\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311054\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311055\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311056\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311057\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311061\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311062\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311063\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311081\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311082\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311083\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311084\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311086\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"Medication Tech\",\n                    \"id\": \"311092\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"Medication Tech\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC Medication Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311093\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311096\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-18\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311238\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Athens\",\n                        \"zip\": \"30606\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-22\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311242\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Athens\",\n                        \"zip\": \"30606\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311273\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311275\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311276\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311279\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311280\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311281\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311282\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311283\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311285\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311286\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311287\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311288\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311289\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311290\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311291\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311292\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311293\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311294\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311295\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311296\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311297\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311298\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311299\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311300\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311301\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311302\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311303\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311304\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311305\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311306\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311307\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311308\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311309\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311310\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311315\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-23\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Behavioral Health\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311330\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Monroe\",\n                        \"zip\": \"30655\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"Behavioral Health\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"Behavioral Health LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Behavioral Health\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311331\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Monroe\",\n                        \"zip\": \"30655\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"Behavioral Health\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"Behavioral Health LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Behavioral Health\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311332\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Monroe\",\n                        \"zip\": \"30655\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"Behavioral Health\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"Behavioral Health LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311336\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milledgeville\",\n                        \"zip\": \"31061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311337\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milledgeville\",\n                        \"zip\": \"31061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311359\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-24\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Behavioral Health\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311372\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"LaGrange\",\n                        \"zip\": \"30240\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"Behavioral Health\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-25\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"Behavioral Health CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311413\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311414\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311415\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311416\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311417\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311418\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311419\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311420\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311421\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311422\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311423\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311424\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311425\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311426\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311427\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311428\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311429\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311430\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311431\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311432\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311433\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311434\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"LPN\",\n                    \"id\": \"311435\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311436\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311437\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311438\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311439\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311440\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311441\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311442\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311443\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311444\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311445\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311446\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311447\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311448\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311449\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311450\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311451\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311452\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"RN\",\n                    \"id\": \"311453\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311454\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311455\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311456\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311457\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311458\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311459\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311460\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311461\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311462\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311463\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311464\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311465\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311466\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311467\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311468\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311469\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311470\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311471\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311472\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311473\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311474\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311475\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311476\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311477\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311478\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311479\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311480\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"311481\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bethlehem\",\n                        \"zip\": \"30620\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$230.40/week\",\n                    \"hourlyPayRate\": \"$19.20/hr\",\n                    \"weeklyRegularGrossPay\": \"$230.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milledgeville\",\n                        \"zip\": \"31061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1612\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-03-21\",\n                    \"totalWeeklyPayPackage\": \"$230.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$19.20/hr\",\n                        \"weeklyRegularGrossPay\": \"$230.40/week\",\n                        \"totalWeeklyPayPackage\": \"$230.40/week\",\n                        \"weeklyGrossPay\": \"$230.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"Crisis Stabilization\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1920.00/week\",\n                    \"hourlyPayRate\": \"$48.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$1920.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Gainesville\",\n                        \"zip\": \"30507\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1666\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Crisis Stabilization\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;RNs&nbsp;to work in a&nbsp;CSU&nbsp;facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Full-Time with weekend rotations</i></p>\\r\\n<ul>\\r\\n<li>8a-8p</li>\\r\\n<li>8p-8a</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Count controlled substances, syringes, needles, and sharps at the beginning of each shift with another staff member and sign count logs</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience&nbsp;preferred.</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen</strong>&nbsp;</li>\\r\\n</ul>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2023-05-22\",\n                    \"totalWeeklyPayPackage\": \"$1920.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"Crisis Stabilization RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$48.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$1920.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1920.00/week\",\n                        \"weeklyGrossPay\": \"$1920.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"Behavioral Health\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Newnan\",\n                        \"zip\": \"30263\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1688\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"Behavioral Health\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a behavioral health setting.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Shift Availability:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A<b>&nbsp;</b></li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.<b>&nbsp;</b></li>\\r\\n</ul>\\r\\n<p><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Requirements:</b></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><b>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</b></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</b></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-06-01\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"Behavioral Health CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$736.00/week\",\n                    \"hourlyPayRate\": \"$18.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$736.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Woodstock\",\n                        \"zip\": \"30188\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1690\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-06-05\",\n                    \"totalWeeklyPayPackage\": \"$736.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$18.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$736.00/week\",\n                        \"totalWeeklyPayPackage\": \"$736.00/week\",\n                        \"weeklyGrossPay\": \"$736.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1705\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<strong><em>Shifts are available immediately.</em></strong><br /><br /><strong>Available Hours:&nbsp;</strong><em>Part-Time and Full-Time Positions available (including weekend rotation).</em></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><strong>Benefits of BOS:</strong></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Cell Phone Coverage</li>\\r\\n<li>Employee Incentive Programs</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements &amp; Skills:</strong></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered Georgia Licensed Practical Nurse (LPN)</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong><gu-sc>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;<gu-sc-dial data-dn=\\\"4705685058\\\" title=\\\"Click to Connect 4705685058\\\"><gu-sc-img></gu-sc-img>470-568-5058</gu-sc-dial>.&nbsp;<gu-sc-orig style=\\\"display: none;\\\">To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2023-07-07\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$662.40/week\",\n                    \"hourlyPayRate\": \"$18.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$662.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1711\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-07-07\",\n                    \"totalWeeklyPayPackage\": \"$662.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$18.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$662.40/week\",\n                        \"totalWeeklyPayPackage\": \"$662.40/week\",\n                        \"weeklyGrossPay\": \"$662.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1584.00/week\",\n                    \"hourlyPayRate\": \"$44.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$1584.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milledgeville\",\n                        \"zip\": \"31061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1716\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-07-11\",\n                    \"totalWeeklyPayPackage\": \"$1584.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$44.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$1584.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1584.00/week\",\n                        \"weeklyGrossPay\": \"$1584.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1094.40/week\",\n                    \"hourlyPayRate\": \"$30.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1723\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-07-25\",\n                    \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$30.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                        \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                        \"weeklyGrossPay\": \"$1094.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1526.40/week\",\n                    \"hourlyPayRate\": \"$42.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$1526.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1724\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;RNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:<i>&nbsp;</i></b><i>Part-Time and Full-Time Positions Available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Attends mandatory staff meetings and training.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered Georgia nursing license (RN)</li>\\r\\n<li>At least 1 year of experience as an&nbsp;RN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2023-07-25\",\n                    \"totalWeeklyPayPackage\": \"$1526.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$42.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$1526.40/week\",\n                        \"totalWeeklyPayPackage\": \"$1526.40/week\",\n                        \"weeklyGrossPay\": \"$1526.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$736.00/week\",\n                    \"hourlyPayRate\": \"$18.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$736.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1725\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-07-25\",\n                    \"totalWeeklyPayPackage\": \"$736.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$18.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$736.00/week\",\n                        \"totalWeeklyPayPackage\": \"$736.00/week\",\n                        \"weeklyGrossPay\": \"$736.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$736.00/week\",\n                    \"hourlyPayRate\": \"$18.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$736.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Carrollton\",\n                        \"zip\": \"30117\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1737\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-16\",\n                    \"totalWeeklyPayPackage\": \"$736.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$18.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$736.00/week\",\n                        \"totalWeeklyPayPackage\": \"$736.00/week\",\n                        \"weeklyGrossPay\": \"$736.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$960.00/week\",\n                    \"hourlyPayRate\": \"$24.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$960.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1746\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-29\",\n                    \"totalWeeklyPayPackage\": \"$960.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$24.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$960.00/week\",\n                        \"totalWeeklyPayPackage\": \"$960.00/week\",\n                        \"weeklyGrossPay\": \"$960.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$928.00/week\",\n                    \"hourlyPayRate\": \"$23.20/hr\",\n                    \"weeklyRegularGrossPay\": \"$928.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1748\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$928.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$23.20/hr\",\n                        \"weeklyRegularGrossPay\": \"$928.00/week\",\n                        \"totalWeeklyPayPackage\": \"$928.00/week\",\n                        \"weeklyGrossPay\": \"$928.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$960.00/week\",\n                    \"hourlyPayRate\": \"$24.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$960.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1749\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$960.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$24.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$960.00/week\",\n                        \"totalWeeklyPayPackage\": \"$960.00/week\",\n                        \"weeklyGrossPay\": \"$960.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1664.00/week\",\n                    \"hourlyPayRate\": \"$41.60/hr\",\n                    \"weeklyRegularGrossPay\": \"$1664.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1750\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$1664.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$41.60/hr\",\n                        \"weeklyRegularGrossPay\": \"$1664.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1664.00/week\",\n                        \"weeklyGrossPay\": \"$1664.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$800.00/week\",\n                    \"hourlyPayRate\": \"$20.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$800.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bishop\",\n                        \"zip\": \"30621\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1751\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$800.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$20.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$800.00/week\",\n                        \"totalWeeklyPayPackage\": \"$800.00/week\",\n                        \"weeklyGrossPay\": \"$800.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$672.00/week\",\n                    \"hourlyPayRate\": \"$16.80/hr\",\n                    \"weeklyRegularGrossPay\": \"$672.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Athens\",\n                        \"zip\": \"30606\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1752\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$672.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$16.80/hr\",\n                        \"weeklyRegularGrossPay\": \"$672.00/week\",\n                        \"totalWeeklyPayPackage\": \"$672.00/week\",\n                        \"weeklyGrossPay\": \"$672.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Athens\",\n                        \"zip\": \"30606\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1753\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>&nbsp;</b><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1094.40/week\",\n                    \"hourlyPayRate\": \"$30.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Woodstock\",\n                        \"zip\": \"30188\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1754\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$30.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                        \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                        \"weeklyGrossPay\": \"$1094.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1094.40/week\",\n                    \"hourlyPayRate\": \"$30.40/hr\",\n                    \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Roswell\",\n                        \"zip\": \"30075\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1755\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$30.40/hr\",\n                        \"weeklyRegularGrossPay\": \"$1094.40/week\",\n                        \"totalWeeklyPayPackage\": \"$1094.40/week\",\n                        \"weeklyGrossPay\": \"$1094.40/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1036.80/week\",\n                    \"hourlyPayRate\": \"$28.80/hr\",\n                    \"weeklyRegularGrossPay\": \"$1036.80/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Social Circle\",\n                        \"zip\": \"30025\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1756\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$1036.80/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$28.80/hr\",\n                        \"weeklyRegularGrossPay\": \"$1036.80/week\",\n                        \"totalWeeklyPayPackage\": \"$1036.80/week\",\n                        \"weeklyGrossPay\": \"$1036.80/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1248.00/week\",\n                    \"hourlyPayRate\": \"$31.20/hr\",\n                    \"weeklyRegularGrossPay\": \"$1248.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1757\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;LPNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Utilize the nursing process to assess, plan, implement and evaluate patient care.</li>\\r\\n<li>Perform a focused interview to identify specific patient needs.</li>\\r\\n<li>Assess signs and symptoms indicating physiologic and psychosocial changes in the patient&rsquo; s condition.</li>\\r\\n<li>Collect, analyze, and interpret data and information from health care members and document actual and/or potential nursing diagnoses.</li>\\r\\n<li>Other Licensed Practical Nurse (LPN) duties as assigned.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of experience as an&nbsp;LPN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$1248.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$31.20/hr\",\n                        \"weeklyRegularGrossPay\": \"$1248.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1248.00/week\",\n                        \"weeklyGrossPay\": \"$1248.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$704.00/week\",\n                    \"hourlyPayRate\": \"$17.60/hr\",\n                    \"weeklyRegularGrossPay\": \"$704.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1758\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-08-30\",\n                    \"totalWeeklyPayPackage\": \"$704.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$17.60/hr\",\n                        \"weeklyRegularGrossPay\": \"$704.00/week\",\n                        \"totalWeeklyPayPackage\": \"$704.00/week\",\n                        \"weeklyGrossPay\": \"$704.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$800.00/week\",\n                    \"hourlyPayRate\": \"$20.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$800.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dahlonega\",\n                        \"zip\": \"30533\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1763\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;CNAs&nbsp;to work in a long-term care facility.&nbsp;<em><b>Shifts are available immediately.</b></em></p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2023-09-07\",\n                    \"totalWeeklyPayPackage\": \"$800.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$20.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$800.00/week\",\n                        \"totalWeeklyPayPackage\": \"$800.00/week\",\n                        \"weeklyGrossPay\": \"$800.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1584.00/week\",\n                    \"hourlyPayRate\": \"$44.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$1584.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bishop\",\n                        \"zip\": \"30621\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1765\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;RNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:<i>&nbsp;</i></b><i>Part-Time and Full-Time Positions Available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Attends mandatory staff meetings and training.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered Georgia nursing license (RN)</li>\\r\\n<li>At least 1 year of experience as an&nbsp;RN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2023-09-08\",\n                    \"totalWeeklyPayPackage\": \"$1584.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$44.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$1584.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1584.00/week\",\n                        \"weeklyGrossPay\": \"$1584.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"Wound Care\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Suwanee\",\n                        \"zip\": \"30024\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1819\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Wound Care\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;a Wound Treatment Nurse (LPN or RN)&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:&nbsp;</b><i>Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>8A-5P</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Document resident progress in the medical record</li>\\r\\n<li>Notify physician of new skin condition problems, changes of skin condition, and when skin conditions heal and document in resident&rsquo;s plan of care</li>\\r\\n<li>Develop, update and revise care plans when appropriate</li>\\r\\n<li>Follow Infection Control policies and procedures</li>\\r\\n<li>Assist with admission and discharge of residents. Participate in patient education, Licensed Staff meetings and facility/company training and educational activities</li>\\r\\n<li>Provide or assist with providing education to staff on wound care protocols, treatments, interventions</li>\\r\\n<li>Follow facility policy and procedure for treatment and documentation of skin concerns</li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p>&nbsp;</p>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Must be a Registered Nurse (RN) or Licensed Practical Nurse (LPN) in good standing and currently licensed by the State or hold a multistate license recognized through the Nursing Compact Recognition</li>\\r\\n<li>Must hold and maintain a current CPR certification</li>\\r\\n<li>Wound Certification preferable (WCC, WOCN)</li>\\r\\n<li>Must be capable of maintaining regular attendance</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</b></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-02-09\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"Wound Care RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1760.00/week\",\n                    \"hourlyPayRate\": \"$44.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$1760.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"30529\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1825\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;RNs&nbsp;to work in a long-term care facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><b>Available Hours:<i>&nbsp;</i></b><i>Part-Time and Full-Time Positions Available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-7P</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Attends mandatory staff meetings and training.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered Georgia nursing license (RN)</li>\\r\\n<li>At least 1 year of experience as an&nbsp;RN&nbsp;preferred</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of a team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>&nbsp;</b></p>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-02-22\",\n                    \"totalWeeklyPayPackage\": \"$1760.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$44.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$1760.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1760.00/week\",\n                        \"weeklyGrossPay\": \"$1760.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"Clinic\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1248.00/week\",\n                    \"hourlyPayRate\": \"$31.20/hr\",\n                    \"weeklyRegularGrossPay\": \"$1248.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Gainesville\",\n                        \"zip\": \"30501\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1827\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Clinic\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS Medical Staffing is looking for an Occupational Health Nurse to be based in Hall County, GA this position will perform COVID-19 Risk Assessment, Preplacement Occupational Health Assessments, and provide support for all aspects of Occupational Health programs and functions for all domestic locations. Hours for this position are <strong>8a-5p</strong>.</p>\\r\\n<p><b>DESCRIPTION:</b></p>\\r\\n<ul>\\r\\n<li>Work within all Occupational Health Services (OHS) programs and functions to fully support Client Operations, HR and EHS functions, to include coordination with Client&rsquo;s contracted doctor who also serves as the Medical Review Officer (MRO)</li>\\r\\n<li>Adhere to Client OHS policies and procedures, interacting on a frequent basis with Corp HR and HR &amp; Safety Coordinators at all locations.</li>\\r\\n<li>Performs Risk Assessment for COVID-19 Response.</li>\\r\\n<li>Perform Occupational Health Assessments (Fitness for Duty (FFD) evaluations, etc.)</li>\\r\\n<li>Complete PIT (Powered Industrial Truck) 3-Yr Vision Test program.</li>\\r\\n<li>Work with all local medical clinics utilized by Client, to include ensuring Client&rsquo;s OHS policies and procedures are effectively communicated and followed with outcomes that are consistent with client expectations.</li>\\r\\n<li>Review and update Client Job Profile/Medical Assessment (JP/MA) documentation, which specifies the specific physical requirements of each Client position.</li>\\r\\n<li>Reasonable Accommodations - Medical Consultations:</li>\\r\\n<li>Return to Work (RTW)</li>\\r\\n<li>Review, prepare, and report all drug test (DT) results to all Client sites.&nbsp; Records drug test results to help assist with the preparation of monthly statistics of the same.&nbsp; Investigate and prepare documentation regarding non-negative DT results and assist with the MRO process as directed by OHS Manager.</li>\\r\\n<li>Conduct telephonic medication reviews consistent with the Client&rsquo;s Alcohol and Drug-Free Workplace Policy.</li>\\r\\n<li>PPOHA- review red flags, determine if further assessment is needed</li>\\r\\n<li>Train HR reps on OHS procedures and best practices.</li>\\r\\n</ul>\\r\\n<p><b>QUALIFICATIONS:</b>&nbsp;</p>\\r\\n<ul>\\r\\n<li>Education: Minimum Licensed Practical Nursing Degree/RN Preferred</li>\\r\\n<li>1 year of general nursing experience required with at least 1 year of nursing in an occupational setting preferred.&nbsp; Case management experience a plus.</li>\\r\\n</ul>\\r\\n<p>&nbsp;<b>Certificate / License:</b></p>\\r\\n<ul>\\r\\n<li>Current LPN/RN license in the state of practice required.&nbsp;</li>\\r\\n<li>Certifications in Occupational Health Nursing (COHN) and Case Management (CCM) preferred.</li>\\r\\n</ul>\\r\\n<p><b>Skills &amp; Training:</b></p>\\r\\n<ul>\\r\\n<li>Experienced nurse clinician familiar with triage, evaluation, treatment, and case management of work and non-work-related injuries and illnesses.</li>\\r\\n<li>Experience with audiometric testing, alcohol and drug testing and specimen collection, OSHA medical surveillance programs, respiratory protection, emergency response, first-aid, bloodborne pathogens (BBP), and ergonomics preferred.</li>\\r\\n<li>Good oral &amp; written communication skills required.&nbsp;</li>\\r\\n<li>Experience with Microsoft Office.&nbsp; Must be organized and possess effective interpersonal communication skills.&nbsp;</li>\\r\\n<li>Must be able to work successfully as a team member.</li>\\r\\n<li>Must maintain professional appearance and attitude at all times.</li>\\r\\n</ul>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-02-28\",\n                    \"totalWeeklyPayPackage\": \"$1248.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"Clinic LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$31.20/hr\",\n                        \"weeklyRegularGrossPay\": \"$1248.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1248.00/week\",\n                        \"weeklyGrossPay\": \"$1248.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Muscle Shoals\",\n                        \"zip\": \"35661\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"id\": \"1834\",\n                    \"category\": \"CNA\",\n                    \"region\": \"\",\n                    \"requirements\": \"LTC\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for qualified CNAs&nbsp;to work in a long-term care facility.</p>\\r\\n<p><strong>Shift Availability:&nbsp;</strong><i>Part-Time and Full-Time Positions available (including weekend rotation).</i></p>\\r\\n<ul>\\r\\n<li>7A-3P</li>\\r\\n<li>3P-11P</li>\\r\\n<li>11P-7A</li>\\r\\n</ul>\\r\\n<p><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Assist with activities of daily living,&nbsp;ADLs&nbsp;(turning, positioning, toileting, bathing, grooming, feeding, and mobility).</li>\\r\\n<li>Obtain and record vital signs and weight, as assigned.</li>\\r\\n<li>Accurately document all care as required by company policy and in compliance with state and federal regulations.</li>\\r\\n<li>Take temperature, pulse, and respiration.</li>\\r\\n<li>Perform care as defined by the resident plan of care.</li>\\r\\n<li>Observe patient and report changes in condition, attitude, reactions, appetite, and behavior to team leader.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of&nbsp;BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><strong>Requirements:</strong></p>\\r\\n<ul>\\r\\n<li>1-year Long Term Care experience as&nbsp;CNA</li>\\r\\n<li>State issued certification&nbsp;as a&nbsp;CNA</li>\\r\\n<li>CPR&nbsp;Certification</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><strong>&nbsp;</strong></p>\\r\\n<p><strong>TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</strong></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">TO BE CONSIDERED FOR THIS OPPORTUNITY, PLEASE SUBMIT YOUR APPLICATION, OR CONTACT OUR RECRUITERS VIA CALL OR TEXT AT&nbsp;470-568-5058.</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-22\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Crisis Stabilization\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"$1728.00/week\",\n                    \"hourlyPayRate\": \"$48.00/hr\",\n                    \"weeklyRegularGrossPay\": \"$1728.00/week\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Newnan\",\n                        \"zip\": \"30263\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"1844\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Crisis Stabilization\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for&nbsp;RNs&nbsp;to work in a&nbsp;CSU&nbsp;facility.&nbsp;<strong><em>Shifts are available immediately.</em></strong><br /><br /><strong>Available Hours:&nbsp;</strong><em>Full-Time with weekend rotations</em></p>\\r\\n<ul>\\r\\n<li>36-48 rotation</li>\\r\\n<li>7P-7A</li>\\r\\n</ul>\\r\\n<p><br /><br /><strong>&nbsp;</strong><strong>Responsibilities:</strong></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Count controlled substances, syringes, needles, and sharps at the beginning of each shift with another staff member and sign count logs</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><br /><br /><strong>&nbsp;</strong><br /><br /><strong>Benefits of&nbsp;BOS:</strong></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><br /><br /><strong>&nbsp;</strong><strong>Requirements &amp; Skills:</strong></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li>At least 1 year of relevant experience&nbsp;preferred.</li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen</strong>&nbsp;</li>\\r\\n</ul>\\r\\n<p><br /><br /><strong>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.&nbsp;</strong></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-11\",\n                    \"totalWeeklyPayPackage\": \"$1728.00/week\",\n                    \"type\": \"long term\",\n                    \"title\": \"Crisis Stabilization RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"$48.00/hr\",\n                        \"weeklyRegularGrossPay\": \"$1728.00/week\",\n                        \"totalWeeklyPayPackage\": \"$1728.00/week\",\n                        \"weeklyGrossPay\": \"$1728.00/week\"\n                    }\n                },\n                {\n                    \"speciality\": \"Correctional\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Gretna\",\n                        \"zip\": \"70053\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"1848\",\n                    \"category\": \"LPN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Correctional\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for experienced LPNs&nbsp;to work in a correctional facility.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><strong>Assignment Length: 13 weeks</strong></p>\\r\\n<ul>\\r\\n<li>Estimated Weekly Hours: 36/48 rotation</li>\\r\\n<li>Shifts: 7p-7a, 7a-7p</li>\\r\\n<li>$35 - $37 per hour</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Count controlled substances, syringes, needles, and sharps at the beginning of each shift with another staff member and sign count logs</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Attends mandatory staff meetings and training.</li>\\r\\n<li>Must be able to obtain and maintain security clearance.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li><strong>At least 1 year of correctional experience required.</strong></li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"LPN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"Correctional LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Correctional\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Gretna\",\n                        \"zip\": \"70053\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"1849\",\n                    \"category\": \"RN\",\n                    \"region\": \"\",\n                    \"requirements\": \"Correctional\",\n                    \"hot_job\": \"0\",\n                    \"description\": \"<p>BOS&nbsp;Medical Staffing is looking for experienced RNs&nbsp;to work in a correctional facility as a RN Supervisor.&nbsp;<b><i>Shifts are available immediately.</i></b></p>\\r\\n<p><strong>Assignment Length: 13 weeks</strong></p>\\r\\n<ul>\\r\\n<li>Estimated Weekly Hours: 36/48 rotation</li>\\r\\n<li>Shifts: 7p-7a, 7a-7p</li>\\r\\n<li>$35 - $37 per hour</li>\\r\\n</ul>\\r\\n<p><b>Responsibilities:</b></p>\\r\\n<ul>\\r\\n<li>Implements individualized treatment programs as directed by the Health Care Practitioner.</li>\\r\\n<li>Count controlled substances, syringes, needles, and sharps at the beginning of each shift with another staff member and sign count logs</li>\\r\\n<li>Communicate information to nursing staff, physicians, health care unit supervisory personnel, and other staff as necessary.</li>\\r\\n<li>Respect the dignity and confidentiality of patients.</li>\\r\\n<li>Attends mandatory staff meetings and training.</li>\\r\\n<li>Must be able to obtain and maintain security clearance.</li>\\r\\n<li>Must be able to apply principles of critical thinking to a variety of practical and emergent situations and accurately follow standardized procedures that may call for deviations.</li>\\r\\n<li>Must be able to apply sound judgment beyond a specific set of instructions and apply knowledge to different factual situations.</li>\\r\\n</ul>\\r\\n<p><b>Benefits of BOS:</b></p>\\r\\n<ul>\\r\\n<li>Flexible Schedules</li>\\r\\n<li>Weekly and Next Business Day Pay Options</li>\\r\\n<li>Medical, Vision, Dental Insurance</li>\\r\\n<li>Vacation, Referral, and Quarterly Incentive Programs</li>\\r\\n<li>Working Advantage Discount Program</li>\\r\\n</ul>\\r\\n<p><b>Requirements &amp; Skills:</b></p>\\r\\n<ul>\\r\\n<li>Current, unencumbered nursing license</li>\\r\\n<li><strong>At least 1 year of correctional experience required.</strong></li>\\r\\n<li>Basic computer skills for charting</li>\\r\\n<li>Ability to work as part of team and&nbsp;multi-task</li>\\r\\n<li><strong>Candidates must pass a criminal background check including an&nbsp;FBI&nbsp;Fingerprint Criminal History Check and Pre-employment drug screen.</strong></li>\\r\\n</ul>\\r\\n<p><b>To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</b></p>\\r\\n<p><strong><gu-sc><gu-sc-orig style=\\\"display: none;\\\">To be considered for this opportunity, please submit your application, or contact our recruiters via CALL or TEXT at&nbsp;470-568-5058.</gu-sc-orig></gu-sc></strong></p>\",\n                    \"certification\": \"RN\",\n                    \"date_added\": \"2024-04-26\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"long term\",\n                    \"title\": \"Correctional RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-04-26T20:49:29\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-26T20:49:30\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'Authorization' => 'Bearer d450hqcz'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"\\\",\\\"call\\\":\\\"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getPayPackageForAssignment&assignmentId=1849&createRatesheet=no&drivingMiles=0&resultType=json\\\"}\",\n            \"MESSAGE\": \"Pay package cannot be retrieved since bill rate is not defined. \",\n            \"VENDOR\": \"apihealthcare\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"621 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?drivingMiles=0&assignmentId=1849&action=getPayPackageForAssignment&createRatesheet=no&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"11.356612\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"621 jobs returned\"\n}"}],"_postman_id":"a6067df8-0234-49b1-8a0f-4b24e638a87e"},{"name":"Job Get By ID","event":[{"listen":"test","script":{"id":"0beac3e8-effc-4b8d-972f-a02668a83abf","exec":["// Parse the response body as JSON","let responseData = pm.response.json();","","// Step 1: Check if the status code is 200 OK","pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","// Step 2: Check if the MESSAGE value is \"Success\"","pm.test(\"MESSAGE is 'Success'\", function() {","    pm.expect(responseData.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Step 3: Proceed with other tests only if the previous checks pass","if (pm.response.code === 200 && responseData.api_response.api_log.MESSAGE === \"Success\") {","    // Parse the response body as JSON","    let responseData = pm.response.json();","","    // Extract the jobs array","    let jobs = responseData.api_response.api_data.jobs;","","    // Variables to check in job array","    const requiredVariables = ['speciality','status','weeklyGrossPay','hourlyPayRate','weeklyRegularGrossPay','address.country', 'address.city', 'address.zip', 'address.address1', 'address.address2', 'address.state','id','category','region','requirements','hot_job','description','certification','date_added','totalWeeklyPayPackage','type','title','api_request_custom.hourlyPayRate','api_request_custom.weeklyRegularGrossPay','api_request_custom.totalWeeklyPayPackage','api_request_custom.weeklyGrossPay'];","","","    // Initialize an array to store details of missing variables","    let missingVariables = [];","","    //TEST NUMBER 1","","    // Loop through each job in the jobs array","    jobs.forEach(job => {","    requiredVariables.forEach(variable => {","            // Split the variable by '.' to handle nested objects","            let keys = variable.split('.');","            let value = job;","            for (let key of keys) {","                value = value[key];","                if (value === undefined) {","                    missingVariables.push(variable);","                    break;","                }","            }","        });","    });","","    // If any record is missing required job variables, fail the test","    pm.test(\"All jobs contain required variables\", function() {","        // If any variable is missing, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Following variables are missing: \" + missingVariables.join(', '));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    //TEST NUMBER 2","","    const fieldsToCheck = ['id', 'speciality', 'category','requirements','certification','title'];","","    // Loop through each job in the jobs array","    jobs.forEach(job => {","        // Loop through the specified fields to check","        fieldsToCheck.forEach(field => {","            // Check if the field is missing or null","            if (!job.hasOwnProperty(field) || job[field] === null || job[field] === \"\") {","                missingVariables.push({","                    jobId: job.id,","                    fieldName: field","                });","            }","        });","    });","","    // Check if any of the specified field is null or has no value","    pm.test(\"Check specified fields for missing or null values\", function() {","        // If any specified field is missing or null, fail the test and log missing variables","        if (missingVariables.length > 0) {","            pm.expect.fail(\"Missing or null values found for specified fields. Details: \" + JSON.stringify(missingVariables));","        } else {","            pm.expect(true).to.be.true;","        }","    });","","    // TEST NUMBER 3","","    // Get the actual count of jobs","    const actualCount = jobs.length;","","    // Extract the jobs array","    let count = responseData.api_response.api_data.count;","","    // Check if the actual count matches the expected count","    pm.test(\"Check if the number of jobs matches the expected count\", function() {","        // Set the expected count based on the number of elements in the jobs array","        const expectedCount = count;","        pm.expect(actualCount).to.equal(expectedCount);","    });","","    // Define the fields to check and their expected data types","    const fieldsDataTypeToCheck = {","        speciality: 'string',","        status: 'string',","        weeklyGrossPay: 'string',","        hourlyPayRate: 'string', ","        weeklyRegularGrossPay: 'string',","        address: 'object',","        'address.country': 'string',","        'address.city': 'string',","        'address.zip': 'string',","        'address.address1': 'string',","        'address.address2': 'string',","        'address.state': 'string',","        id: 'string',","        category: 'string',","        region: 'string',","        requirements: 'string',","        hot_job: 'string',","        description: 'string',","        certification: 'string',","        date_added: 'string',","        totalWeeklyPayPackage: 'string',","        type: 'string',","        title: 'string',","        api_request_custom: 'object',","        'address.hourlyPayRate': 'undefined',","        'address.weeklyRegularGrossPay': 'undefined',","        'address.totalWeeklyPayPackage': 'undefined',","        'address.weeklyGrossPay': 'undefined',","    };","","    // Example Test: Check data types of specific fields","    pm.test(\"Check data types of specific fields in each job\", function() {","        jobs.forEach(job => {","            for (let field in fieldsDataTypeToCheck) {","                let expectedType = fieldsDataTypeToCheck[field];","                let fieldValue = getNestedProperty(job, field.split('.'));","","                if (expectedType === 'date') {","                    // Custom check for date type","                    pm.expect(typeof fieldValue).to.equal('string', `Expected ${field} to be a string for job ID ${job.id}`);","                    pm.expect(isValidDate(fieldValue)).to.be.true(`Expected ${field} to be a valid date for job ID ${job.id}`);","                } else {","                    // General type check","                    pm.expect(typeof fieldValue).to.equal(expectedType, `Expected ${field} to be a ${expectedType} for job ID ${job.id}`);","                }","            }","        });","    });","","","} else {","    pm.test(\"Skipping further tests as the initial conditions are not met\", function() {","        pm.expect(true).to.be.true;","    });","}","","// Helper function to check if a string is a valid date","function isValidDate(dateString) {","    let date = new Date(dateString);","    return !isNaN(date.getTime());","}","","// Helper function to get nested property value","function getNestedProperty(obj, pathArray) {","    return pathArray.reduce((acc, key) => (acc && acc[key] !== 'undefined') ? acc[key] : undefined, obj);","}"],"type":"text/javascript"}}],"id":"f0e09df1-762e-494c-adcd-1b95e2a7e236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":2723,\n                            \"type\":\"long term\"\n                    }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/","description":"<p>For retrieving specific job via ID.</p>\n\n<p>NOTE: API Healthcare's API supports two kinds of job pulls: Per Diem, and Long Term.</p>\n\n<p>By default, this call will pull both varieties. However, should you need only one, add the parameter \"type\" with a value of either \"per diem\" for Per Diem, or \"long term\" for Long Term.</p>\n\n<ul>\n<li><p>type - \"per diem\" or \"long term\" - <strong>OPTIONAL</strong> - for choosing specific job types</p>\n</li>\n<li><p>id - <strong>REQUIRED</strong> - job id</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":14826,\n                            \"type\":\"long term\"\n                    }\n    }\n\n</code></pre>","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9633f275-a104-42c7-87bf-be3c84eadb9a","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":307873,\n                            \"type\":\"per diem\"\n                    }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Apr 2024 20:50:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"674"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"265559"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"jobs\": [\n                {\n                    \"speciality\": \"LTC\",\n                    \"status\": \"open\",\n                    \"weeklyGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"category\": \"CNA\",\n                    \"id\": \"307873\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cumming\",\n                        \"zip\": \"30040\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"region\": \"1\",\n                    \"requirements\": \"LTC\",\n                    \"description\": \"\",\n                    \"certification\": \"CNA\",\n                    \"date_added\": \"2024-03-21\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"type\": \"per diem\",\n                    \"title\": \"LTC CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.156948\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-26T20:50:25\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?orderId=307873&status=open&action=getOrders&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.570493\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"},{"id":"489de012-5afb-43ac-b183-db023e545afe","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\":30448\n                            // \"type\":\"long term\"\n\n                    },\n                    \"api_request_fields\":\"id symplrHiringJobUrl\"\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 15:58:56 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"56811"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"5151045"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 641,\n            \"jobs\": [\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/izsiyzzZPEOkVM2sPlKiyA\",\n                    \"speciality\": \"Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"Education SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/vI0tNx5utEqZXqu4VPKgEg\",\n                    \"speciality\": \"Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Speech Language Pathologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Speech Language Pathologist\",\n                    \"title\": \"Education Speech Language Pathologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/HyaxupAYqEKreoJnfTrKdQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Speech Language Pathologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Speech Language Pathologist\",\n                    \"title\": \"SPED Services Speech Language Pathologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/GDo2FYLLCE6m-UF1DvUSNA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/xi26rE2if06r8zu_vNSz7A\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/DZ5iR24tskGn0VCR1x-DhA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"School Health Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"SPED Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YcHmnWRB-keVjMC4hAlVzQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"SPED Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services - Floater LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/wAQwMd3qFUq_xqcMsrniBQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Credentialed Education Specialist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Credentialed Education Specialist\",\n                    \"title\": \"SPED Services Credentialed Education Specialist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Family Medicine Physician | Competitive Salary + Benefits</b></p>\\n<p class=\\\"x_MsoNormal\\\">Looking to make a meaningful impact in primary care? We are seeking a dedicated Family Medicine Physician to provide comprehensive care to patients of all ages in a supportive and well-equipped clinical setting.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Salary:</b>Â Earn a generous salary with potential performance incentives.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Health, dental, vision, retirement plans with matching, and paid time off.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Work-Life Balance:</b>Â Flexible scheduling options to support personal and professional needs.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Professional Growth:</b>Â Ongoing training and opportunities for career advancement.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Provide primary care services to patients of all ages, focusing on preventive care, diagnosis, and management of acute and chronic conditions.</li>\\n<li class=\\\"x_MsoNormal\\\">Develop and implement personalized treatment plans.</li>\\n<li class=\\\"x_MsoNormal\\\">Collaborate with a multidisciplinary team to ensure comprehensive patient care.</li>\\n<li class=\\\"x_MsoNormal\\\">Stay current with medical advancements and apply best practices in family medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Maintain accurate and timely documentation of patient care.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Bring:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">MD or DO degree from an accredited medical school.</li>\\n<li class=\\\"x_MsoNormal\\\">Board certification or board eligibility in Family Medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Active and unrestricted medical license.</li>\\n<li class=\\\"x_MsoNormal\\\">DEA certification (or eligibility to obtain).</li>\\n<li class=\\\"x_MsoNormal\\\">Strong communication and interpersonal skills with a patient-centered approach.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take the Next Step:</b><br />Apply today to join a team committed to providing high-quality care and making a difference in the lives of patients.</p>\",\n                    \"speciality\": \"Family Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Family Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Medical Director | Competitive Compensation</b></p>\\n<p class=\\\"x_MsoNormal\\\">Step into a Leadership Role with a Major Impact in Healthcare</p>\\n<p class=\\\"x_MsoNormal\\\">Are you a seasoned physician ready to take your expertise to the next level? Join us as a Medical Director and play a crucial role in shaping healthcare delivery at our facilities.</p>\\n<p class=\\\"x_MsoNormal\\\">Why Consider This Role?</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Compensation:</b>Â We offer a salary that matches your expertise, complemented by potential performance bonuses.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Leadership Development:</b>Â Oversee a dedicated team, including Nurse Practitioners, and manage care for high-acuity patients.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Innovative Care Programs:</b>Â Lead initiatives like utilization management, advanced care planning, and Medication Optimization Management (MOM).</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Direct Impact:</b>Â Manage the care of high-need patients, ensuring personalized and high-quality treatment.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Work Schedule:</b>Â Benefit from a manageable on-call rotation, supporting a balanced professional and personal life.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">Your Impact:</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Oversee Medical Care: Provide medical oversight across our facilities, ensuring optimal patient outcomes.</li>\\n<li class=\\\"x_MsoNormal\\\">Patient Care Management: Utilize your medical expertise to oversee treatment for complex cases.</li>\\n<li class=\\\"x_MsoNormal\\\">Mentor and Lead: Foster a collaborative environment that emphasizes patient-centered care and team development.</li>\\n<li class=\\\"x_MsoNormal\\\">Strategic Leadership: Drive healthcare initiatives that improve operational efficiencies and patient care quality.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">What We're Looking For:</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Medical Licensure: Must hold a valid medical license.</li>\\n<li class=\\\"x_MsoNormal\\\">Proven Experience: Background in Internal Medicine, Family Medicine, Hospice, Urgent Care, or Emergency Medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Expertise in Geriatric Care: Experience with geriatric patients is highly valued.</li>\\n<li class=\\\"x_MsoNormal\\\">Veteran Affairs Experience: While not required, experience in VA healthcare is beneficial.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">Ready to Lead? Take on a role where your decisions and leadership directly influence patient care and operational success. Apply today and join us in driving healthcare forward.</p>\",\n                    \"speciality\": \"Medical Director\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Medical Director Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Medical Director | Competitive Compensation</b></p>\\n<p class=\\\"x_MsoNormal\\\">Step into a Leadership Role with a Major Impact in Healthcare</p>\\n<p class=\\\"x_MsoNormal\\\">Are you a seasoned physician ready to take your expertise to the next level? Join us as a Medical Director and play a crucial role in shaping healthcare delivery at our facilities.</p>\\n<p class=\\\"x_MsoNormal\\\">Why Consider This Role?</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Compensation:</b>Â We offer a salary that matches your expertise, complemented by potential performance bonuses.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Leadership Development:</b>Â Oversee a dedicated team, including Nurse Practitioners, and manage care for high-acuity patients.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Innovative Care Programs:</b>Â Lead initiatives like utilization management, advanced care planning, and Medication Optimization Management (MOM).</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Direct Impact:</b>Â Manage the care of high-need patients, ensuring personalized and high-quality treatment.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Work Schedule:</b>Â Benefit from a manageable on-call rotation, supporting a balanced professional and personal life.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">Your Impact:</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Oversee Medical Care: Provide medical oversight across our facilities, ensuring optimal patient outcomes.</li>\\n<li class=\\\"x_MsoNormal\\\">Patient Care Management: Utilize your medical expertise to oversee treatment for complex cases.</li>\\n<li class=\\\"x_MsoNormal\\\">Mentor and Lead: Foster a collaborative environment that emphasizes patient-centered care and team development.</li>\\n<li class=\\\"x_MsoNormal\\\">Strategic Leadership: Drive healthcare initiatives that improve operational efficiencies and patient care quality.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">What We're Looking For:</p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Medical Licensure: Must hold a valid medical license.</li>\\n<li class=\\\"x_MsoNormal\\\">Proven Experience: Background in Internal Medicine, Family Medicine, Hospice, Urgent Care, or Emergency Medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Expertise in Geriatric Care: Experience with geriatric patients is highly valued.</li>\\n<li class=\\\"x_MsoNormal\\\">Veteran Affairs Experience: While not required, experience in VA healthcare is beneficial.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\">Ready to Lead? Take on a role where your decisions and leadership directly influence patient care and operational success. Apply today and join us in driving healthcare forward.</p>\",\n                    \"speciality\": \"Medical Director\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Medical Director Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Family Medicine Physician | Competitive Salary + Benefits</b></p>\\n<p class=\\\"x_MsoNormal\\\">Looking to make a meaningful impact in primary care? We are seeking a dedicated Family Medicine Physician to provide comprehensive care to patients of all ages in a supportive and well-equipped clinical setting.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Salary:</b>Â Earn a generous salary with potential performance incentives.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Health, dental, vision, retirement plans with matching, and paid time off.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Work-Life Balance:</b>Â Flexible scheduling options to support personal and professional needs.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Professional Growth:</b>Â Ongoing training and opportunities for career advancement.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Provide primary care services to patients of all ages, focusing on preventive care, diagnosis, and management of acute and chronic conditions.</li>\\n<li class=\\\"x_MsoNormal\\\">Develop and implement personalized treatment plans.</li>\\n<li class=\\\"x_MsoNormal\\\">Collaborate with a multidisciplinary team to ensure comprehensive patient care.</li>\\n<li class=\\\"x_MsoNormal\\\">Stay current with medical advancements and apply best practices in family medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Maintain accurate and timely documentation of patient care.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Bring:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">MD or DO degree from an accredited medical school.</li>\\n<li class=\\\"x_MsoNormal\\\">Board certification or board eligibility in Family Medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Active and unrestricted medical license.</li>\\n<li class=\\\"x_MsoNormal\\\">DEA certification (or eligibility to obtain).</li>\\n<li class=\\\"x_MsoNormal\\\">Strong communication and interpersonal skills with a patient-centered approach.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take the Next Step:</b><br />Apply today to join a team committed to providing high-quality care and making a difference in the lives of patients.</p>\",\n                    \"speciality\": \"Family Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Family Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Licensed Clinical Social Worker (LCSW) | Full-Time</strong></p>\\n<p>Are you passionate about making a positive impact on individuals, families, and communities? Weâ\\u0080\\u0099re looking for a Licensed Clinical Social Worker (LCSW) to join a dedicated team focused on providing compassionate care and support to those navigating lifeâ\\u0080\\u0099s challenges.</p>\\n<h3><strong>Why You Should Apply:</strong></h3>\\n<ul>\\n<li>\\n<p><strong>Competitive Salary:</strong> Earn a salary that reflects your experience and qualifications.</p>\\n</li>\\n<li>\\n<p><strong>Comprehensive Benefits:</strong> Support for you and your family, including health coverage and professional development opportunities.</p>\\n</li>\\n<li>\\n<p><strong>Meaningful Work:</strong> Contribute to improving lives through counseling and therapeutic services.</p>\\n</li>\\n<li>\\n<p><strong>Supportive Environment:</strong> Be part of a respected organization that values holistic care.</p>\\n</li>\\n</ul>\\n<h3><strong>What Youâ\\u0080\\u0099ll Do:</strong></h3>\\n<ul>\\n<li>\\n<p>Provide counseling and therapeutic services to individuals, families, and groups.</p>\\n</li>\\n<li>\\n<p>Work with patients across a range of ages, offering tailored support and resources.</p>\\n</li>\\n<li>\\n<p>Identify and assess patients in need of evaluation, treatment, or referral services.</p>\\n</li>\\n<li>\\n<p>Collaborate with healthcare providers and community resources to deliver comprehensive care.</p>\\n</li>\\n<li>\\n<p>Maintain accurate and confidential documentation of patient interactions and treatment plans.</p>\\n</li>\\n<li>\\n<p>Participate in meetings, trainings, case reviews, and program planning to enhance care delivery.</p>\\n</li>\\n</ul>\\n<h3><strong>What Youâ\\u0080\\u0099ll Bring:</strong></h3>\\n<ul>\\n<li>\\n<p><strong>Education:</strong> Masterâ\\u0080\\u0099s degree in Social Work.</p>\\n</li>\\n<li>\\n<p><strong>License:</strong> Active LCSW licensure.</p>\\n</li>\\n<li>\\n<p><strong>Skills:</strong> Strong interpersonal and communication abilities.</p>\\n</li>\\n<li>\\n<p><strong>Preferred:</strong> Bilingual proficiency (if applicable), experience working with diverse populations, and the ability to work collaboratively within a multidisciplinary team.</p>\\n</li>\\n</ul>\",\n                    \"speciality\": \"Licensed Independent Clinical Social Worker\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Social Worker\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Social Worker\",\n                    \"title\": \"Licensed Independent Clinical Social Worker Social Worker\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Family Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Family Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"OB/GYN\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"OB/GYN Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Family Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Family Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Internal Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Internal Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Radiologic TechnologistÂ </strong></p>\\n<p>As a Radiologic Technologist, youâ\\u0080\\u0099ll play a critical role in patient care by performing high-quality imaging procedures to assist in accurate diagnoses. Your expertise will ensure a safe, comfortable experience for patients while supporting the healthcare team in providing exceptional care.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for professional growth and skill development in a state-of-the-art medical environment.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Perform diagnostic imaging procedures, including X-rays, ensuring images meet quality standards.</li>\\n<li>Prepare patients for imaging, explaining procedures and addressing concerns to ensure comfort.</li>\\n<li>Position patients and equipment correctly to capture accurate images while minimizing radiation exposure.</li>\\n<li>Maintain and calibrate radiologic equipment, reporting any issues promptly.</li>\\n<li>Adhere to safety protocols, including infection control and radiation protection standards.</li>\\n<li>Collaborate with healthcare teams to deliver timely and accurate results.</li>\\n<li>Document and maintain patient records in compliance with regulations and policies.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Certification: Current ARRT (American Registry of Radiologic Technologists) certification or equivalent.</li>\\n<li>Licensure: Active state license, as required.</li>\\n<li>Education: Completion of an accredited Radiologic Technology program.</li>\\n<li>Experience: Previous experience as a Radiologic TechnologistÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and a patient-centered approach.</li>\\n</ul>\\n<p><strong>Ready to Make an Impact?</strong><br />Apply today to join a team where your skills and dedication will contribute to life-changing diagnoses and care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h3>Pharmacy TechnicianÂ </h3>\\n<p>Support patient care and enhance pharmacy operations. As a Pharmacy Technician, youâ\\u0080\\u0099ll play a vital role in ensuring the accurate preparation and dispensing of medications while assisting pharmacists and providing excellent customer service.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive weekly payÂ </li>\\n<li>Comprehensive benefits package: Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional development: Gain valuable experience in pharmacy operations and patient care in a dynamic environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Assist pharmacists in preparing and dispensing medications, ensuring accuracy and compliance with regulations.</li>\\n<li>Manage inventory by stocking shelves, organizing medications, and verifying deliveries.</li>\\n<li>Process prescriptions, including data entry and insurance claims.</li>\\n<li>Provide exceptional customer service by addressing patient questions and concerns.</li>\\n<li>Perform quality assurance checks to ensure medications are labeled and dispensed correctly.</li>\\n<li>Support pharmacists in maintaining compliance with safety and regulatory standards.</li>\\n<li>Maintain a clean, organized, and safe pharmacy environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Certification: Active Pharmacy Technician licenseÂ </li>\\n<li>Education: High school diploma or equivalent.</li>\\n<li>Experience: Previous pharmacy technician experienceÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and proficiency in pharmacy software systems.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team committed to providing exceptional pharmaceutical care and supporting patient health.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Pharmacy Tech\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacy Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacy Tech\",\n                    \"title\": \"Pharmacy Tech Pharmacy Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong>Â Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<div><em><br /></em></div>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative\",\n                    \"title\": \"Administrative Assistant Administrative\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Requirement</span></span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"PHARMACIST\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"PHARMACIST Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>The essential functions listed are typical examples of work performed by positions in this job classification and are not designed to contain or be interpreted as a comprehensive inventory of all duties, tasks, and responsibilities. Specific duties and responsibilities may vary depending on department or program needs without changing the general nature and scope of the job or level of responsibility. Employees may also perform other duties as assigned.</p>\\n<p>Employees must abide by all Joint Commission requirements including, but not limited to, sensitivity to cultural diversity, patient care, patients' rights and ethical treatment, safety and security of physical environments, emergency management, teamwork, respect for others, participation in ongoing education and training, communication and adherence to safety and quality programs, sustaining compliance with National Patient Safety Goals, and licensure and health screenings.</p>\\n<p>All qualified applicants will receive consideration for employment without regard to race, sex, color, religion, national origin, protected veteran status or on the basis of disability.</p>\\n<p>The functions performed by employees in this job family will vary by level or the area(s) to which assigned, but may include (and not be limited to) the following:</p>\\n<p>â\\u0080¢ Responds to a high-volume of incoming and outgoing telephone calls and faxed referral</p>\\n<p>â\\u0080¢ Coordinates care by scheduling, editing and maintaining routine patient physician appointments for new and returning patients.</p>\\n<p>â\\u0080¢ Facilitates communication between the patient and the physician or clinic</p>\\n<p>â\\u0080¢ Delivers expert knowledge regarding clinic-specific processes</p>\\n<p>â\\u0080¢ Accurately documents and routes calls to the proper department</p>\\n<p>â\\u0080¢ Identifies urgent customer needs or operational issues, and escalates appropriately</p>\\n<p>â\\u0080¢ Works with care teams, patients, and outside facilities to obtain necessary information required for care.</p>\\n<p>â\\u0080¢ Communicates with the care team and support staff on various patient issues.</p>\\n<p>â\\u0080¢ Obtains and updates insurance information.</p>\\n<p>â\\u0080¢ Meets all regulatory and compliance standards</p>\\n<p>â\\u0080¢ Delivers high-level of customer service</p>\\n<p>â\\u0080¢ Follows documented protocols and guidelines</p>\\n<p>â\\u0080¢ Meets and exceeds departmental quality assurance standards</p>\\n<p>â\\u0080¢ Uses reference documents and online knowledgebase tools to clearly articulate accurate information regarding services</p>\\n<p>â\\u0080¢ Uses functionality of the telephone system as required</p>\\n<p>Education</p>\\n<p>â\\u0080¢ High School Diploma or GED equivalent</p>\\n<p>Experience</p>\\n<p>â\\u0080¢ One (1) year of progressively responsible customer service experience, preferably in a healthcare setting or contact center environment</p>\",\n                    \"speciality\": \"Access Operations Agent\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Access Operations Agent Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multiple facilitiesÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensure</p>\\n<p>clinic and medical protocols are followed</p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\\n<p>Licenses and Certifications</p>\\n<p>Â </p>\",\n                    \"speciality\": \"Access Operations Associate\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Access Operations Associate Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Overview</p>\\n</div>\\n<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a critical care/intensive care unit. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Critical Care nurse, you will provide specialized care to patients experiencing critical or life-threatening illnesses. Under the direction of a physician, your responsibilities will include monitoring vitals, operating a ventilator, analyzing blood flow, analyzing blood gas, administering medication, preparing and inserting catheters for intravenous fluids or medications, and documenting patient data. Youâ\\u0080\\u0099ll collaborate with critical care physicians, surgeons, and allied health providers to provide a high level of patient care.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of nursing ethics and professional practice standards, relevant state regulations, and standard CCU care policies. Youâ\\u0080\\u0099ll be expected to assess, plan, implement and evaluate patient care. You must also possess excellent communication, critical thinking, and organizational skills. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing when faced with the demand of high-acuity patients.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year of experience working in a CCU or ICU preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"ICU\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"ICU RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/72nesGTkE0qZ2xl9sZ1JOQ\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/72nesGTkE0qZ2xl9sZ1JOQ\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/72nesGTkE0qZ2xl9sZ1JOQ\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/7NyrVfc3j0ychwxQ9t-rdw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/AesybGV6F0SLNGwz7ufIyg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/AesybGV6F0SLNGwz7ufIyg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LRHHjsTk4UGJCFA2M7qtzw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LRHHjsTk4UGJCFA2M7qtzw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LRHHjsTk4UGJCFA2M7qtzw\",\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/aTtdoTyByEiHJwdeDhmxnw\",\n                    \"teaserNote\": \"<p><strong>Registered Nurse (RN) â\\u0080\\u0093 Emergency Room (ER)</strong></p>\\n<p>Make a difference in fast-paced, high-stakes care. As a Registered Nurse (RN) in the Emergency Room (ER), youâ\\u0080\\u0099ll provide critical care to patients during their most urgent moments. Join a dedicated team delivering life-saving interventions and ensuring the best possible outcomes for patients in an acute care setting.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Competitive, weekly pay</li>\\n<li>Medical, dental, vision, 401(k), and more are available starting on the first of the month following 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a high-demand specialty with opportunities for skill development and career advancement.</li>\\n</ul>\\n<p><strong>What You'll Do:</strong></p>\\n<ul>\\n<li>Perform rapid assessments and prioritize care based on patientsâ\\u0080\\u0099 acuity.</li>\\n<li>Provide life-saving interventions during medical emergencies.</li>\\n<li>Administer medications, treatments, and procedures as prescribed, including IV therapy.</li>\\n<li>Collaborate with physicians, specialists, and healthcare team members to stabilize patients.</li>\\n<li>Maintain accurate documentation of patient conditions, interventions, and outcomes.</li>\\n<li>Educate patients and their families on follow-up care, discharge instructions, and medication regimens.</li>\\n<li>Operate and monitor medical equipment, including ventilators, defibrillators, and cardiac monitors.</li>\\n<li>Ensure compliance with hospital protocols, safety standards, and regulatory requirements.</li>\\n</ul>\\n<p><strong>What You'll Bring:</strong></p>\\n<ul>\\n<li>Active and unrestricted Registered Nurse (RN) license<strong><br /></strong></li>\\n<li>Graduate of an accredited nursing program</li>\\n<li>Previous ER experience is preferred, but acute care or critical care experience will also be considered.</li>\\n<li>Basic Life Support (BLS) and Advanced Cardiac Life Support (ACLS) certifications (required); Pediatric Advanced Life Support (PALS) and Trauma Nursing Core Course (TNCC) certifications (preferred)</li>\\n<li>Strong critical thinking, communication, and organizational skills</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?Â </strong></p>\\n<p>Apply today to join a team dedicated to delivering life-saving care and making a meaningful impact in the Emergency Room.</p>\\n<p><em>Covelo Group is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"ER\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"ER RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/aTtdoTyByEiHJwdeDhmxnw\",\n                    \"teaserNote\": \"<p><strong>Registered Nurse (RN) â\\u0080\\u0093 Emergency Room (ER)</strong></p>\\n<p>Make a difference in fast-paced, high-stakes care. As a Registered Nurse (RN) in the Emergency Room (ER), youâ\\u0080\\u0099ll provide critical care to patients during their most urgent moments. Join a dedicated team delivering life-saving interventions and ensuring the best possible outcomes for patients in an acute care setting.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Competitive, weekly pay</li>\\n<li>Medical, dental, vision, 401(k), and more are available starting on the first of the month following 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a high-demand specialty with opportunities for skill development and career advancement.</li>\\n</ul>\\n<p><strong>What You'll Do:</strong></p>\\n<ul>\\n<li>Perform rapid assessments and prioritize care based on patientsâ\\u0080\\u0099 acuity.</li>\\n<li>Provide life-saving interventions during medical emergencies.</li>\\n<li>Administer medications, treatments, and procedures as prescribed, including IV therapy.</li>\\n<li>Collaborate with physicians, specialists, and healthcare team members to stabilize patients.</li>\\n<li>Maintain accurate documentation of patient conditions, interventions, and outcomes.</li>\\n<li>Educate patients and their families on follow-up care, discharge instructions, and medication regimens.</li>\\n<li>Operate and monitor medical equipment, including ventilators, defibrillators, and cardiac monitors.</li>\\n<li>Ensure compliance with hospital protocols, safety standards, and regulatory requirements.</li>\\n</ul>\\n<p><strong>What You'll Bring:</strong></p>\\n<ul>\\n<li>Active and unrestricted Registered Nurse (RN) license<strong><br /></strong></li>\\n<li>Graduate of an accredited nursing program</li>\\n<li>Previous ER experience is preferred, but acute care or critical care experience will also be considered.</li>\\n<li>Basic Life Support (BLS) and Advanced Cardiac Life Support (ACLS) certifications (required); Pediatric Advanced Life Support (PALS) and Trauma Nursing Core Course (TNCC) certifications (preferred)</li>\\n<li>Strong critical thinking, communication, and organizational skills</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?Â </strong></p>\\n<p>Apply today to join a team dedicated to delivering life-saving care and making a meaningful impact in the Emergency Room.</p>\\n<p><em>Covelo Group is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"ER\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"ER RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/WQBMVF3RSUeAT8BccgadAA\",\n                    \"teaserNote\": \"<p><strong>Registered Nurse (RN) â\\u0080\\u0093 Medical/Surgical Unit</strong></p>\\n<p>Join a dedicated team of healthcare professionals in providing exceptional care to patients on a fast-paced Medical/Surgical (Med/Surg) unit. As a Registered Nurse (RN), youâ\\u0080\\u0099ll play a critical role in managing patient care, monitoring progress, and collaborating with interdisciplinary teams to ensure the best outcomes.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Competitive, weekly pay</li>\\n<li>Medical, dental, vision, 401(k), and more are available starting on the first of the month following 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a high-demand specialty with opportunities for skill development and career advancement.</li>\\n</ul>\\n<p><strong>What You'll Do:</strong></p>\\n<ul>\\n<li>Assess, plan, implement, and evaluate patient care for individuals on the Med/Surg unit.</li>\\n<li>Administer medications and treatments as prescribed.</li>\\n<li>Monitor patient conditions, perform regular assessments, and adjust care plans as needed.</li>\\n<li>Collaborate with physicians, therapists, and other healthcare professionals to develop individualized care plans.</li>\\n<li>Educate patients and their families about post-discharge care, medications, and treatment plans.</li>\\n<li>Maintain accurate documentation of patient care in compliance with policies and regulations.</li>\\n<li>Respond to medical emergencies and provide life-saving care as necessary.</li>\\n</ul>\\n<p><strong>What You'll Bring:</strong></p>\\n<ul>\\n<li>Active and unrestricted Registered Nurse (RN) license<strong><br /></strong></li>\\n<li>Graduate of an accredited nursing program</li>\\n<li>Previous experience in a Med/Surg unit is preferred, but new graduates are encouraged to apply.</li>\\n<li>Basic Life Support (BLS) certification is required; Advanced Cardiac Life Support (ACLS) is preferred.</li>\\n<li>Strong critical thinking, communication, and organizational skills</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?Â </strong></p>\\n<p>Apply today to join a team committed to providing high-quality, compassionate care while supporting your growth as a nursing professional.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MED/SURG\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"MED/SURG RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/chxSTZ2GZUKSFdQ_k62UUg\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YcHmnWRB-keVjMC4hAlVzQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/lK_Kkrk2WUCs86qpnkAUcw\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/lK_Kkrk2WUCs86qpnkAUcw\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/lK_Kkrk2WUCs86qpnkAUcw\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/aEheHY1xzUmhgzHTjaEzOA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PCgJVuiMgEmZJKBT-b-SFw\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/lGWY4wnHMEOCZ8WjpL-tdQ\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/QXt7UIv0jUGMhrzNMnCIxg\",\n                    \"teaserNote\": \"<p><span>Physical Therapist (PT) â\\u0080\\u0093 Outpatient</span></p>\\n<p>Join a team committed to exceptional patient care and professional growth. As a Physical Therapist youâ\\u0080\\u0099ll provide specialized evaluations and evidence-based treatment tailored to each patientâ\\u0080\\u0099s needs.</p>\\n<p>Whether youâ\\u0080\\u0099re looking to refine your clinical skills, step into leadership, or explore mentorship opportunities, this role offers a clear path to professional advancement.</p>\\n<p><span>Why You Should Apply:</span></p>\\n<ul>\\n<li>Competitive pay: Earn up toÂ <span>$50/hr</span>, plusÂ <span>productivity bonuses.</span></li>\\n<li>Work-life balance:Â <span>Mondayâ\\u0080\\u0093Friday schedule</span>â\\u0080\\u0094no weekends!</li>\\n<li>Comprehensive benefits:Â <span>Medical, dental, vision, and 401(k) match.</span></li>\\n<li>Financial perks: Paid time off,Â <span>holidays, and student loan reimbursement.</span></li>\\n<li>Career growth: Opportunities inÂ <span>leadership, mentorship, and potential clinic ownership.</span></li>\\n</ul>\\n<p><span>What You'll Do:</span></p>\\n<ul>\\n<li>Evaluate patients and develop personalized treatment plans.</li>\\n<li>Deliver high-quality, evidence-based physical therapy services.</li>\\n<li>Collaborate with a supportive team to drive positive patient outcomes.</li>\\n<li>Educate and empower patients throughout their rehabilitation journey.</li>\\n<li>Stay engaged in continued learning and professional development.</li>\\n</ul>\\n<p><span>What You'll Bring:</span></p>\\n<ul>\\n<li>Graduate of an accredited Physical Therapy program</li>\\n<li>Current or pending state licensure.</li>\\n<li>Passion for patient care and commitment to clinical excellence</li>\\n</ul>\\n<div><span><span>Take your skills further in an environment that supports growth, clinical excellence, and patient impact. Apply now and be part of a team that makes a difference!</span></span></div>\\n<div><span><span><br /></span></span></div>\",\n                    \"speciality\": \"Outpatient Physical Therapist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physical Therapist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physical Therapist\",\n                    \"title\": \"Outpatient Physical Therapist Physical Therapist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Certified Nursing Assistant (CNA)Â </strong></p>\\n<p>Make a meaningful impact in patient care. As a Certified Nursing Assistant (CNA), youâ\\u0080\\u0099ll provide hands-on support to patients, assisting with daily living activities and ensuring their comfort and well-being in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply:Â </strong></p>\\n<ul>\\n<li>Competitive, weekly pay.<strong><br /></strong></li>\\n<li>Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Gain valuable experience in patient care with opportunities for skill development and career advancement.</li>\\n</ul>\\n<div><strong>What You'll Do:Â </strong></div>\\n<div>\\n<ul>\\n<li>Assist patients with activities of daily living (ADLs), including bathing, dressing, grooming, and eating.</li>\\n<li>Monitor and document vital signs, intake and output, and patient observations.</li>\\n<li>Support mobility needs by helping patients with ambulation, transfers, and positioning.</li>\\n<li>Provide emotional support and companionship to patients.</li>\\n<li>Maintain a clean and safe patient environment by changing linens, sanitizing equipment, and ensuring supplies are stocked.</li>\\n<li>Collaborate with RNs, LPNs, and other healthcare professionals to deliver high-quality care.</li>\\n<li>Respond promptly to patient call lights and requests.</li>\\n<li>Follow all safety protocols and infection control procedures.</li>\\n</ul>\\n<div><strong>What You'll Bring:Â </strong></div>\\n</div>\\n<ul>\\n<li>Licensure: Active and unrestricted CNA certificationÂ </li>\\n<li>Education: High School Diploma or GED.</li>\\n<li>Experience: Previous CNA experience preferred</li>\\n<li>Skills: Compassion, attention to detail, effective communication, and the ability to thrive in a fast-paced environment.</li>\\n</ul>\\n<div><strong>Ready to Make a Difference?Â </strong></div>\\n<div>Apply today to join a dedicated team committed to providing exceptional patient care and making a meaningful impact in the healthcare field.</div>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity EmployerÂ </em></p>\",\n                    \"speciality\": \"CNA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"CNA CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LbQO1UhJF0O3ePhI5XFexw\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/U4dVFT5TNU2dsDlL5nkMGw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Access Operations Agent\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Access Operations Agent Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div class=\\\"gizmo-bot-avatar flex h-8 w-8 items-center justify-center overflow-hidden rounded-full\\\">\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\"><strong>Operating Room Department AideÂ </strong></div>\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\"><strong><br /></strong>As an OR Department Aide, youâ\\u0080\\u0099ll play a crucial role in ensuring the operating room runs smoothly and efficiently. From maintaining a sterile environment to assisting the surgical team with essential tasks, your work will directly impact patient care and safety in the surgical department.</div>\\n</div>\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\">\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\">\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a healthcare setting with opportunities for growth and skill development.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare and maintain operating rooms by cleaning, disinfecting, and stocking supplies.</li>\\n<li>Transport patients to and from the operating room, ensuring safety and comfort.</li>\\n<li>Assist in the setup and breakdown of surgical equipment and instruments.</li>\\n<li>Deliver specimens to appropriate locations within the facility.</li>\\n<li>Manage inventory and restock surgical supplies as needed.</li>\\n<li>Support the surgical team with non-clinical tasks to ensure efficient workflow.</li>\\n<li>Adhere to all infection control and safety protocols.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: High School Diploma or GED required.</li>\\n<li>Experience: Previous experience in a healthcare or surgical settingÂ </li>\\n<li>Skills: Strong organizational skills, attention to detail, and the ability to work collaboratively in a fast-paced environment.</li>\\n<li>Physical Requirements: Ability to stand for extended periods and lift or move equipment and supplies as needed.</li>\\n</ul>\\n<p><strong><br /></strong></p>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your attention to detail and commitment to excellence will contribute to top-quality surgical care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n</div>\\n</div>\",\n                    \"speciality\": \"OR\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"OR Dept Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"OR Dept Aide\",\n                    \"title\": \"OR OR Dept Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/lRHvylks7UeGpIS9pq_bnA\",\n                    \"teaserNote\": \"<div class=\\\"gizmo-bot-avatar flex h-8 w-8 items-center justify-center overflow-hidden rounded-full\\\">\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\"><strong>Operating Room Department AideÂ </strong></div>\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\"><strong><br /></strong>As an OR Department Aide, youâ\\u0080\\u0099ll play a crucial role in ensuring the operating room runs smoothly and efficiently. From maintaining a sterile environment to assisting the surgical team with essential tasks, your work will directly impact patient care and safety in the surgical department.</div>\\n</div>\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\">\\n<div class=\\\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\\\">\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a healthcare setting with opportunities for growth and skill development.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare and maintain operating rooms by cleaning, disinfecting, and stocking supplies.</li>\\n<li>Transport patients to and from the operating room, ensuring safety and comfort.</li>\\n<li>Assist in the setup and breakdown of surgical equipment and instruments.</li>\\n<li>Deliver specimens to appropriate locations within the facility.</li>\\n<li>Manage inventory and restock surgical supplies as needed.</li>\\n<li>Support the surgical team with non-clinical tasks to ensure efficient workflow.</li>\\n<li>Adhere to all infection control and safety protocols.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: High School Diploma or GED required.</li>\\n<li>Experience: Previous experience in a healthcare or surgical settingÂ </li>\\n<li>Skills: Strong organizational skills, attention to detail, and the ability to work collaboratively in a fast-paced environment.</li>\\n<li>Physical Requirements: Ability to stand for extended periods and lift or move equipment and supplies as needed.</li>\\n</ul>\\n<p><strong><br /></strong></p>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your attention to detail and commitment to excellence will contribute to top-quality surgical care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n</div>\\n</div>\",\n                    \"speciality\": \"OR\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"OR Dept Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"OR Dept Aide\",\n                    \"title\": \"OR OR Dept Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LbQO1UhJF0O3ePhI5XFexw\",\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/LbQO1UhJF0O3ePhI5XFexw\",\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p>Job Description</p>\\n<p>A Brief Overview</p>\\n<p><span>We handle a high-volume of inbound calls, outbound calls, faxes and other communication withÂ </span><span>patients, providers, clinic staff, and others needing to access health care services at one or multipleÂ </span><span>departments/clinics. The Access Operations Contact Center staff within the ECC is responsible forÂ </span><span>providing an excellent patient and customer experience by efficiently coordinating services andÂ </span><span>accurately answering or properly referring inquires</span></p>\\n<p>What you will do</p>\\n<p>â\\u0080¢ Obtains insurance authorization as necessary and communicate status to patients</p>\\n<p>â\\u0080¢ Coordinates outpatient appointments and conjunctive services</p>\\n<p>â\\u0080¢ Assists patients needing to schedule across multiple departments/specialties</p>\\n<p>â\\u0080¢ Assists community physicians requesting to consult with physicians</p>\\n<p>â\\u0080¢ Provides care coordination when appropriate to ensure patient needs are met and to ensureÂ <span>clinic and medical protocols are followed</span></p>\\n<p>â\\u0080¢ Educates patients on providing medical records and other medical documentation needed forÂ <span>appointments</span></p>\\n<p>â\\u0080¢ Communicates with patients regarding insurance authorizations (including approvals and</p>\\n<p>denials) and request required clinical documentation when necessary</p>\\n<p>Education Qualifications</p>\\n<p>â\\u0080¢ High School Diploma or GED High school diploma or GED equivalent.</p>\\n<p>Experience Qualifications</p>\\n<p>â\\u0080¢ Two (2) years of progressively responsible and directly related work experience in a healthcare</p>\\n<p>setting, preferably in a call center environment</p>\\n<p>Required Knowledge, Skills and Abilities</p>\\n<p>â\\u0080¢ Type 40 words per minute</p>\\n<p>â\\u0080¢ Intermediate computer skills (Windows, Excel, and Word)</p>\\n<p>â\\u0080¢ Good communication, customer service, interpersonal skills and cross-cultural competency.</p>\\n<p>â\\u0080¢ Knowledge of medical terminology</p>\\n<p>â\\u0080¢ Demonstrated knowledge of proper English grammar in speaking and writing</p>\\n<p>â\\u0080¢ Effectively listen to resolve patient's/customers inquiries</p>\\n<p>â\\u0080¢ Maintain respect and composure in stressful situations</p>\\n<p>â\\u0080¢ Navigate complex software tools and accurately input data</p>\\n<p>â\\u0080¢ Effectively document caller notes into the medical record</p>\\n<p>â\\u0080¢ Ability to adjust communication to fit the needs and level of understanding of the receiver</p>\\n<p>â\\u0080¢ Ability to apply business logic to resolve patient/customer issues while managing multiple</p>\\n<p>priorities</p>\\n<p>â\\u0080¢ Ability to foster relationships, build trust with providers, nurses, staff, and patients and to work</p>\\n<p>in a collegial team environment</p>\\n<p>â\\u0080¢ Ability to plan, prioritize, and organize work independently with attention to detail</p>\",\n                    \"speciality\": \"Customer Access Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Customer Access Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance companies and financial agencies, and contracted outside services.</li>\\n</ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ov2ggBJTKE6dEBWoN2Tz1Q\",\n                    \"teaserNote\": \"<h2><span>TheÂ <span style=\\\"text-decoration: underline;\\\">Patient Service RepÂ </span>provides convenient access to services for patients and minimizes financial risk to the organization. The Patient Access Specialist will maximize reimbursement by efficiently scheduling and pre-registering patients for their upcoming service as well as promoting accuracy and timeliness of data processing and maintaining customer services objectives. This role includes scheduling the patient, updating insurance and demographic information, performing medical necessity checks as appropriate, verifying the authorization was initiated by the physicianâ\\u0080\\u0099s office, and initiating financial account processes, and educating patients regarding policies, procedures, expectations, and financial responsibilities.<br /><br />Provides outstanding and professional Customer Service to all internal and external customers.<br /><br /><span style=\\\"text-decoration: underline;\\\">Description</span><br /></span></h2>\\n<ul>\\n<li>Consistently practices Patients First philosophy and adheres to high standards of customer service. This includes setting an example to peers, coworkers, etc. by fostering a team atmosphere.</li>\\n<li>Responds to questions and concerns. Forwards, directs, and notifies Team Lead or Operations Coordinator of extraordinary issues as necessary.</li>\\n<li>Maintains patient confidentiality per HIPAA regulations.</li>\\n</ul>\\n<h2><span><i>Specific Responsibilities</i><br /></span></h2>\\n<ul>\\n<li>Provides exceptional customer service to patients which establishes a positive first impression. Exceeds all consumer requests and alerts management of issues or concerns that require escalation.</li>\\n<li>Correctly identifies and collects patient demographic information in accordance with organization standards.</li>\\n<li>Interacts with various hospital departments and physicianâ\\u0080\\u0099s offices to effectively schedule and direct patients through the systems in a patient/customer-friendly manner.</li>\\n<li>Reaches out to patients to schedule an appointment as defined.</li>\\n<li>Performs medical necessity checks as necessary for scheduled services, communicates options to the patient if appointment fails.</li>\\n<li>Informs patients of any issues with securing the financial account for their encounter.</li>\\n<li>Completes out-of-pocket estimations as requested by patients.</li>\\n<li>Provides training and education as needed.</li>\\n<li>Manages work schedule efficiently, completing tasks and assignments on time.</li>\\n<li>Completes other duties assigned by the manager. Cross-training between various departments will take place to ensure coverage.</li>\\n<li>Participates in Quality Assurance reviews to ensure the integrity of patient data information.</li>\\n<li>Uses effective service recovery skills to solve problems or service breakdowns when they occur.</li>\\n<li>Utilizes department and hospital policies and procedures to complete assigned tasks.</li>\\n<li>Adherence to all department policies and compliance requirements.</li>\\n<li>Avoids putting patients at financial or safety risk.</li>\\n<li>Other duties as assigned.</li>\\n</ul>\\n<h2><span><i>Communication and Collaboration</i><br /></span></h2>\\n<ul>\\n<li>Communicate information to the patient regarding questions about physician referrals, insurance referrals, and consultations. Collects authorization numbers in appropriate systems as applicable.</li>\\n<li>Provides a professional and constructive environment for communication across units/departments and resolves operational issues. May attend intra/interdepartmental meetings which involve walking within NM Campus.</li>\\n<li>Communicate customer satisfaction issues to appropriate individuals.</li>\\n<li>Demonstrates teamwork by helping co-workers within and across departments. Communicates effectively with others, respects diverse opinions and styles, and acknowledges the assistance and contributions of others.</li>\\n<li>Interacts with internal customers to provide excellent support service to staff in departments that provide direct patient care.</li>\\n<li>Accommodates all levels of communication ability.</li>\\n</ul>\\n<h2><span><br /><br /><i>Technology</i><br /></span></h2>\\n<ul>\\n<li>Utilizes multiple online order retrieval systems to verify or print the patientâ\\u0080\\u0099s order.</li>\\n<li>Verifies insurance eligibility and benefit levels through the use of online tools (NDAS, ASF, etc.) or over the phone as necessary.</li>\\n<li>Completes accurate handoff instructions and notes to scheduling staff, by noting appropriately in Epic.</li>\\n<li>Demonstrates ability to use all computer applications efficiently and to the capacity needed in this position.</li>\\n<li>Runs real-time eligibility (RTE) on all patients to verify insurance and follows out-of-network policies as applicable.</li>\\n<li>Sends quality Epic Messages/Telephone encounters that are descriptive and grammatically correct.</li>\\n</ul>\\n<h2><span><i>Efficiency, Process Improvement, and Business Growth</i><br /></span></h2>\\n<ul>\\n<li>Proactive in preventing issues with patient visits by double-checking type of test preps required, assuring no conflict with other tests, verifying time and location, communicating relevant information, verifying documenting order retrieval in notes for check-in person, ensure there are no duplicate patient records.</li>\\n<li>Understands minimum data set required for a complete registration, collects and verifies critical data, and updates that information into the registration system.</li>\\n<li>Understands departmental and individual quality metrics.</li>\\n<li>Proactively analyzes account activity, identifies problems, and initiates appropriate actions/resolutions.</li>\\n<li>Evaluate procedures and suggests improvements to enhance customer service and operational efficiency.</li>\\n<li>Participates in departmental quality improvement activities.</li>\\n<li>Provides ideas and suggestions for process improvements within the department.</li>\\n<li>Monitors registration and scheduling, including insurance verification to ensure processing within prescribed quality standards.</li>\\n<li>Adjusts processes as needed to meet standards.</li>\\n<li>Uses organizational and unit/department resources efficiently.</li>\\n<li>Acts as a training resource for new staff and a resource for coworkers, sharing process and workflow information.</li>\\n<li>Understands that schedule may change to reflect shifting business needs.</li>\\n<li>Evolves and learns as healthcare policies change.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">RequiredÂ </span>:</span></h2>\\n<ul>\\n<li>High School diploma or equivalent.</li>\\n<li>2-3 years of customer service or medical office experience.</li>\\n<li>Excellent interpersonal, verbal, and written communication skills.</li>\\n<li>Proficiency in computer data entry/typing.</li>\\n<li>Excellent verbal and written communication skills.</li>\\n<li>Ability to read, write, and communicate effectively in English.</li>\\n<li>Basic Computer Skills.</li>\\n<li>Ability to type 40 wpm.</li>\\n<li>Ability to multi-task.</li>\\n<li>Customer service-oriented.</li>\\n<li>Excellent organizational, time management, analytical, and problem-solving skills.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">PreferredÂ </span>:</span></h2>\\n<ul>\\n<li>Additional education.</li>\\n<li>Additional language skills.</li>\\n<li>Healthcare finance and/or healthcare insurance experience.</li>\\n<li>Knowledge and experience in a healthcare setting, especially patient scheduling and/or registration.</li>\\n</ul>\\n<h2><span><span style=\\\"text-decoration: underline;\\\">Population Served:</span></span></h2>\\n<ul>\\n<li><i>Internal</i>: Incumbents in this position communicate with physicians and all levels of employees at client.</li>\\n<li><i>External</i>: Patients and their families and representatives, physician offices, other health care agencies, and health care providers, insurance comp</li></ul>\",\n                    \"speciality\": \"Patient Service Rep\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Service Rep\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Service Rep\",\n                    \"title\": \"Patient Service Rep Patient Service Rep\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4De1sFWEfEC9LsI9HoNx_Q\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TLOBl0S0vkeC3DFSJIhItw\",\n                    \"teaserNote\": \"<h2><span>We are looking for a qualified medical secretary to support our providers in providing high-quality healthcare and service to our patients. This staff position works directly with our providers and provided administrative support for the practice's non-clinical operations. Provides empathetic, courteous, and efficient interactions with patients and families and support to care providers for quick and efficient assistance to patients.<br /><br />Qualifications:</span></h2>\\n<ul>\\n<li>High school diploma or equivalent.</li>\\n<li>Medical terminology is a plus</li>\\n<li>Strong data entry skillsÂ </li>\\n<li>Excellent phone presence and strong customer service skills,capable of multi-taskingÂ </li>\\n<li>Basic computer and typing skills with accuracy and attention to detail.</li>\\n<li>Preferred: one (1) year of secretarial or medical assistant experience in a physician practice; EMR experience.</li>\\n</ul>\",\n                    \"speciality\": \"Medical Secretary\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Medical Secretary Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PQBkwTyQ2k2qI5otUjfOaQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Provides administrative support to the unit.<br /><br />Duties</p>\\n<ul>\\n<li>Facilitates telephone and email referrals and links callers to appropriate resources.</li>\\n<li>Maintains accurate data files.</li>\\n<li>Performs clerical support functions including preparation of documents, and facsimiles.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively</li>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n</ul>\\n<p>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</p>\\n</div>\",\n                    \"speciality\": \"Practice Coordinator Resource Pool\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Practice Coordinator Resource Pool Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h2>Compound and dispense medication following prescriptions issued by physicians, dentists, or other authorized medical practitioners.<br /><br /><span>Duties</span></h2>\\n<ul>\\n<li>Compounds and dispenses drugs and medicines prescribed by physicians, dentists, or other authorized medical personnel.</li>\\n<li>Manufactures pharmaceutical preparations and fills orders to supply facility resident areas.</li>\\n<li>Responds to inquiries concerning drug contents, dosages, regimen reviews, errors, storage and disposal, and biological.</li>\\n<li>Monitors drug therapies for drug interactions, allergies, and contraindications.</li>\\n<li>Monitors stocks of drugs and chemicals</li>\\n<li>Inventories and procures drugs, medications, supplies, etc., as required.</li>\\n<li>Maintains records and prepares reports on all narcotics and alcohol dispensed.</li>\\n<li>May oversee the work of pharmacy support staff; e.g., Pharmacy Technicians.</li>\\n<li>Performs related work as assigned.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2><span>Requirement</span></h2>\\n<ul>\\n<li>Knowledge of the principles and practices involved in compounding and dispensing prescriptions</li>\\n<li>Knowledge of pharmacy, drug, narcotic, and related laws of the state</li>\\n<li>Knowledge of pharmaceuticals, drugs, narcotics, and poisons</li>\\n<li>Knowledge of the calculation of doses and the preparation and use of percentage and stock solution</li>\\n<li>Knowledge of the basic sciences underlying pharmacies, such as chemistry, biology, and physics</li>\\n<li>Knowledge of the processes involved in the manufacture of pharmaceutical preparations</li>\\n<li>Knowledge of stock control and related record keeping</li>\\n<li>Ability to apply safety and efficiency in the prescribing, dispensing, administering, and use of drugs and related articles for the prevention of illness and the maintenance and management of health</li>\\n<li>Ability to fill prescriptions and prepare official drugs and standard medications</li>\\n<li>Ability to recognize physical, chemical, and therapeutic incompatibilities</li>\\n<li>Ability to analyze and understand physicians, dentists, or other recognized, medical personnel oral or written orders involving standard symbols and terminology.</li>\\n</ul>\",\n                    \"speciality\": \"Staff Pharmacist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"Staff Pharmacist Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"/jobs/TCcYt3HUbEyZUEVeRUETMg\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"/jobs/TCcYt3HUbEyZUEVeRUETMg\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/BxVybJMNXUmeW_4Z-PZ3KA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"CNA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"CNA CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/PCgJVuiMgEmZJKBT-b-SFw\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/rEScGWu7sE6OO_SqEekFCg\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/rEScGWu7sE6OO_SqEekFCg\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"Student Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jthG9Db43UW0kpvhGjwZzA\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><b>Pharmacy Manager | Full-Time | Leadership Opportunity</b></p>\\n<p>Looking to take your pharmacy career to the next level in a leadership role? This Pharmacy Manager position offers the chance to make a direct impact on patient care while overseeing a dedicated pharmacy team. Enjoy a supportive work environment that values professional growth and work-life balance.</p>\\n<p><b>Why You Should Apply:</b></p>\\n<ul>\\n<li><b>Competitive Pay:</b> Earn a salary that reflects your experience and leadership skills.</li>\\n<li><b>Job Stability:</b> Direct-hire role with long-term growth potential.</li>\\n<li><b>Leadership Opportunity:</b> Manage pharmacy operations and support a skilled team.</li>\\n<li><b>Comprehensive Benefits:</b> Full benefits package for eligible employees.</li>\\n<li><b>Professional Environment:</b> Work alongside healthcare professionals dedicated to optimizing patient care.</li>\\n</ul>\\n<p><b>What You'll Do:</b></p>\\n<ul>\\n<li>Lead daily pharmacy operations, ensuring regulatory compliance and high-quality care.</li>\\n<li>Dispense medications accurately and oversee prescription processing.</li>\\n<li>Administer immunizations in accordance with state guidelines.</li>\\n<li>Supervise and mentor Pharmacy Technicians and Interns to maintain a high-functioning team.</li>\\n<li>Implement quality assurance practices and safety procedures to meet compliance standards.</li>\\n<li>Collaborate with healthcare providers to enhance patient care outcomes.</li>\\n</ul>\\n<p><b>What Youâ\\u0080\\u0099ll Bring:</b></p>\\n<ul>\\n<li><b>Licensure:</b> Active Pharmacist license in good standing.</li>\\n<li><b>Education:</b> Bachelorâ\\u0080\\u0099s degree in Pharmacy, PharmD, or equivalent qualification.</li>\\n<li><b>Leadership Skills:</b> Experience managing pharmacy operations or a strong interest in leadership.</li>\\n<li><b>Communication:</b> Excellent interpersonal and organizational abilities.</li>\\n<li><b>Compliance Knowledge:</b> Familiarity with HIPAA regulations and quality assurance practices.</li>\\n</ul>\\n<p><b>Take the Next Step in Your Pharmacy Career!</b></p>\\n<p>If youâ\\u0080\\u0099re a dedicated pharmacist ready to lead a team and enhance patient care, we want to hear from you. Apply today to become a Pharmacy Manager and make a difference!</p>\",\n                    \"speciality\": \"Pharmacy Manager\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacist\",\n                    \"title\": \"Pharmacy Manager Pharmacist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced and patient-care-oriented Radiologic Technologist. If youâ\\u0080\\u0099re an excellent communicator and a strong collaborator, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Radiologic Technologist, you will operate X-ray equipment to produce diagnostic imaging. Your responsibilities will include following physician instructions, educating patients on procedures, correctly positioning patients for the best image outcome, following patient shielding procedures, maintaining department inventory, and maintaining proper documentation. Youâ\\u0080\\u0099ll work alongside physicians, nurses, and other allied health professionals to produce high-quality imaging.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of X-ray equipment and the ability to work in a team environment. Strong customer service, interpersonal skills, problem-solving skills, and attention to detail will make you an ideal candidate for this role.</p>\\n</div>\\n<div>\\n<p>We are seeking a Radiologic Technologist who is efficient, steady under pressure, and capable of prioritizing in a fast-paced healthcare environment.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Graduation from an ARRT-certified Health Science Program</p>\\n</li>\\n<li>\\n<p>A minimum of one year as radiography, MRI, or nuclear medicine technologist preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>AART certification in Radiography, MRI, or Nuclear Medicine</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Certification within the state of practice</p>\\n</li>\\n<li>\\n<p>Current BLS certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Whatâ\\u0080\\u0099s more, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!Â </p>\\n</div>\\n</div>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Family Medicine Physician | Competitive Salary + Benefits</b></p>\\n<p class=\\\"x_MsoNormal\\\">Looking to make a meaningful impact in primary care? We are seeking a dedicated Family Medicine Physician to provide comprehensive care to patients of all ages in a supportive and well-equipped clinical setting.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Salary:</b>Â Earn a generous salary with potential performance incentives.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Health, dental, vision, retirement plans with matching, and paid time off.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Work-Life Balance:</b>Â Flexible scheduling options to support personal and professional needs.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Professional Growth:</b>Â Ongoing training and opportunities for career advancement.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Provide primary care services to patients of all ages, focusing on preventive care, diagnosis, and management of acute and chronic conditions.</li>\\n<li class=\\\"x_MsoNormal\\\">Develop and implement personalized treatment plans.</li>\\n<li class=\\\"x_MsoNormal\\\">Collaborate with a multidisciplinary team to ensure comprehensive patient care.</li>\\n<li class=\\\"x_MsoNormal\\\">Stay current with medical advancements and apply best practices in family medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Maintain accurate and timely documentation of patient care.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Bring:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">MD or DO degree from an accredited medical school.</li>\\n<li class=\\\"x_MsoNormal\\\">Board certification or board eligibility in Family Medicine.</li>\\n<li class=\\\"x_MsoNormal\\\">Active and unrestricted medical license.</li>\\n<li class=\\\"x_MsoNormal\\\">DEA certification (or eligibility to obtain).</li>\\n<li class=\\\"x_MsoNormal\\\">Strong communication and interpersonal skills with a patient-centered approach.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take the Next Step:</b><br />Apply today to join a team committed to providing high-quality care and making a difference in the lives of patients.</p>\",\n                    \"speciality\": \"Family Medicine\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Physician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Physician\",\n                    \"title\": \"Family Medicine Physician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Certified Nursing Assistant (CNA)Â </strong></p>\\n<p>Make a meaningful impact in patient care. As a Certified Nursing Assistant (CNA), youâ\\u0080\\u0099ll provide hands-on support to patients, assisting with daily living activities and ensuring their comfort and well-being in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply:Â </strong></p>\\n<ul>\\n<li>Competitive, weekly pay.<strong><br /></strong></li>\\n<li>Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Gain valuable experience in patient care with opportunities for skill development and career advancement.</li>\\n</ul>\\n<div><strong>What You'll Do:Â </strong></div>\\n<div>\\n<ul>\\n<li>Assist patients with activities of daily living (ADLs), including bathing, dressing, grooming, and eating.</li>\\n<li>Monitor and document vital signs, intake and output, and patient observations.</li>\\n<li>Support mobility needs by helping patients with ambulation, transfers, and positioning.</li>\\n<li>Provide emotional support and companionship to patients.</li>\\n<li>Maintain a clean and safe patient environment by changing linens, sanitizing equipment, and ensuring supplies are stocked.</li>\\n<li>Collaborate with RNs, LPNs, and other healthcare professionals to deliver high-quality care.</li>\\n<li>Respond promptly to patient call lights and requests.</li>\\n<li>Follow all safety protocols and infection control procedures.</li>\\n</ul>\\n<div><strong>What You'll Bring:Â </strong></div>\\n</div>\\n<ul>\\n<li>Licensure: Active and unrestricted CNA certificationÂ </li>\\n<li>Education: High School Diploma or GED.</li>\\n<li>Experience: Previous CNA experience preferred</li>\\n<li>Skills: Compassion, attention to detail, effective communication, and the ability to thrive in a fast-paced environment.</li>\\n</ul>\\n<div><strong>Ready to Make a Difference?Â </strong></div>\\n<div>Apply today to join a dedicated team committed to providing exceptional patient care and making a meaningful impact in the healthcare field.</div>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity EmployerÂ </em></p>\",\n                    \"speciality\": \"CNA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"CNA CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/d6hnqvTcWke31PYrBQ_ANw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TnutNDOUy0q262uwXHHd5Q\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TnutNDOUy0q262uwXHHd5Q\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TnutNDOUy0q262uwXHHd5Q\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Non-CDL Driver <br /></strong></p>\\n<p>As a Non-CDL Driver for a blood bank, youâ\\u0080\\u0099ll ensure the safe and timely transport of blood products, supplies, and equipment to support donation events and healthcare facilities. Your role is crucial in maintaining an efficient blood supply chain and helping the community.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow within a mission-driven organization dedicated to saving lives.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Safely transport blood products, equipment, and supplies between collection sites, donor centers, and medical facilities.</li>\\n<li>Load and unload vehicles efficiently, ensuring all materials are handled with care.</li>\\n<li>Maintain accurate records of deliveries, routes, and inventory.</li>\\n<li>Inspect vehicles before and after each trip to ensure safety and cleanliness.</li>\\n<li>Assist with setup and breakdown of mobile blood collection sites, as needed.</li>\\n<li>Follow all state and federal transportation regulations, as well as organization policies.</li>\\n<li>Provide excellent customer service when interacting with donors, staff, and healthcare partners.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>License: Valid driverâ\\u0080\\u0099s license with a clean driving record.</li>\\n<li>Education: High School Diploma or GED.</li>\\n<li>Experience: Previous delivery or transportation experience is preferred but not required.</li>\\n<li>Skills: Reliable, detail-oriented, and comfortable working independently.</li>\\n<li>Physical Requirements: Ability to lift and carry up to [weight limit, e.g., 50 lbs] and work flexible hours, including early mornings, evenings, or weekends as needed.</li>\\n</ul>\\n<p><strong>Ready to Drive Impact?</strong><br />Apply today to join a team that helps save lives by ensuring the safe and timely delivery of critical blood products.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Driver Mobile Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Driver\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Driver\",\n                    \"title\": \"Driver Mobile Assistant Driver\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/51mb8yGzO0G5ueMCZ0uXlg\",\n                    \"teaserNote\": \"<p><strong>Certified Nursing Assistant (CNA)Â </strong></p>\\n<p>Make a meaningful impact in patient care. As a Certified Nursing Assistant (CNA), youâ\\u0080\\u0099ll provide hands-on support to patients, assisting with daily living activities and ensuring their comfort and well-being in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply:Â </strong></p>\\n<ul>\\n<li>Competitive, weekly pay.<strong><br /></strong></li>\\n<li>Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Gain valuable experience in patient care with opportunities for skill development and career advancement.</li>\\n</ul>\\n<div><strong>What You'll Do:Â </strong></div>\\n<div>\\n<ul>\\n<li>Assist patients with activities of daily living (ADLs), including bathing, dressing, grooming, and eating.</li>\\n<li>Monitor and document vital signs, intake and output, and patient observations.</li>\\n<li>Support mobility needs by helping patients with ambulation, transfers, and positioning.</li>\\n<li>Provide emotional support and companionship to patients.</li>\\n<li>Maintain a clean and safe patient environment by changing linens, sanitizing equipment, and ensuring supplies are stocked.</li>\\n<li>Collaborate with RNs, LPNs, and other healthcare professionals to deliver high-quality care.</li>\\n<li>Respond promptly to patient call lights and requests.</li>\\n<li>Follow all safety protocols and infection control procedures.</li>\\n</ul>\\n<div><strong>What You'll Bring:Â </strong></div>\\n</div>\\n<ul>\\n<li>Licensure: Active and unrestricted CNA certificationÂ </li>\\n<li>Education: High School Diploma or GED.</li>\\n<li>Experience: Previous CNA experience preferred</li>\\n<li>Skills: Compassion, attention to detail, effective communication, and the ability to thrive in a fast-paced environment.</li>\\n</ul>\\n<div><strong>Ready to Make a Difference?Â </strong></div>\\n<div>Apply today to join a dedicated team committed to providing exceptional patient care and making a meaningful impact in the healthcare field.</div>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity EmployerÂ </em></p>\",\n                    \"speciality\": \"CNA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"CNA CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/b1OFfO3z-0-nVZ__dedFBw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/G-Fq86eOLEiFXnl_mzPrhg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/G-Fq86eOLEiFXnl_mzPrhg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/G-Fq86eOLEiFXnl_mzPrhg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/G-Fq86eOLEiFXnl_mzPrhg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/deSHCeDHvkyzIsjrj5lznA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YIZS1pZkJ0moswQma_ryFw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6fhCY1J_k0SdP87x_jzjbg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6fhCY1J_k0SdP87x_jzjbg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6fhCY1J_k0SdP87x_jzjbg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6fhCY1J_k0SdP87x_jzjbg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/DL-hQi5JukixDkYep29wIw\",\n                    \"teaserNote\": \"<p><strong>Registered Nurse (RN) â\\u0080\\u0093 Emergency Room (ER)</strong></p>\\n<p>Make a difference in fast-paced, high-stakes care. As a Registered Nurse (RN) in the Emergency Room (ER), youâ\\u0080\\u0099ll provide critical care to patients during their most urgent moments. Join a dedicated team delivering life-saving interventions and ensuring the best possible outcomes for patients in an acute care setting.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Competitive, weekly pay</li>\\n<li>Medical, dental, vision, 401(k), and more are available starting on the first of the month following 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a high-demand specialty with opportunities for skill development and career advancement.</li>\\n</ul>\\n<p><strong>What You'll Do:</strong></p>\\n<ul>\\n<li>Perform rapid assessments and prioritize care based on patientsâ\\u0080\\u0099 acuity.</li>\\n<li>Provide life-saving interventions during medical emergencies.</li>\\n<li>Administer medications, treatments, and procedures as prescribed, including IV therapy.</li>\\n<li>Collaborate with physicians, specialists, and healthcare team members to stabilize patients.</li>\\n<li>Maintain accurate documentation of patient conditions, interventions, and outcomes.</li>\\n<li>Educate patients and their families on follow-up care, discharge instructions, and medication regimens.</li>\\n<li>Operate and monitor medical equipment, including ventilators, defibrillators, and cardiac monitors.</li>\\n<li>Ensure compliance with hospital protocols, safety standards, and regulatory requirements.</li>\\n</ul>\\n<p><strong>What You'll Bring:</strong></p>\\n<ul>\\n<li>Active and unrestricted Registered Nurse (RN) license<strong><br /></strong></li>\\n<li>Graduate of an accredited nursing program</li>\\n<li>Previous ER experience is preferred, but acute care or critical care experience will also be considered.</li>\\n<li>Basic Life Support (BLS) and Advanced Cardiac Life Support (ACLS) certifications (required); Pediatric Advanced Life Support (PALS) and Trauma Nursing Core Course (TNCC) certifications (preferred)</li>\\n<li>Strong critical thinking, communication, and organizational skills</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?Â </strong></p>\\n<p>Apply today to join a team dedicated to delivering life-saving care and making a meaningful impact in the Emergency Room.</p>\\n<p><em>Covelo Group is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"ER\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"ER RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/rByb5gryPUmUPy3JhuvzEw\",\n                    \"teaserNote\": \"<div>\\n<p>Overview</p>\\n</div>\\n<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join an ambulatory care team. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As an Ambulatory Care nurse, you will be part of a team advocating for the patient and family while adhering to the medical plan of care. You will be working in an outpatient setting where responsibilities include examinations, recording medical history, ordering diagnostic tests, conducting blood draws, dressing wounds, educating on chronic diseases, and administering medications. Youâ\\u0080\\u0099ll collaborate with physicians and other healthcare providers to provide a high level of patient care.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of nursing ethics and professional practice standards, relevant state regulations, and standard outpatient care policies. Youâ\\u0080\\u0099ll be expected to assess, plan, implement and evaluate patient care. You must also possess excellent communication, critical thinking, and organizational skills. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing when faced with the demand of high-acuity patients.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year of experience working in an outpatient care facility preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"CLINIC/AMBULATORY\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"CLINIC/AMBULATORY RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/CMGhMP0c4EuQXy5jgO24nw\",\n                    \"teaserNote\": \"<h3>Pharmacy TechnicianÂ </h3>\\n<p>Support patient care and enhance pharmacy operations. As a Pharmacy Technician, youâ\\u0080\\u0099ll play a vital role in ensuring the accurate preparation and dispensing of medications while assisting pharmacists and providing excellent customer service.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive weekly payÂ </li>\\n<li>Comprehensive benefits package: Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional development: Gain valuable experience in pharmacy operations and patient care in a dynamic environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Assist pharmacists in preparing and dispensing medications, ensuring accuracy and compliance with regulations.</li>\\n<li>Manage inventory by stocking shelves, organizing medications, and verifying deliveries.</li>\\n<li>Process prescriptions, including data entry and insurance claims.</li>\\n<li>Provide exceptional customer service by addressing patient questions and concerns.</li>\\n<li>Perform quality assurance checks to ensure medications are labeled and dispensed correctly.</li>\\n<li>Support pharmacists in maintaining compliance with safety and regulatory standards.</li>\\n<li>Maintain a clean, organized, and safe pharmacy environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Certification: Active Pharmacy Technician licenseÂ </li>\\n<li>Education: High school diploma or equivalent.</li>\\n<li>Experience: Previous pharmacy technician experienceÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and proficiency in pharmacy software systems.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team committed to providing exceptional pharmaceutical care and supporting patient health.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Pharmacy Tech\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacy Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacy Tech\",\n                    \"title\": \"Pharmacy Tech Pharmacy Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FjAS-VuXR0Kq4Bkn4lX9Zg\",\n                    \"teaserNote\": \"<p><strong>Healthcare Administrative Assistant</strong></p>\\n<p>As a Healthcare Administrative Assistant, youâ\\u0080\\u0099ll play a vital role in ensuring the smooth operation of daily workflows. From managing patient schedules to supporting the administrative needs of a healthcare team, your work will directly contribute to creating a positive and efficient patient experience.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities to grow your skills and advance your career in a supportive healthcare environment.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Greet patients and visitors, providing a welcoming and professional experience.</li>\\n<li>Schedule appointments, coordinate referrals, and manage patient communication.</li>\\n<li>Maintain and update patient records in electronic health systems with a high degree of accuracy.</li>\\n<li>Assist with insurance verification and billing processes.</li>\\n<li>Handle incoming calls, emails, and correspondence, ensuring timely responses.</li>\\n<li>Support healthcare providers by managing documentation, preparing reports, and coordinating meetings.</li>\\n<li>Maintain an organized workspace and ensure office supplies are adequately stocked.</li>\\n</ul>\\n<div>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Education: A high school diploma or GED is required; additional administrative training or certifications are a plus.</li>\\n<li>Experience: Prior experience in a healthcare or administrative role preferred.</li>\\n<li>Skills: Strong organizational abilities, attention to detail, excellent communication skills, and the ability to prioritize tasks in a fast-paced environment.</li>\\n<li>Technology<strong>:</strong> Proficiency in Microsoft Office Suite and familiarity with electronic health record (EHR) systems.</li>\\n</ul>\\n</div>\\n</div>\\n<p><strong>Ready to Make a Difference?</strong></p>\\n<p>Apply today to join a dedicated team where your organizational skills and customer-focused mindset will have a direct impact on the quality of patient care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\\n<p><strong><br /></strong></p>\",\n                    \"speciality\": \"Administrative Assistant\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Administrative Assistant Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dnwUoAASI0yuPed7s_Zm3Q\",\n                    \"teaserNote\": \"<div>\\n<p>Overview</p>\\n</div>\\n<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join an ambulatory care team. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As an Ambulatory Care nurse, you will be part of a team advocating for the patient and family while adhering to the medical plan of care. You will be working in an outpatient setting where responsibilities include examinations, recording medical history, ordering diagnostic tests, conducting blood draws, dressing wounds, educating on chronic diseases, and administering medications. Youâ\\u0080\\u0099ll collaborate with physicians and other healthcare providers to provide a high level of patient care.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of nursing ethics and professional practice standards, relevant state regulations, and standard outpatient care policies. Youâ\\u0080\\u0099ll be expected to assess, plan, implement and evaluate patient care. You must also possess excellent communication, critical thinking, and organizational skills. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing when faced with the demand of high-acuity patients.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year of experience working in an outpatient care facility preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"CLINIC/AMBULATORY\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"CLINIC/AMBULATORY RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TTtJfNWRIkuqKOQSGyLhsw\",\n                    \"teaserNote\": \"<h2 id=\\\"position-summary\\\"><span>Job Summary</span></h2>\\n<h2 id=\\\"position-summary\\\"><span><br /></span></h2>\\n<h2><span>The Supply Technician is responsible for inventory, tracking arrivals, and reconciling supply needs in the department and in other designated supply locations where assigned. He/she is accountable for reporting supply discrepancies, shipping issues and other material needs to the team leader of his/her group and following up through until resolution. The Supply Technician is responsible to complete the required documentation and follow through with the processing of all paperwork for return of overstock/over shipment as needed. The Supply Technician completes replenishment of the supply locations via both manual and automated systems (via Handheld Scanning devices). He/she is responsible to learn and use all automated supply management tools as requested, and equipment tracking systems if needed.<br /><br /><span><span style=\\\"text-decoration: underline;\\\">Duties</span></span></span></h2>\\n<ul>\\n<li>Serve as a floor ambassador for a designated Nursing Unit.</li>\\n<li>Scans and puts away requisite supplies maintains and alters PAR Levels to meet clinical demand and any other ad hoc requests the unit may require.</li>\\n<li>Transports various forms of clinical equipment and supplies from central supply to the nursing units, clinics, and other sites as needed.</li>\\n<li>Cleans various forms of patient equipment such as pumps, channels, and modules.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2 id=\\\"position-summary\\\"><span><span><span style=\\\"text-decoration: underline;\\\">REQUIRED</span></span></span></h2>\\n\\n<ul>\\n<li>Ability to understand and communicate effectively in English, both orally and in writing.</li>\\n<li>Ability to work effectively within a team.</li>\\n<li>Ability to satisfactorily perform job duties as defined in the job description.</li>\\n<li>Willingness to be taught/learn new skills.</li>\\n<li>Ability to organize and effectively set priorities.</li>\\n<li>Ability to carry out duties of the first responder in emergency situations.</li>\\n<li>Basic computer skills.</li>\\n</ul>\",\n                    \"speciality\": \"Supply Technician\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Supply Technician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Supply Technician\",\n                    \"title\": \"Supply Technician Supply Technician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/UqowUu-sV0-XlMRQlp9OQA\",\n                    \"teaserNote\": \"<h2 id=\\\"position-summary\\\"><span>Job Summary</span></h2>\\n<h2 id=\\\"position-summary\\\"><span><br /></span></h2>\\n<h2><span>The Supply Technician is responsible for inventory, tracking arrivals, and reconciling supply needs in the department and in other designated supply locations where assigned. He/she is accountable for reporting supply discrepancies, shipping issues and other material needs to the team leader of his/her group and following up through until resolution. The Supply Technician is responsible to complete the required documentation and follow through with the processing of all paperwork for return of overstock/over shipment as needed. The Supply Technician completes replenishment of the supply locations via both manual and automated systems (via Handheld Scanning devices). He/she is responsible to learn and use all automated supply management tools as requested, and equipment tracking systems if needed.<br /><br /><span><span style=\\\"text-decoration: underline;\\\">Duties</span></span></span></h2>\\n<ul>\\n<li>Serve as a floor ambassador for a designated Nursing Unit.</li>\\n<li>Scans and puts away requisite supplies maintains and alters PAR Levels to meet clinical demand and any other ad hoc requests the unit may require.</li>\\n<li>Transports various forms of clinical equipment and supplies from central supply to the nursing units, clinics, and other sites as needed.</li>\\n<li>Cleans various forms of patient equipment such as pumps, channels, and modules.</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive team.</li>\\n</ul>\\n</li>\\n</ul>\\n<h2 id=\\\"position-summary\\\"><span><span><span style=\\\"text-decoration: underline;\\\">REQUIRED</span></span></span></h2>\\n\\n<ul>\\n<li>Ability to understand and communicate effectively in English, both orally and in writing.</li>\\n<li>Ability to work effectively within a team.</li>\\n<li>Ability to satisfactorily perform job duties as defined in the job description.</li>\\n<li>Willingness to be taught/learn new skills.</li>\\n<li>Ability to organize and effectively set priorities.</li>\\n<li>Ability to carry out duties of the first responder in emergency situations.</li>\\n<li>Basic computer skills.</li>\\n</ul>\",\n                    \"speciality\": \"Supply Technician\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Supply Technician\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Supply Technician\",\n                    \"title\": \"Supply Technician Supply Technician\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jbWAIOWPRka8FxeipjfV9A\",\n                    \"teaserNote\": \"<p><strong>Registered Nurse (RN) â\\u0080\\u0093 Medical/Surgical Unit</strong></p>\\n<p>Join a dedicated team of healthcare professionals in providing exceptional care to patients on a fast-paced Medical/Surgical (Med/Surg) unit. As a Registered Nurse (RN), youâ\\u0080\\u0099ll play a critical role in managing patient care, monitoring progress, and collaborating with interdisciplinary teams to ensure the best outcomes.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Competitive, weekly pay</li>\\n<li>Medical, dental, vision, 401(k), and more are available starting on the first of the month following 30 days of full-time employment.</li>\\n<li>Gain valuable experience in a high-demand specialty with opportunities for skill development and career advancement.</li>\\n</ul>\\n<p><strong>What You'll Do:</strong></p>\\n<ul>\\n<li>Assess, plan, implement, and evaluate patient care for individuals on the Med/Surg unit.</li>\\n<li>Administer medications and treatments as prescribed.</li>\\n<li>Monitor patient conditions, perform regular assessments, and adjust care plans as needed.</li>\\n<li>Collaborate with physicians, therapists, and other healthcare professionals to develop individualized care plans.</li>\\n<li>Educate patients and their families about post-discharge care, medications, and treatment plans.</li>\\n<li>Maintain accurate documentation of patient care in compliance with policies and regulations.</li>\\n<li>Respond to medical emergencies and provide life-saving care as necessary.</li>\\n</ul>\\n<p><strong>What You'll Bring:</strong></p>\\n<ul>\\n<li>Active and unrestricted Registered Nurse (RN) license<strong><br /></strong></li>\\n<li>Graduate of an accredited nursing program</li>\\n<li>Previous experience in a Med/Surg unit is preferred, but new graduates are encouraged to apply.</li>\\n<li>Basic Life Support (BLS) certification is required; Advanced Cardiac Life Support (ACLS) is preferred.</li>\\n<li>Strong critical thinking, communication, and organizational skills</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?Â </strong></p>\\n<p>Apply today to join a team committed to providing high-quality, compassionate care while supporting your growth as a nursing professional.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MED/SURG\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"MED/SURG RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IYdQIt81MUWCBHHB5CWUYw\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"Student Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IYdQIt81MUWCBHHB5CWUYw\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"Student Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IYdQIt81MUWCBHHB5CWUYw\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"Student Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IYdQIt81MUWCBHHB5CWUYw\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"Student Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IYdQIt81MUWCBHHB5CWUYw\",\n                    \"speciality\": \"Student Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"Student Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/z4oJ2GBDokiglfeZbf6p-Q\",\n                    \"teaserNote\": \"<div>\\n<p>Overview</p>\\n</div>\\n<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join an ambulatory care team. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As an Ambulatory Care nurse, you will be part of a team advocating for the patient and family while adhering to the medical plan of care. You will be working in an outpatient setting where responsibilities include examinations, recording medical history, ordering diagnostic tests, conducting blood draws, dressing wounds, educating on chronic diseases, and administering medications. Youâ\\u0080\\u0099ll collaborate with physicians and other healthcare providers to provide a high level of patient care.</p>\\n</div>\\n<div>\\n<div>\\n<p>You must have a detailed understanding of nursing ethics and professional practice standards, relevant state regulations, and standard outpatient care policies. Youâ\\u0080\\u0099ll be expected to assess, plan, implement and evaluate patient care. You must also possess excellent communication, critical thinking, and organizational skills. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing when faced with the demand of high-acuity patients.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year of experience working in an outpatient care facility preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"CLINIC/AMBULATORY\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"CLINIC/AMBULATORY RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>CaregiverÂ </strong></p>\\n<p>Looking for a weekday caregiver role where you can make a meaningful difference in the lives of seniors?</p>\\n<p>This full-time position offers the opportunity to support older adults in both home and day center settingsâ\\u0080\\u0094within a long-standing, mission-driven organization thatâ\\u0080\\u0099s helped Bay Area seniors live with independence and dignity for nearly 50 years.</p>\\n<p>Join a supportive team that delivers whole-person care through a trusted model that prioritizes compassion, respect, and quality of life.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>Earn competitive, weekly pay</li>\\n<li>Mondayâ\\u0080\\u0093Friday schedule | 8 AM â\\u0080\\u0093 5 PM | No weekends</li>\\n<li>Full benefits: Medical, dental, vision, and 401(k) starting the 1st of the month after 30 days full-time</li>\\n<li>Be part of a purpose-driven team helping seniors stay independent</li>\\n<li>Long-established, community-based care model focused on aging with dignity</li>\\n<li>Supportive environment with ongoing training and guidance</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do:</strong></p>\\n<ul>\\n<li>Assist seniors with activities of daily living such as bathing, dressing, grooming, and toileting</li>\\n<li>Support safe mobility and transfers using gait belts or other equipment as trained</li>\\n<li>Accompany participants to and from appointments or activities</li>\\n<li>Provide companionship and emotional support in both home and day center environments</li>\\n<li>Document care provided and report changes in condition to clinical staff</li>\\n<li>Follow established care plans and safety procedures</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring:</strong></p>\\n<ul>\\n<li>At least 6 months of experience providing personal care to seniors or individuals with disabilities</li>\\n<li>Comfortable assisting with bathing, dressing, and other personal needs</li>\\n<li>Reliable, compassionate, and able to follow care directions closely</li>\\n<li>Strong communication and teamwork skills</li>\\n<li>Bilingual in Cantonese or Spanish a plus</li>\\n<li>High school diploma or equivalent required</li>\\n</ul>\\n<p><strong>Apply Today!</strong></p>\\n<p>If you're ready for a weekday role that offers consistency, purpose, and the chance to be part of something meaningfulâ\\u0080\\u0094apply now and make an impact in a trusted, community-based care program.</p>\\n<p><i>*This pay range represents Covelo Direct's good faith minimum and maximum range for this role at the time of posting. Actual compensation offered will be dependent on a variety of factors, including, but not limited to, the candidate's experience, qualifications, and location. Pursuant to the San Francisco Fair Chance Ordinance, we will consider for employment qualified applicants with conviction and arrest records. Covelo Group is an Equal Opportunity Employer.</i></p>\",\n                    \"speciality\": \"Caregiver\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Caregiver\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Caregiver\",\n                    \"title\": \"Caregiver Caregiver\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/1L6BeOSkIke8Zx3Wl7g2Aw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"SPED Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/1L6BeOSkIke8Zx3Wl7g2Aw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"SPED Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/1L6BeOSkIke8Zx3Wl7g2Aw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"SPED Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/1L6BeOSkIke8Zx3Wl7g2Aw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"SPED Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/1L6BeOSkIke8Zx3Wl7g2Aw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"SPED Services CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/maWvWWnLYU6Dd21ltmg31A\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/0A0sKbSpJUevF1k_PaXV5A\",\n                    \"teaserNote\": \"<div>\\n<div>\\n<p>Covelo Direct is seeking an experienced Food Service Manager to join the team of a reputable health services provider. If youâ\\u0080\\u0099re looking for a new position and have a history of outstanding leadership in hospitality services, this could be your role.</p>\\n</div>\\n<div>\\n<p>Covelo Directâ\\u0080\\u0099s expert recruiters connect qualified allied health professionals with top hospitals and healthcare systems across the U.S . We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the correct position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary or full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a Food Service Manager, you will be responsible for directing all food service operations, including but not limited to coordinating meal sites and delivering meals and supplies to all sites and clients according to all Federal, State, and local standards and contract specifications.</p>\\n</div>\\n<div>\\n<p>We seek a versatile manager willing to collaborate with a diverse team of professionals and food services support personnel. Our ideal applicant is an excellent communicator who is compassionate, steady under pressure, and capable of prioritizing simultaneous demands.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401 (k) retirement savings</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Responsibilities</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>I manage the hiring, training, scheduling, supervision, payroll, and evaluation of all food service, site, and driver staff.</p>\\n</li>\\n<li>\\n<p>Converting recipes and quantifying amounts to inventory needs</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>C conducting ongoing cost analyses relative to inventory requirements</p>\\n</li>\\n<li>\\n<p>Ordering all food and non-food supplies for service operation and monitoring all food service equipment</p>\\n</li>\\n<li>\\n<p>Handling concerns from clients and contracts</p>\\n</li>\\n<li>\\n<p>Collaborating with Registered Dietitian Consultants on menu development and food service operation compliance</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n<div>\\n<p>Education</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>High school diploma or GED</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>2+ years of institutional food service management</p>\\n</li>\\n<li>\\n<p>Previous quantity of food preparation and operation/maintenance of kitchen equipment required</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Valid state Driverâ\\u0080\\u0099s License and clean driving record required upon hire</p>\\n</li>\\n<li>\\n<p>Food Safety Certification is required at the time of hire</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best compensation and benefits packages. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If you want to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"Food Service Supervisor\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Food Service\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Food Service\",\n                    \"title\": \"Food Service Supervisor Food Service\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services - Credentialed\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"School Health Services - Credentialed RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/TSyHd2zy_0y1rEVSC-hmew\",\n                    \"teaserNote\": \"<p>We're hiring an Accounts Receivable Specialist<strong>Â </strong>to join a collaborative, fast-paced team focused on managing collections, account reconciliations, and customer relationships. If you have a strong background in AR and enjoy digging into the details to resolve payment issues, this could be a great fit.</p>\\n<p><strong>Why You Should Apply:</strong></p>\\n<ul>\\n<li>\\n<p>Full-time role with long-term potential</p>\\n</li>\\n<li>\\n<p>Hybrid work model (details shared during interview)</p>\\n</li>\\n<li>\\n<p>Join a stable, supportive team that values accuracy and follow-through</p>\\n</li>\\n<li>\\n<p>Play a key role in improving cash flow and strengthening customer relationships</p>\\n</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do:</strong></p>\\n<ul>\\n<li>\\n<p>Serve as the point of contact between the company and customers regarding outstanding balances</p>\\n</li>\\n<li>\\n<p>Run AR reports (e.g., Aging Report) and share insights with internal teams</p>\\n</li>\\n<li>\\n<p>Regularly follow up with customers via phone and email to resolve unpaid invoices</p>\\n</li>\\n<li>\\n<p>Perform account reconciliations and adjust customer accounts as needed</p>\\n</li>\\n<li>\\n<p>Investigate short payments or discrepancies and update account notes in the system</p>\\n</li>\\n<li>\\n<p>Prioritize follow-ups based on days past due and escalate accounts when necessary</p>\\n</li>\\n<li>\\n<p>Process credit card payments and respond to customer inquiries in a timely, professional manner</p>\\n</li>\\n<li>\\n<p>Assist with ad hoc projects and support other AR staff as needed</p>\\n</li>\\n<li>\\n<p>Participate in team meetings and cross-functional calls as required</p>\\n</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Need:</strong></p>\\n<ul>\\n<li>\\n<p>5+ years of experience in accounts receivable and collections</p>\\n</li>\\n<li>\\n<p>Solid understanding of AR processes, reporting, and account management</p>\\n</li>\\n<li>\\n<p>Strong communication and organizational skills</p>\\n</li>\\n<li>\\n<p>Associate degree required; Bachelorâ\\u0080\\u0099s degree in a related field preferred</p>\\n</li>\\n</ul>\\n<p><strong>Ready to Apply?</strong><br /> If youâ\\u0080\\u0099re an experienced AR professional looking for your next challenge, weâ\\u0080\\u0099d love to hear from you. Apply today and take the next step in your accounting career.</p>\",\n                    \"speciality\": \"Accounts Receivable Specialist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Administrative Assistant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Administrative Assistant\",\n                    \"title\": \"Accounts Receivable Specialist Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/p0l0ahYeGEyWtcoDktSygg\",\n                    \"speciality\": \"SPED Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services - Floater Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3FEwyB2PxkesjbhErfR-Mw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3FEwyB2PxkesjbhErfR-Mw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3FEwyB2PxkesjbhErfR-Mw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3FEwyB2PxkesjbhErfR-Mw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3FEwyB2PxkesjbhErfR-Mw\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/aEheHY1xzUmhgzHTjaEzOA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/aEheHY1xzUmhgzHTjaEzOA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Registered Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Registered Behavior Tech\",\n                    \"title\": \"SPED Services Registered Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6Y6lprE9SUWYpKvrVmmuVw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6Y6lprE9SUWYpKvrVmmuVw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6Y6lprE9SUWYpKvrVmmuVw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/6Y6lprE9SUWYpKvrVmmuVw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<h3>Sterile Processing TechnicianÂ </h3>\\n<p>Ensure patient safety by supporting surgical excellence. As a Sterile Processing Technician, youâ\\u0080\\u0099ll play a critical role in maintaining the highest standards of cleanliness and efficiency by sterilizing, organizing, and preparing medical instruments and equipment for surgical procedures.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive weekly payÂ </li>\\n<li>Comprehensive benefits package: Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional development: Build valuable skills in a high-demand field with opportunities to advance your career.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Decontaminate, clean, inspect, and sterilize medical instruments and equipment according to established protocols.</li>\\n<li>Assemble and organize surgical instrument trays and packs for upcoming procedures.</li>\\n<li>Operate and maintain sterilization equipment, such as autoclaves and ultrasonic cleaners.</li>\\n<li>Perform quality assurance checks to ensure instruments are sterile, functional, and safe for use.</li>\\n<li>Track and document instrument usage, sterilization cycles, and inventory levels.</li>\\n<li>Collaborate with surgical teams to ensure timely delivery of instruments and supplies.</li>\\n<li>Adhere to infection control and safety standards to maintain a sterile working environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Certification: Certified Registered Central Service Technician (CRCST) or Certified Sterile Processing and Distribution Technician (CSPDT) is preferred.</li>\\n<li>Education: A high school diploma or equivalent is required.</li>\\n<li>Experience: Previous sterile processing experienceÂ </li>\\n<li>Skills: Strong attention to detail, ability to follow protocols, and effective communication in a fast-paced environment.</li>\\n</ul>\\n<h3>Ready to Support Surgical Excellence?</h3>\\n<p>Apply today to join a dedicated team committed to maintaining the highest standards of safety and care in a dynamic healthcare setting.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Sterile Processing Tech\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Sterile Processing Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Sterile Processing Tech\",\n                    \"title\": \"Sterile Processing Tech Sterile Processing Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zUiekMFG9U6UfjzB5AaROg\",\n                    \"teaserNote\": \"<h2 id=\\\"position-summary\\\"><span>The Patient Care Attendant functions in an assistive role in the provisions of patient care services through regular assignments or delegated tasks and is supervised by the RN. The Patient Care Attendant demonstrates the ability to carry out specific tasks with reasonable skill and safety that adheres to the prevailing standard of practice in the nursing community.<br /><br /><span style=\\\"text-decoration: underline;\\\">Duties</span></span></h2>\\n\\n<ul>\\n<li>Each shift or visit reflects the provision of care rendered in accordance with the Physician's orders/Plan of Care/Home Health Aide Assignment Sheet.</li>\\n<li>Document all tasks completed and may include:\\n<ul>\\n<li>Checking/documenting patients' pulse, temperature, and respiration.</li>\\n<li>Assists patients in simple prescribed exercises and range of motion.</li>\\n<li>Maintains records in order to report and discuss observations with a supervisor or case manager.</li>\\n<li>Provides patients with help moving in and out of beds, baths, wheelchairs, or automobiles, and with dressing and grooming.</li>\\n<li>Changes bed linens, washing and ironing patients' laundry, and cleaning patients' quarters.</li>\\n<li>Performs a variety of duties as requested by the client; running errands, preparing meals, etc.</li>\\n</ul>\\n</li>\\n<li>Functions as a team member demonstrating collaborations with and responding to the Patient, Physician, and the health care team.\\n<ul>\\n<li>Shifts or visits are according to the orders on the Plan of Care/Home Health Aide Assignment sheet</li>\\n<li>Observations of significant changes in patient status are communicated to the RN Case Manager.</li>\\n<li>Attendance at Multi-Disciplinary Team Meetings is recommended and is documented via sign-in sheets.</li>\\n<li>Communicates to RN Case Manager/Director of Clinical Services for each patient as needed.</li>\\n</ul>\\n</li>\\n<li>Supports and executes the mission, ethics, and goals of the company effectively\\n<ul>\\n<li>Represents themselves in a positive and professional manner in the company and community.</li>\\n<li>Adheres to dress code with a clean and neat professional appearance.</li>\\n<li>Reports on time and as scheduled in order to complete work within the designated time.</li>\\n<li>Adhere to all company policies and procedures outlined in the Employee Handbook, Employees Agreement, or communicated from the executive tea</li>\\n</ul>\\n</li>\\n</ul>\",\n                    \"speciality\": \"Caregiver\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Patient Care Attendant\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Patient Care Attendant\",\n                    \"title\": \"Caregiver Patient Care Attendant\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/Yxq1GLQ0b0SpFiObsI385w\",\n                    \"teaserNote\": \"<h3>Pharmacy TechnicianÂ </h3>\\n<p>Support patient care and enhance pharmacy operations. As a Pharmacy Technician, youâ\\u0080\\u0099ll play a vital role in ensuring the accurate preparation and dispensing of medications while assisting pharmacists and providing excellent customer service.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive weekly payÂ </li>\\n<li>Comprehensive benefits package: Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional development: Gain valuable experience in pharmacy operations and patient care in a dynamic environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Assist pharmacists in preparing and dispensing medications, ensuring accuracy and compliance with regulations.</li>\\n<li>Manage inventory by stocking shelves, organizing medications, and verifying deliveries.</li>\\n<li>Process prescriptions, including data entry and insurance claims.</li>\\n<li>Provide exceptional customer service by addressing patient questions and concerns.</li>\\n<li>Perform quality assurance checks to ensure medications are labeled and dispensed correctly.</li>\\n<li>Support pharmacists in maintaining compliance with safety and regulatory standards.</li>\\n<li>Maintain a clean, organized, and safe pharmacy environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Certification: Active Pharmacy Technician licenseÂ </li>\\n<li>Education: High school diploma or equivalent.</li>\\n<li>Experience: Previous pharmacy technician experienceÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and proficiency in pharmacy software systems.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team committed to providing exceptional pharmaceutical care and supporting patient health.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Pharmacy Tech\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacy Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacy Tech\",\n                    \"title\": \"Pharmacy Tech Pharmacy Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/Yxq1GLQ0b0SpFiObsI385w\",\n                    \"teaserNote\": \"<h3>Pharmacy TechnicianÂ </h3>\\n<p>Support patient care and enhance pharmacy operations. As a Pharmacy Technician, youâ\\u0080\\u0099ll play a vital role in ensuring the accurate preparation and dispensing of medications while assisting pharmacists and providing excellent customer service.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive weekly payÂ </li>\\n<li>Comprehensive benefits package: Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional development: Gain valuable experience in pharmacy operations and patient care in a dynamic environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Assist pharmacists in preparing and dispensing medications, ensuring accuracy and compliance with regulations.</li>\\n<li>Manage inventory by stocking shelves, organizing medications, and verifying deliveries.</li>\\n<li>Process prescriptions, including data entry and insurance claims.</li>\\n<li>Provide exceptional customer service by addressing patient questions and concerns.</li>\\n<li>Perform quality assurance checks to ensure medications are labeled and dispensed correctly.</li>\\n<li>Support pharmacists in maintaining compliance with safety and regulatory standards.</li>\\n<li>Maintain a clean, organized, and safe pharmacy environment.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Certification: Active Pharmacy Technician licenseÂ </li>\\n<li>Education: High school diploma or equivalent.</li>\\n<li>Experience: Previous pharmacy technician experienceÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and proficiency in pharmacy software systems.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team committed to providing exceptional pharmaceutical care and supporting patient health.</p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Pharmacy Tech\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Pharmacy Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Pharmacy Tech\",\n                    \"title\": \"Pharmacy Tech Pharmacy Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YUA91rEbD0WzrhAG_gqQFQ\",\n                    \"teaserNote\": \"<p><strong>Radiologic TechnologistÂ </strong></p>\\n<p>As a Radiologic Technologist, youâ\\u0080\\u0099ll play a critical role in patient care by performing high-quality imaging procedures to assist in accurate diagnoses. Your expertise will ensure a safe, comfortable experience for patients while supporting the healthcare team in providing exceptional care.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for professional growth and skill development in a state-of-the-art medical environment.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Perform diagnostic imaging procedures, including X-rays, ensuring images meet quality standards.</li>\\n<li>Prepare patients for imaging, explaining procedures and addressing concerns to ensure comfort.</li>\\n<li>Position patients and equipment correctly to capture accurate images while minimizing radiation exposure.</li>\\n<li>Maintain and calibrate radiologic equipment, reporting any issues promptly.</li>\\n<li>Adhere to safety protocols, including infection control and radiation protection standards.</li>\\n<li>Collaborate with healthcare teams to deliver timely and accurate results.</li>\\n<li>Document and maintain patient records in compliance with regulations and policies.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Certification: Current ARRT (American Registry of Radiologic Technologists) certification or equivalent.</li>\\n<li>Licensure: Active state license, as required.</li>\\n<li>Education: Completion of an accredited Radiologic Technology program.</li>\\n<li>Experience: Previous experience as a Radiologic TechnologistÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and a patient-centered approach.</li>\\n</ul>\\n<p><strong>Ready to Make an Impact?</strong><br />Apply today to join a team where your skills and dedication will contribute to life-changing diagnoses and care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p><strong>Radiologic TechnologistÂ </strong></p>\\n<p>As a Radiologic Technologist, youâ\\u0080\\u0099ll play a critical role in patient care by performing high-quality imaging procedures to assist in accurate diagnoses. Your expertise will ensure a safe, comfortable experience for patients while supporting the healthcare team in providing exceptional care.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for professional growth and skill development in a state-of-the-art medical environment.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Perform diagnostic imaging procedures, including X-rays, ensuring images meet quality standards.</li>\\n<li>Prepare patients for imaging, explaining procedures and addressing concerns to ensure comfort.</li>\\n<li>Position patients and equipment correctly to capture accurate images while minimizing radiation exposure.</li>\\n<li>Maintain and calibrate radiologic equipment, reporting any issues promptly.</li>\\n<li>Adhere to safety protocols, including infection control and radiation protection standards.</li>\\n<li>Collaborate with healthcare teams to deliver timely and accurate results.</li>\\n<li>Document and maintain patient records in compliance with regulations and policies.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li>Certification: Current ARRT (American Registry of Radiologic Technologists) certification or equivalent.</li>\\n<li>Licensure: Active state license, as required.</li>\\n<li>Education: Completion of an accredited Radiologic Technology program.</li>\\n<li>Experience: Previous experience as a Radiologic TechnologistÂ </li>\\n<li>Skills: Strong attention to detail, effective communication, and a patient-centered approach.</li>\\n</ul>\\n<p><strong>Ready to Make an Impact?</strong><br />Apply today to join a team where your skills and dedication will contribute to life-changing diagnoses and care.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"Radiological Technologist\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Radiological Technologist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Radiological Technologist\",\n                    \"title\": \"Radiological Technologist Radiological Technologist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8LbvI09p10WLMCMVKOAD7A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8LbvI09p10WLMCMVKOAD7A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8LbvI09p10WLMCMVKOAD7A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8LbvI09p10WLMCMVKOAD7A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/ljDKOe5HwkO9qq0NlKbNzw\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/jMl1ilq0AUCO-3wCDKMIbg\",\n                    \"teaserNote\": \"<p class=\\\"x_MsoNormal\\\"><b>Nursing Aide â\\u0080\\u0093 Competitive Pay + Benefits | Various Shifts Available</b></p>\\n<p class=\\\"x_MsoNormal\\\">Are you seeking a meaningful role in healthcare?</p>\\n<p class=\\\"x_MsoNormal\\\">Join a dedicated team at a care facility and contribute significantly while expanding your expertise in specialized health care.</p>\\n<p class=\\\"x_MsoNormal\\\"><b>Why You Should Apply:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\"><b>Competitive Pay:</b>Â Earn competitive hourly pay, with weekly payouts.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Flexible Scheduling:</b>Â Choose from multiple shifts to match your lifestyle.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Career Development:</b>Â Gain valuable experience in a specialized care setting.</li>\\n<li class=\\\"x_MsoNormal\\\"><b>Comprehensive Benefits:</b>Â Access to health benefits including medical, dental, and vision, plus retirement plans available after initial employment period.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Do:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Assist patients with daily living activities, such as hygiene, dining, and moving around.</li>\\n<li class=\\\"x_MsoNormal\\\">Monitor and report any changes in patient conditions to medical staff.</li>\\n<li class=\\\"x_MsoNormal\\\">Uphold a secure, clean, and healing environment for all patients.</li>\\n<li class=\\\"x_MsoNormal\\\">Offer emotional support to patients, ensuring a comforting and trusting atmosphere.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>What You'll Need:</b></p>\\n<ul>\\n<li class=\\\"x_MsoNormal\\\">Completion of high school or an equivalent education.</li>\\n<li class=\\\"x_MsoNormal\\\">CNA certification preferred.</li>\\n<li class=\\\"x_MsoNormal\\\">Experience in a health care field is advantageous.</li>\\n<li class=\\\"x_MsoNormal\\\">A compassionate nature, excellent communication abilities, and a collaborative spirit.</li>\\n</ul>\\n<p class=\\\"x_MsoNormal\\\"><b>Take Your Next Step in Healthcare:</b></p>\\n<p class=\\\"x_MsoNormal\\\">Apply now to join a team dedicated to making a difference!</p>\",\n                    \"speciality\": \"Nursing Aide\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Nursing Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Nursing Aide\",\n                    \"title\": \"Nursing Aide Nursing Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/04Biywl71EWWiWeO2Ems-g\",\n                    \"teaserNote\": \"<h3>Licensed Practical Nurse (LPN)Â </h3>\\n<p>Provide compassionate care in a fast-paced environment. As a Licensed Practical Nurse (LPN), youâ\\u0080\\u0099ll play an essential role in delivering high-quality patient care by supporting RNs, physicians, and other healthcare professionals. Your skills and dedication will make a meaningful impact on patientsâ\\u0080\\u0099 lives every day.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits package<strong>:</strong> Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional growth: Advance your nursing career with opportunities for skill development and leadership roles.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Administer medications, treatments, and injections as prescribed.</li>\\n<li>Monitor patientsâ\\u0080\\u0099 vital signs and report changes to RNs or physicians.</li>\\n<li>Assist with wound care, dressing changes, and other clinical procedures.</li>\\n<li>Provide support with activities of daily living (ADLs) as needed.</li>\\n<li>Collaborate with interdisciplinary teams to develop and implement care plans.</li>\\n<li>Educate patients and families about treatment plans, medications, and post-discharge care.</li>\\n<li>Document patient care accurately in compliance with policies and regulations.</li>\\n<li>Ensure patient safety by adhering to infection control and safety protocols.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Licensure: Active and unrestricted LPN licenseÂ </li>\\n<li>Education: Graduate of an accredited Practical Nursing program.</li>\\n<li>Experience: Previous LPN experienceÂ </li>\\n<li>Certifications: BLS certification (required).</li>\\n<li>Skills: Strong communication, critical thinking, and the ability to provide compassionate care in a fast-paced environment.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team focused on delivering exceptional patient care while supporting your growth as a nursing professional.</p>\\n<p>Covelo Direct is an Equal Opportunity Employer.</p>\",\n                    \"speciality\": \"LPN/LVN\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LPN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LPN\",\n                    \"title\": \"LPN/LVN LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/04Biywl71EWWiWeO2Ems-g\",\n                    \"teaserNote\": \"<h3>Licensed Practical Nurse (LPN)Â </h3>\\n<p>Provide compassionate care in a fast-paced environment. As a Licensed Practical Nurse (LPN), youâ\\u0080\\u0099ll play an essential role in delivering high-quality patient care by supporting RNs, physicians, and other healthcare professionals. Your skills and dedication will make a meaningful impact on patientsâ\\u0080\\u0099 lives every day.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits package<strong>:</strong> Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional growth: Advance your nursing career with opportunities for skill development and leadership roles.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Administer medications, treatments, and injections as prescribed.</li>\\n<li>Monitor patientsâ\\u0080\\u0099 vital signs and report changes to RNs or physicians.</li>\\n<li>Assist with wound care, dressing changes, and other clinical procedures.</li>\\n<li>Provide support with activities of daily living (ADLs) as needed.</li>\\n<li>Collaborate with interdisciplinary teams to develop and implement care plans.</li>\\n<li>Educate patients and families about treatment plans, medications, and post-discharge care.</li>\\n<li>Document patient care accurately in compliance with policies and regulations.</li>\\n<li>Ensure patient safety by adhering to infection control and safety protocols.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Licensure: Active and unrestricted LPN licenseÂ </li>\\n<li>Education: Graduate of an accredited Practical Nursing program.</li>\\n<li>Experience: Previous LPN experienceÂ </li>\\n<li>Certifications: BLS certification (required).</li>\\n<li>Skills: Strong communication, critical thinking, and the ability to provide compassionate care in a fast-paced environment.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team focused on delivering exceptional patient care while supporting your growth as a nursing professional.</p>\\n<p>Covelo Direct is an Equal Opportunity Employer.</p>\",\n                    \"speciality\": \"LPN/LVN\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LPN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LPN\",\n                    \"title\": \"LPN/LVN LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/04Biywl71EWWiWeO2Ems-g\",\n                    \"teaserNote\": \"<h3>Licensed Practical Nurse (LPN)Â </h3>\\n<p>Provide compassionate care in a fast-paced environment. As a Licensed Practical Nurse (LPN), youâ\\u0080\\u0099ll play an essential role in delivering high-quality patient care by supporting RNs, physicians, and other healthcare professionals. Your skills and dedication will make a meaningful impact on patientsâ\\u0080\\u0099 lives every day.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits package<strong>:</strong> Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional growth: Advance your nursing career with opportunities for skill development and leadership roles.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Administer medications, treatments, and injections as prescribed.</li>\\n<li>Monitor patientsâ\\u0080\\u0099 vital signs and report changes to RNs or physicians.</li>\\n<li>Assist with wound care, dressing changes, and other clinical procedures.</li>\\n<li>Provide support with activities of daily living (ADLs) as needed.</li>\\n<li>Collaborate with interdisciplinary teams to develop and implement care plans.</li>\\n<li>Educate patients and families about treatment plans, medications, and post-discharge care.</li>\\n<li>Document patient care accurately in compliance with policies and regulations.</li>\\n<li>Ensure patient safety by adhering to infection control and safety protocols.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Licensure: Active and unrestricted LPN licenseÂ </li>\\n<li>Education: Graduate of an accredited Practical Nursing program.</li>\\n<li>Experience: Previous LPN experienceÂ </li>\\n<li>Certifications: BLS certification (required).</li>\\n<li>Skills: Strong communication, critical thinking, and the ability to provide compassionate care in a fast-paced environment.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team focused on delivering exceptional patient care while supporting your growth as a nursing professional.</p>\\n<p>Covelo Direct is an Equal Opportunity Employer.</p>\",\n                    \"speciality\": \"LPN/LVN\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LPN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LPN\",\n                    \"title\": \"LPN/LVN LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/04Biywl71EWWiWeO2Ems-g\",\n                    \"teaserNote\": \"<h3>Licensed Practical Nurse (LPN)Â </h3>\\n<p>Provide compassionate care in a fast-paced environment. As a Licensed Practical Nurse (LPN), youâ\\u0080\\u0099ll play an essential role in delivering high-quality patient care by supporting RNs, physicians, and other healthcare professionals. Your skills and dedication will make a meaningful impact on patientsâ\\u0080\\u0099 lives every day.</p>\\n<h3>Why You Should Apply:</h3>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits package<strong>:</strong> Medical, dental, vision, 401(k), and more starting the first of the month after 30 days of full-time employment.</li>\\n<li>Professional growth: Advance your nursing career with opportunities for skill development and leadership roles.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Do:</h3>\\n<ul>\\n<li>Administer medications, treatments, and injections as prescribed.</li>\\n<li>Monitor patientsâ\\u0080\\u0099 vital signs and report changes to RNs or physicians.</li>\\n<li>Assist with wound care, dressing changes, and other clinical procedures.</li>\\n<li>Provide support with activities of daily living (ADLs) as needed.</li>\\n<li>Collaborate with interdisciplinary teams to develop and implement care plans.</li>\\n<li>Educate patients and families about treatment plans, medications, and post-discharge care.</li>\\n<li>Document patient care accurately in compliance with policies and regulations.</li>\\n<li>Ensure patient safety by adhering to infection control and safety protocols.</li>\\n</ul>\\n<h3>What Youâ\\u0080\\u0099ll Bring:</h3>\\n<ul>\\n<li>Licensure: Active and unrestricted LPN licenseÂ </li>\\n<li>Education: Graduate of an accredited Practical Nursing program.</li>\\n<li>Experience: Previous LPN experienceÂ </li>\\n<li>Certifications: BLS certification (required).</li>\\n<li>Skills: Strong communication, critical thinking, and the ability to provide compassionate care in a fast-paced environment.</li>\\n</ul>\\n<h3>Ready to Take the Next Step?</h3>\\n<p>Apply today to join a dedicated team focused on delivering exceptional patient care while supporting your growth as a nursing professional.</p>\\n<p>Covelo Direct is an Equal Opportunity Employer.</p>\",\n                    \"speciality\": \"LPN/LVN\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LPN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LPN\",\n                    \"title\": \"LPN/LVN LPN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div>\\n</div>\\n</div></div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/8PRfcz62pUGumnqjKjZtvg\",\n                    \"teaserNote\": \"<div>\\n<p>Covelo Direct is seeking an experienced Registered Nurse (RN) to join a psychiatric department. If youâ\\u0080\\u0099re looking for a new position and have a history of providing outstanding patient care, this could be the role for you.</p>\\n</div>\\n<div>\\n<p>Covelo Direct's expert recruiters connect qualified nursing professionals with top hospitals and healthcare systems across the U.S. We donâ\\u0080\\u0099t place our applicants in just any job â\\u0080\\u0093 we partner with you to match you with the right position to accommodate your lifestyle and advance your unique career goals. Whether youâ\\u0080\\u0099re looking for a temporary position or a full-time permanent placement, we have excellent opportunities from coast to coast.</p>\\n</div>\\n<div>\\n<p>Job Summary</p>\\n</div>\\n<div>\\n<p>As a psychiatric nurse, you will provide compassionate care to patients under treatment for psychiatric disorders, mental illness, addiction, eating disorders, and/ or substance abuse. Under the direction of a physician, you will develop individual treatment plans based on your health history and current mental health condition.</p>\\n</div>\\n<div>\\n<p>You will be required to order and analyze diagnostic tests to determine appropriate patient care. As needed, you will administer medication to patients and closely monitor their mental health progress in response to therapies. It is vital that a behavioral health nurse provide a supportive, therapeutic environment for patients, teaching healthy coping skills and self-care techniques. You may also provide crisis intervention, mental health counseling, and other therapeutic services.</p>\\n</div>\\n<div>\\n<p>One of your top priorities will be to prepare patients for a safe and successful discharge, placing them on the path to full recovery. Patients and their families will rely on you to connect them with appropriate mental health resources, including referrals to psychiatric specialists.</p>\\n</div>\\n<div>\\n<p>To be successful in this position, you must have a detailed understanding of psychiatric-mental health nursing, professional practice standards, and relevant state regulations. An RN must also possess excellent communication, critical thinking, organizational, and computer skills.</p>\\n</div>\\n<div>\\n<div>\\n<p>We are looking for a versatile behavioral health nurse who is willing to collaborate with an interdisciplinary team of physicians, case managers, and social workers. Our ideal applicant is compassionate, steady under pressure, and capable of prioritizing patient needs.</p>\\n</div>\\n<div>\\n<p>Benefits Package</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Competitive compensation</p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Health benefits eligibility after 30 days (medical, dental, vision)</p>\\n</li>\\n<li>\\n<p>401(k) retirement savings</p>\\n</li>\\n<li>\\n<p>Health Savings Account (HSA) with employer contribution</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Qualifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<p>Education and Experience</p>\\n</div>\\n<div>\\n<ul>\\n<li>\\n<p>Bachelor of Science (BS) degree from an accredited nursing program</p>\\n</li>\\n<li>\\n<p>A minimum of one year working in a psychiatric unit or acute specialty setting preferred</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>Licensure and Certifications</p>\\n</div>\\n</div>\\n<div>\\n<div>\\n<ul>\\n<li>\\n<p>Registered Nurse Licensure within the state of practice</p>\\n</li>\\n<li>\\n<p>Psychiatric-Mental Health Nursing Certification through the American Nurses Credentialing Center (ANCC) preferred</p>\\n</li>\\n<li>\\n<p>Current BLS for Healthcare Provider CPR or CPR/AED for the Professional Rescuer certification</p>\\n</li>\\n</ul>\\n</div>\\n<div>\\n<p>At Covelo Direct, we advocate for our candidates to secure the best possible compensation and benefits packages available. Moreover, weâ\\u0080\\u0099ll guide you every step of the way, offering 24/7 on-call employer support. If youâ\\u0080\\u0099re looking to take your healthcare career to the next level, we want to hear from you today!</p>\\n<div />\\n</div>\\n</div>\",\n                    \"speciality\": \"PSYCH\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"RN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"RN\",\n                    \"title\": \"PSYCH RN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/W9R_HAR6LEmzgr-K7T5Qqg\",\n                    \"teaserNote\": \"<h2>Job Function Summary:</h2>\\n<h2><br />The EVS Supervisor manages staff involved in cleaning patient rooms, nursing units, surgical areas, administrative offices, laboratory areas, waiting areas, and public restrooms using various cleaning chemicals and disinfectants. Follows established infection-control practices to ensure a clean and safe environment. Oversees bio hazardous waste disposal process according to established procedures and quality standards. Follows established procedures for dealing with potential hazards. Monitors inventory and inspects equipment for repair and/or replacement. Manages Linen Services operations and staff lab coat ordering.<br /><br />General Scope of Work:</h2>\\n<h2><br />Provides immediate supervision to a unit or group of operational or technical employees. A portion of time may be spent performing individual tasks related to the unit; however, supervisory activities must constitute a primary part of the job. Supervises unit operations to ensure compliance with departmental or organizational policies, procedures, and defined internal controls. Ensures accountability and stewardship of department resources (operational, financial, and human) in compliance with departmental standards and procedures.</h2>\",\n                    \"speciality\": \"Environmental Tech Supervisor\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Environmental Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Environmental Tech\",\n                    \"title\": \"Environmental Tech Supervisor Environmental Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4BxzG0tZbkSetU3-4AnyKQ\",\n                    \"teaserNote\": \"<p><strong>Medical AssistantÂ </strong></p>\\n<p>As a Medical Assistant, youâ\\u0080\\u0099ll provide essential support to healthcare providers while ensuring patients receive the highest quality care. Your role will include a mix of clinical and administrative responsibilities in a fast-paced healthcare environment.</p>\\n<p><strong>Why You Should Apply</strong></p>\\n<ul>\\n<li>Competitive, weekly pay.</li>\\n<li>Comprehensive benefits, including medical, dental, vision, and 401(k), starting the first of the month after 30 days of full-time employment.</li>\\n<li>Opportunities for skill development and career advancement in a supportive healthcare team.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Do</strong></p>\\n<ul>\\n<li>Prepare patients for exams, including taking vital signs, recording medical histories, and updating charts.</li>\\n<li>Assist providers during procedures and administer medications under supervision.</li>\\n<li>Perform basic laboratory tests and collect specimens.</li>\\n<li>Schedule appointments, manage electronic health records, and complete general administrative tasks.</li>\\n<li>Educate patients on post-visit care instructions and answer basic medical inquiries.</li>\\n<li>Maintain a clean and organized environment, ensuring supplies are fully stocked and equipment is sanitized.</li>\\n<li>Collaborate with the healthcare team to provide efficient, high-quality care.</li>\\n</ul>\\n<p><strong>What Youâ\\u0080\\u0099ll Bring</strong></p>\\n<ul>\\n<li><strong>Education:</strong> Graduation from an accredited Medical Assistant program.</li>\\n<li><strong>Certification:</strong> Active certification (CMA, RMA, or equivalent) preferred.</li>\\n<li><strong>Experience:</strong> Previous medical assisting experienceÂ </li>\\n<li><strong>Skills:</strong> Strong organizational abilities, attention to detail, effective communication, and a compassionate, patient-focused approach.</li>\\n</ul>\\n<p><strong>Ready to Make a Difference?</strong><br />Apply today to join a dedicated team committed to delivering exceptional patient care and creating a positive healthcare experience.</p>\\n<p><em><br /></em></p>\\n<p><em>Covelo Direct is an Equal Opportunity Employer.</em></p>\",\n                    \"speciality\": \"MA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"MA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"MA\",\n                    \"title\": \"MA MA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/AesybGV6F0SLNGwz7ufIyg\",\n                    \"speciality\": \"School Health Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services - Floater LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services - Floater LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/AesybGV6F0SLNGwz7ufIyg\",\n                    \"speciality\": \"School Health Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services - Floater LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/AesybGV6F0SLNGwz7ufIyg\",\n                    \"speciality\": \"School Health Services - Floater\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services - Floater LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4_1bsHEB2UmiTcjUDImQUg\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide II\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide II\",\n                    \"title\": \"SPED Services Instructional Aide II\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/pZdQB428_UunndVmVzdYuA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/pZdQB428_UunndVmVzdYuA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/pZdQB428_UunndVmVzdYuA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/pZdQB428_UunndVmVzdYuA\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YJHc0lNha0asGMXGDJoM-A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/YJHc0lNha0asGMXGDJoM-A\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/MCjJ18USNUO8ber1p4zT_Q\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/MCjJ18USNUO8ber1p4zT_Q\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/N6dk0Wv0W0aXr1GVRg6Vew\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/Smtj9ySnvk-PtF9F2LInyg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/dWz3coedn06dzY8mCVgG0w\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"SPED Teacher\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"SPED Teacher\",\n                    \"title\": \"SPED Services SPED Teacher\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/-d-A2juLZEqZsWxrUR8zkQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Occupational Therapist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Occupational Therapist\",\n                    \"title\": \"SPED Services Occupational Therapist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/-d-A2juLZEqZsWxrUR8zkQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Occupational Therapist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Occupational Therapist\",\n                    \"title\": \"SPED Services Occupational Therapist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/-d-A2juLZEqZsWxrUR8zkQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Occupational Therapist\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Occupational Therapist\",\n                    \"title\": \"SPED Services Occupational Therapist\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IR_96DDhckKxNkWHPmcZ-g\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IR_96DDhckKxNkWHPmcZ-g\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IR_96DDhckKxNkWHPmcZ-g\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/IR_96DDhckKxNkWHPmcZ-g\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Para Educator\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Para Educator\",\n                    \"title\": \"SPED Services Para Educator\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/FZ3gVqPK2EqkbCQ5XOspgw\",\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"General Education\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"General Education Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3rAElagFoUmbUIacWlblPQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3rAElagFoUmbUIacWlblPQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3rAElagFoUmbUIacWlblPQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3rAElagFoUmbUIacWlblPQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/3rAElagFoUmbUIacWlblPQ\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4ST3q4Q54Uav76gZ1hruww\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4ST3q4Q54Uav76gZ1hruww\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4ST3q4Q54Uav76gZ1hruww\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4ST3q4Q54Uav76gZ1hruww\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/4ST3q4Q54Uav76gZ1hruww\",\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Behavior Tech\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Behavior Tech\",\n                    \"title\": \"SPED Services Behavior Tech\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/2adZgIlLOUON2fjgaUAEdw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/2adZgIlLOUON2fjgaUAEdw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/2adZgIlLOUON2fjgaUAEdw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/2adZgIlLOUON2fjgaUAEdw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/2adZgIlLOUON2fjgaUAEdw\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zK634DB9nk2CIyIZge7hsg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zK634DB9nk2CIyIZge7hsg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zK634DB9nk2CIyIZge7hsg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zK634DB9nk2CIyIZge7hsg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/zK634DB9nk2CIyIZge7hsg\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/VqGst9tldUqc41JYRgcIeA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/VqGst9tldUqc41JYRgcIeA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/VqGst9tldUqc41JYRgcIeA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/VqGst9tldUqc41JYRgcIeA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/VqGst9tldUqc41JYRgcIeA\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"LVN\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"LVN\",\n                    \"title\": \"School Health Services LVN\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/sITycyORQ0am-GtI4xWAdw\",\n                    \"speciality\": \"CNA\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"CNA\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"CNA\",\n                    \"title\": \"CNA CNA\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"symplrHiringJobUrl\": \"https://covelogroup.hcshiring.com/jobs/nV9IGbPk_0qEh5iOhH2PxQ\",\n                    \"speciality\": \"School Health Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"School Health Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"School Health Aide\",\n                    \"title\": \"School Health Services School Health Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                },\n                {\n                    \"speciality\": \"SPED Services\",\n                    \"region\": \"\",\n                    \"weeklyGrossPay\": \"\",\n                    \"certification\": \"Instructional Aide\",\n                    \"weeklyRegularGrossPay\": \"\",\n                    \"hourlyPayRate\": \"\",\n                    \"totalWeeklyPayPackage\": \"\",\n                    \"category\": \"Instructional Aide\",\n                    \"title\": \"SPED Services Instructional Aide\",\n                    \"api_request_custom\": {\n                        \"hourlyPayRate\": \"\",\n                        \"weeklyRegularGrossPay\": \"\",\n                        \"totalWeeklyPayPackage\": \"\",\n                        \"weeklyGrossPay\": \"\"\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.677655\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-05-21T15:59:00\",\n            \"APIKEY\": \"mgaHaleyMarketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"641 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/mga/clearConnect/2_0/index.cfm?status=open&action=getLtOrders&limit=100&offset=700&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"13.110907\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"641 jobs returned\"\n}"}],"_postman_id":"f0e09df1-762e-494c-adcd-1b95e2a7e236"},{"name":"Get Certs","id":"6930a072-5eed-4b69-b323-c3c3f4c5f166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\": {\n        \"api_connection\": {\n            \"api_un\": \"{{api_un}}\",\n            \"api_pw\": \"{{api_pw}}\",\n            \"api_site_name\": \"{{api_site_name}}\",\n            \"api_cluster_prefix\": \"{{api_cluster_prefix}}\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"api_sandbox\": 1,\n        \"api_performance_dump\": 0,\n        \"api_verbose_dump\": 0\n    },\n    \"api_request_data\": {\n        \"api_request_query\": {\n            \"certification_name\": \"Sitter\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/job/get/certifications","urlObject":{"path":["job","get","certifications"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6930a072-5eed-4b69-b323-c3c3f4c5f166"}],"id":"179385d9-13e1-4007-83ee-74f11d8ecd91","_postman_id":"179385d9-13e1-4007-83ee-74f11d8ecd91","description":""},{"name":"Note","item":[{"name":"Note Set","id":"424b0e7b-bac0-4979-851a-82782caaaa3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"869133fd-12b2-40aa-bf69-cf0d85a6a95d","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 19:45:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"378"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"85664"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-03-18T19:45:08\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-03-18T19:45:09\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"PAY_LOAD\": {},\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"apihealthcare\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.312061\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"424b0e7b-bac0-4979-851a-82782caaaa3e"}],"id":"bc1b37f3-2750-40c0-be28-ad4ab018bc0c","_postman_id":"bc1b37f3-2750-40c0-be28-ad4ab018bc0c","description":""},{"name":"Resume Parse","item":[{"name":"Resume Parse","id":"9d1bbe1f-2849-49bc-abba-408778295d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bcf80f6d-cd4c-4b36-9eeb-1f8b9b7e28db","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 19:46:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"369"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"85667"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-03-18T19:46:05\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-03-18T19:46:05\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"apihealthcare\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"0.30582\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"9d1bbe1f-2849-49bc-abba-408778295d63"}],"id":"52fc095c-8107-4875-9a11-b23fa5f599be","_postman_id":"52fc095c-8107-4875-9a11-b23fa5f599be","description":""},{"name":"Lookups","item":[{"name":"Regions Get","id":"2f5ef1b7-f0cf-4ab7-b95a-04ce4a9edf00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{  \n\n        }\n    }\n }\n"},"url":"{{ats-connect}}/job/get/regions","description":"<p>For retrieving regions.</p>\n\n<ul>\n<li>reload - <b>REQUIRED</b> - clear the ATS-Connect Cache</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"reload\":1\n    }\n</pre>","urlObject":{"path":["job","get","regions"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cff86788-459e-46ea-a42e-3cbe5b660579","name":"Regions Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n    }\n}\n"},"url":"{{ats-connect}}/job/get/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 20:23:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"581"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"85677"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/regions"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 10,\n            \"regions\": [\n                {\n                    \"regionName\": \"Alabama\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"3\"\n                },\n                {\n                    \"regionName\": \"Applicant\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"7\"\n                },\n                {\n                    \"regionName\": \"Duplicate\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"5\"\n                },\n                {\n                    \"regionName\": \"Florida\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"8\"\n                },\n                {\n                    \"regionName\": \"Georgia\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"1\"\n                },\n                {\n                    \"regionName\": \"Out of Service Area\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"10\"\n                },\n                {\n                    \"regionName\": \"South Carolina\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"2\"\n                },\n                {\n                    \"regionName\": \"STAFF\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"4\"\n                },\n                {\n                    \"regionName\": \"Tennessee\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"9\"\n                },\n                {\n                    \"regionName\": \"Vendors\",\n                    \"SortOrder\": \"1\",\n                    \"regionId\": \"6\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"getRegions\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.242702\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-03-18T20:23:20\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"10 regionss returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getRegions&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"1.130778\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"10 regionss returned\"\n}"}],"_postman_id":"2f5ef1b7-f0cf-4ab7-b95a-04ce4a9edf00"},{"name":"Specialties Get","id":"487b1584-17f1-4294-af92-485e739d7b27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{  \n            \"reload\": 1\n        }\n    }\n}"},"url":"{{ats-connect}}/job/get/specialties","description":"<p>For retrieving specialties.</p>\n\n<ul>\n<li>api_request_fields - this API does not support field requests</li>\n</ul>\n","urlObject":{"path":["job","get","specialties"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c1a1a5da-8877-447c-9e84-ee6937e21605","name":"Specialties Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{}\n}\n"},"url":"{{ats-connect}}/job/get/specialties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 19:37:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"825"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"37608"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/specialties"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 33,\n            \"specialties\": [\n                {\n                    \"specId\": \"40\",\n                    \"specName\": \"Behavioral Health\"\n                },\n                {\n                    \"specId\": \"54\",\n                    \"specName\": \"Contract\"\n                },\n                {\n                    \"specId\": \"8\",\n                    \"specName\": \"Correctional\"\n                },\n                {\n                    \"specId\": \"16\",\n                    \"specName\": \"Clinic\"\n                },\n                {\n                    \"specId\": \"21\",\n                    \"specName\": \"cancel\"\n                },\n                {\n                    \"specId\": \"11\",\n                    \"specName\": \"Crisis Stabilization\"\n                },\n                {\n                    \"specId\": \"3\",\n                    \"specName\": \"LTC\"\n                },\n                {\n                    \"specId\": \"2\",\n                    \"specName\": \"LTAC\"\n                },\n                {\n                    \"specId\": \"5\",\n                    \"specName\": \"ER\"\n                },\n                {\n                    \"specId\": \"53\",\n                    \"specName\": \"Crisis\"\n                },\n                {\n                    \"specId\": \"4\",\n                    \"specName\": \"Med Surg\"\n                },\n                {\n                    \"specId\": \"34\",\n                    \"specName\": \"Occupational Healthcare\"\n                },\n                {\n                    \"specId\": \"56\",\n                    \"specName\": \"Wound Care\"\n                },\n                {\n                    \"specId\": \"33\",\n                    \"specName\": \"bilingual spanish\"\n                },\n                {\n                    \"specId\": \"43\",\n                    \"specName\": \"Charge\"\n                },\n                {\n                    \"specId\": \"39\",\n                    \"specName\": \"OBS\"\n                },\n                {\n                    \"specId\": \"7\",\n                    \"specName\": \"Orientation\"\n                },\n                {\n                    \"specId\": \"44\",\n                    \"specName\": \"Sitter\"\n                },\n                {\n                    \"specId\": \"50\",\n                    \"specName\": \"Staffing Coordinator\"\n                },\n                {\n                    \"specId\": \"51\",\n                    \"specName\": \"Administrative Assistant\"\n                },\n                {\n                    \"specId\": \"57\",\n                    \"specName\": \"Recruiting Specialist\"\n                },\n                {\n                    \"specId\": \"20\",\n                    \"specName\": \"Bonus\"\n                },\n                {\n                    \"specId\": \"58\",\n                    \"specName\": \"Operations Manager\"\n                },\n                {\n                    \"specId\": \"59\",\n                    \"specName\": \"Payroll Specialist\"\n                },\n                {\n                    \"specId\": \"60\",\n                    \"specName\": \"Division Manager\"\n                },\n                {\n                    \"specId\": \"17\",\n                    \"specName\": \"Staff\"\n                },\n                {\n                    \"specId\": \"61\",\n                    \"specName\": \"Admissions\"\n                },\n                {\n                    \"specId\": \"62\",\n                    \"specName\": \"PayCorrect\"\n                },\n                {\n                    \"specId\": \"63\",\n                    \"specName\": \"Travel\"\n                },\n                {\n                    \"specId\": \"64\",\n                    \"specName\": \"Direct Hire\"\n                },\n                {\n                    \"specId\": \"65\",\n                    \"specName\": \"Vice President\"\n                },\n                {\n                    \"specId\": \"66\",\n                    \"specName\": \"Operations Support Specialist\"\n                },\n                {\n                    \"specId\": \"67\",\n                    \"specName\": \"Unit Manager\"\n                }\n            ],\n            \"expires\": 1710877051\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"getSpecs\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.1431\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-03-18T19:37:36\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"33 specialtiess returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getSpecs&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"5.525609\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"33 specialtiess returned\"\n}"}],"_postman_id":"487b1584-17f1-4294-af92-485e739d7b27"},{"name":"Certifications Get","id":"649c7f09-0e2d-4970-ad26-fe9fd84e2d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{ \n            \"reload\": 1\n        }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/certifications","description":"<p>For retrieving certifications.</p>\n\n<ul>\n<li>api_request_fields - this API does not support field requests</li>\n</ul>\n","urlObject":{"path":["job","get","certifications"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"aa6f5c48-09ad-4de7-8216-87f7b7b30744","name":"Certifications Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_site_name\":\"{{api_site_name}}\",\n                            \"api_cluster_prefix\":\"{{api_cluster_prefix}}\"\n                            },\n                \"vendor\":\"apihealthcare\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n}\n"},"url":"{{ats-connect}}/job/get/certifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Mar 2024 20:23:34 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"748"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"85680"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/certifications"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 18,\n            \"certifications\": [\n                {\n                    \"certSortOrder\": \"1\",\n                    \"certName\": \"RN\",\n                    \"certId\": \"1\"\n                },\n                {\n                    \"certSortOrder\": \"2\",\n                    \"certName\": \"LPN\",\n                    \"certId\": \"2\"\n                },\n                {\n                    \"certSortOrder\": \"3\",\n                    \"certName\": \"Medication Tech\",\n                    \"certId\": \"28\"\n                },\n                {\n                    \"certSortOrder\": \"4\",\n                    \"certName\": \"CNA\",\n                    \"certId\": \"3\"\n                },\n                {\n                    \"certSortOrder\": \"5\",\n                    \"certName\": \"Staff\",\n                    \"certId\": \"7\"\n                },\n                {\n                    \"certSortOrder\": \"6\",\n                    \"certName\": \"Nurse Practitioner\",\n                    \"certId\": \"27\"\n                },\n                {\n                    \"certSortOrder\": \"7\",\n                    \"certName\": \"MA\",\n                    \"certId\": \"4\"\n                },\n                {\n                    \"certSortOrder\": \"8\",\n                    \"certName\": \"Certified Med Assist\",\n                    \"certId\": \"15\"\n                },\n                {\n                    \"certSortOrder\": \"9\",\n                    \"certName\": \"Phlebotomist\",\n                    \"certId\": \"6\"\n                },\n                {\n                    \"certSortOrder\": \"10\",\n                    \"certName\": \"Resident Care Assistant\",\n                    \"certId\": \"29\"\n                },\n                {\n                    \"certSortOrder\": \"11\",\n                    \"certName\": \"Physician Assistant\",\n                    \"certId\": \"30\"\n                },\n                {\n                    \"certSortOrder\": \"12\",\n                    \"certName\": \"Health Services Technician\",\n                    \"certId\": \"32\"\n                },\n                {\n                    \"certSortOrder\": \"13\",\n                    \"certName\": \"Nursing Home Administrator\",\n                    \"certId\": \"33\"\n                },\n                {\n                    \"certSortOrder\": \"14\",\n                    \"certName\": \"ALC Administrator\",\n                    \"certId\": \"34\"\n                },\n                {\n                    \"certSortOrder\": \"15\",\n                    \"certName\": \"Patient care tech\",\n                    \"certId\": \"13\"\n                },\n                {\n                    \"certSortOrder\": \"16\",\n                    \"certName\": \"Home Health Aide\",\n                    \"certId\": \"35\"\n                },\n                {\n                    \"certSortOrder\": \"17\",\n                    \"certName\": \"Certified Professional Biller\",\n                    \"certId\": \"36\"\n                },\n                {\n                    \"certSortOrder\": \"18\",\n                    \"certName\": \"Certified Professional Coder\",\n                    \"certId\": \"37\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"getCerts\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.12765\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-03-18T20:23:35\",\n            \"APIKEY\": \"bostempinchaley.marketing\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"apihealthcare\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"18 certificationss returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://ctms.contingenttalentmanagement.com/bostempinc/clearConnect/2_0/index.cfm?action=getCerts&resultType=json\"\n        },\n        \"vendor\": \"apihealthcare\",\n        \"elapsed\": \"1.150735\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"18 certificationss returned\"\n}"}],"_postman_id":"649c7f09-0e2d-4970-ad26-fe9fd84e2d46"}],"id":"8c3f1448-714e-44ab-9bbc-b5198d6b4047","_postman_id":"8c3f1448-714e-44ab-9bbc-b5198d6b4047","description":""}],"id":"11273a41-fe07-4337-ab98-72c0299b9318","event":[{"listen":"prerequest","script":{"id":"74f2a564-8e66-4b27-a74e-4c5a60757c51","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"16cd0a53-b5cb-408e-b1d3-cb7fd3926786","type":"text/javascript","exec":[""]}}],"_postman_id":"11273a41-fe07-4337-ab98-72c0299b9318","description":""},{"name":"Akken","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"8b16994a-da33-4934-9339-89fa190948d5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n    }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow for subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_id - Your Avionte BOLD Client ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_secret - Your Avionte BOLD Client Secret - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your Avionte BOLD Web Apply API Key - <b>REQUIRED</b></p>\n</li>\n<li><p>api_site_name - Your Avionte BOLD Tenant ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4c5c55b1-ae70-43b3-984a-12ed3acfb00d","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 17 Sep 2022 00:56:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"901"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7374"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"AKUN\": \"openapi\",\n            \"AKID\": \"5D950FED-0363-4D3D-9EBC-B7D3E4A44A28\",\n            \"AKBaseApiUrl\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/\",\n            \"AKAccessToken\": \"xxxxxxxxxxxxxx\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Auth Code\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.727492\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-09-17T00:56:46\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"password\\\",\\\"Password\\\":\\\"xxxxxxxxxxxxxxxx\\\",\\\"app_grant\\\":\\\"openapi\\\",\\\"Username\\\":\\\"openapi\\\",\\\"APIKey\\\":\\\"xxxxxxxxxxxxxxxx\\\"}\",\n            \"call\": \"https://openauth.akken.com/authenticate\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.77291\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"8b16994a-da33-4934-9339-89fa190948d5"}],"id":"8a380121-275f-46ac-a9ba-de06ea39939e","_postman_id":"8a380121-275f-46ac-a9ba-de06ea39939e","description":""},{"name":"Application","item":[{"name":"Application Set","id":"138e4582-e18e-443f-9983-e40b0cfaf33f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": \"con146\"},\r\n    \t\"job\":{\"id\": 2}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>job -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>date_applied - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<p>acceptable formats for date_applied are below:</p>\n<p>\"Wed, 09 Feb 1994 22:23:32 GMT\" -- HTTP format<br />\"Thu Feb 3 17:03:55 GMT 1994\" -- ctime(3) format<br />\"Thu Feb 3 00:00:00 1994\", -- ANSI C asctime() format<br />\"Tuesday, 08-Feb-94 14:15:29 GMT\" -- old rfc850 HTTP format<br />\"Tuesday, 08-Feb-1994 14:15:29 GMT\" -- broken rfc850 HTTP format</p>\n<p>\"03/Feb/1994:17:03:55 -0700\" -- common logfile format<br />\"09 Feb 1994 22:23:32 GMT\" -- HTTP format (no weekday)<br />\"08-Feb-94 14:15:29 GMT\" -- rfc850 format (no weekday)<br />\"08-Feb-1994 14:15:29 GMT\" -- broken rfc850 format (no weekday)</p>\n<p>\"1994-02-03 14:15:29 -0100\" -- ISO 8601 format<br />\"1994-02-03 14:15:29\" -- zone is optional<br />\"1994-02-03\" -- only date<br />\"1994-02-03T14:15:29\" -- Use T as separator<br />\"19940203T141529Z\" -- ISO 8601 compact format<br />\"19940203\" -- only date</p>\n<p>\"08-Feb-94\" -- old rfc850 HTTP format (no weekday, no time)<br />\"08-Feb-1994\" -- broken rfc850 HTTP format (no weekday, no time)<br />\"09 Feb 1994\" -- proposed new HTTP format (no weekday, no time)<br />\"03/Feb/1994\" -- common logfile format (no time, no offset)</p>\n<p>\"Feb 3 1994\" -- Unix 'ls -l' format<br />\"Feb 3 17:03\" -- Unix 'ls -l' format</p>\n<p>\"11-15-96 03:52PM\" -- Windows 'dir' format</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\":{\"id\": \"con146\"},\n        \"job\":{\"id\": 2},\n        \"date_applied\": \"1994-02-03 12:12:12\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"39f02c77-259e-4bde-b081-ad9743143918","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": \"cand303\"},\r\n    \t\"job\":{\"id\": 3}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 18:19:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"862"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7331"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"username\": \"cand303\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application CRM SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.173887\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-03-02T18:19:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"req_id\\\":3,\\\"applied_date\\\":\\\"2023-03-02T18:19:27\\\",\\\"candidate_id\\\":\\\"303\\\",\\\"username\\\":\\\"cand303\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateAppliedJobs/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.254714\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"138e4582-e18e-443f-9983-e40b0cfaf33f"},{"name":"Application Get","id":"69e1a664-fd9a-4b80-8696-5e0c675e23ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"con146\"\r\n        }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<ul>\n<li>candidate -&gt; ID - <b>REQUIRED</b></li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": \"con146\"\n        }\n    }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5750cd77-fd78-4435-ac70-91d049611680","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"cand303\"\r\n        }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 18:19:57 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"881"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"951368"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"application\": [\n                {\n                    \"date_applied\": \"2023-03-02\",\n                    \"id\": \"cand303\",\n                    \"job\": \"3\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application CRM GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.057425\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-02T18:19:58\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 application returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateAppliedJobs/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=username eq 'cand303'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.147211\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 application returned\"\n}"}],"_postman_id":"69e1a664-fd9a-4b80-8696-5e0c675e23ae"},{"name":"Application Get By ID","id":"5b4d6082-9865-49c5-b9e1-9cca04d175f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 12414\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cea1b552-5bda-41a6-bd35-087ac3c2cc93","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 12414\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 18:20:17 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"508"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7334"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET by ID\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-03-02T18:20:17\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-03-02T18:20:18\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"akken\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"password\\\",\\\"Password\\\":\\\"xxxxxxxxxxxxxxxx\\\",\\\"app_grant\\\":\\\"openapi\\\",\\\"Username\\\":\\\"openapi\\\",\\\"APIKey\\\":\\\"xxxxxxxxxxxxxxxx\\\"}\",\n            \"call\": \"https://openauth.akken.com/authenticate\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"0.839282\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"5b4d6082-9865-49c5-b9e1-9cca04d175f1"}],"id":"cb3809fb-492b-426c-81be-43959ef01d96","event":[{"listen":"prerequest","script":{"id":"bc2d179e-b3c5-4c4a-9ad5-ff3a412acf05","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"82e9c854-097b-45f2-bf91-41748656bb1a","type":"text/javascript","exec":[""]}}],"_postman_id":"cb3809fb-492b-426c-81be-43959ef01d96","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"b986f7b8-6701-4982-ad22-7215ea33f9a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 0,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li><p>id - <strong>OPTIONAL</strong> - candidate ID</p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong> - candidate email</p>\n</li>\n</ul>\n<p>id or email is <strong>REQUIRED</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"con146\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c20be8ff-4940-465d-b667-aa2254822d53","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 0,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Oct 2024 16:42:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"84199"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1542216"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1773,\n            \"count\": 1773,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"con1\",\n                    \"cell_phone\": \"---\",\n                    \"last_name\": \"Jonas\",\n                    \"sno\": \"2\",\n                    \"email\": \"email@email.com\",\n                    \"date_added\": \"2008-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bedford\",\n                        \"zip\": \"01730\",\n                        \"address1\": \"45 Hartford Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Electronics\",\n                    \"id\": \"con1\",\n                    \"first_name\": \"Samantha\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"con2\",\n                    \"cell_phone\": \"---\",\n                    \"last_name\": \"WRIGHT\",\n                    \"sno\": \"4\",\n                    \"email\": \"cwright@email.com\",\n                    \"date_added\": \"2008-07-22\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Portsmouth\",\n                        \"zip\": \"\",\n                        \"address1\": \"Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"cindi Wright\",\n                    \"id\": \"con2\",\n                    \"first_name\": \"CINDI\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"con3\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"last_name\": \"Enos\",\n                    \"sno\": \"6\",\n                    \"email\": \"ajenos@yahoo.com\",\n                    \"date_added\": \"2008-07-23\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Concord\",\n                        \"zip\": \"22004\",\n                        \"address1\": \"9 Capital Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"legal secy\",\n                    \"id\": \"con3\",\n                    \"first_name\": \"Jennifer\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"con4\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"last_name\": \"Monohan\",\n                    \"sno\": \"8\",\n                    \"email\": \"Mmonoham@yahoo.com\",\n                    \"date_added\": \"2008-07-23\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Albany\",\n                        \"zip\": \"30339\",\n                        \"address1\": \"45 Lax Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"shipping and receiving\",\n                    \"id\": \"con4\",\n                    \"first_name\": \"Mark\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"555-555-1234\",\n                    \"username\": \"con5\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"last_name\": \"Anderson\",\n                    \"sno\": \"9\",\n                    \"email\": \"atianderson@gmail.com\",\n                    \"date_added\": \"2008-07-24\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Clinton\",\n                        \"zip\": \"30339\",\n                        \"address1\": \"55 Second Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"executive assistant\",\n                    \"id\": \"con5\",\n                    \"first_name\": \"Tracy\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con6\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"10\",\n                    \"email\": \"swilliams@email.com\",\n                    \"date_added\": \"2008-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con6\",\n                    \"title\": \"Sarah williams\",\n                    \"first_name\": \"Another\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con7\",\n                    \"last_name\": \"Test III\",\n                    \"sno\": \"12\",\n                    \"email\": \"rjones@my.com\",\n                    \"date_added\": \"2008-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con7\",\n                    \"title\": \"Customer Service\",\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app9\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Pitcher\",\n                    \"sno\": \"14\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app9\",\n                    \"first_name\": \"Brandon\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app10\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Bertrand\",\n                    \"sno\": \"15\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app10\",\n                    \"first_name\": \"Jennipher\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app11\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Comeau\",\n                    \"sno\": \"16\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app11\",\n                    \"first_name\": \"Melissa\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app12\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Bryant\",\n                    \"sno\": \"17\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app12\",\n                    \"first_name\": \"Gary\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app13\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Lyle\",\n                    \"sno\": \"18\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app13\",\n                    \"first_name\": \"Carol\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app14\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Clouart\",\n                    \"sno\": \"19\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app14\",\n                    \"first_name\": \"Carol\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app15\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Lyle\",\n                    \"sno\": \"20\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"Lyle\",\n                    \"id\": \"app15\",\n                    \"first_name\": \"Carol\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"con8\",\n                    \"cell_phone\": \"---\",\n                    \"last_name\": \"SMITH\",\n                    \"sno\": \"28\",\n                    \"email\": \"jsmith@gmail.com\",\n                    \"date_added\": \"2008-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newburyport\",\n                        \"zip\": \"01870\",\n                        \"address1\": \"4 Central Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Computer Specialist\",\n                    \"id\": \"con8\",\n                    \"first_name\": \"JOSEPH\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app18\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Bartlett\",\n                    \"sno\": \"29\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app18\",\n                    \"first_name\": \"Karen\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app19\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"Campbell\",\n                    \"sno\": \"30\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app19\",\n                    \"first_name\": \"Lisa\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"---\",\n                    \"username\": \"app20\",\n                    \"cell_phone\": \"--\",\n                    \"last_name\": \"O'Connell\",\n                    \"sno\": \"31\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app20\",\n                    \"first_name\": \"Jess\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con9\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"sno\": \"32\",\n                    \"email\": \"testingemployeemail@gmail.com\",\n                    \"date_added\": \"2024-09-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rochester\",\n                        \"zip\": \"03967\",\n                        \"address1\": \"288 Blackwater Rd.\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Lyle\",\n                    \"id\": \"con9\",\n                    \"first_name\": \"Carol\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"781-890-3456\",\n                    \"username\": \"con11\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Irwin\",\n                    \"sno\": \"34\",\n                    \"email\": \"tirwin@yahoo.net\",\n                    \"date_added\": \"2008-08-25\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lexington\",\n                        \"zip\": \"01830\",\n                        \"address1\": \"45 Hume Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Clerk\",\n                    \"id\": \"con11\",\n                    \"first_name\": \"Tracey\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"-215-445555\",\n                    \"username\": \"con12\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"WILLIAMS\",\n                    \"sno\": \"36\",\n                    \"email\": \"swilliams@email.com\",\n                    \"date_added\": \"2008-08-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dover\",\n                        \"zip\": \"03820\",\n                        \"address1\": \"One Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Sarah williams\",\n                    \"id\": \"con12\",\n                    \"first_name\": \"SARAH\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app23\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Gonsalves\",\n                    \"sno\": \"37\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app23\",\n                    \"first_name\": \"Jimmy\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"214-980-4433\",\n                    \"username\": \"con13\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"James\",\n                    \"sno\": \"39\",\n                    \"email\": \"kjames@gmail.net\",\n                    \"date_added\": \"2008-09-10\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Springfield\",\n                        \"zip\": \"22150\",\n                        \"address1\": \"400 Craig Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"system analyst\",\n                    \"id\": \"con13\",\n                    \"first_name\": \"Kyle\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"555-555-1234\",\n                    \"username\": \"con14\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"last_name\": \"Ansil\",\n                    \"sno\": \"41\",\n                    \"email\": \"gansil99@yahoo.com\",\n                    \"date_added\": \"2008-09-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Billerica\",\n                        \"zip\": \"01730\",\n                        \"address1\": \"45 Concord Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Network Administrator\",\n                    \"id\": \"con14\",\n                    \"first_name\": \"Glenn\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app26\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Madison\",\n                    \"sno\": \"42\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app26\",\n                    \"first_name\": \"Sue\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"603-890-9834\",\n                    \"username\": \"con15\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Salise\",\n                    \"sno\": \"44\",\n                    \"email\": \"jsalis@yahoo.net\",\n                    \"date_added\": \"2008-09-19\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Portsmouth\",\n                        \"zip\": \"03801\",\n                        \"address1\": \"2 Adams St\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Management resume\",\n                    \"id\": \"con15\",\n                    \"first_name\": \"Johanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+98 939 999 999\",\n                    \"username\": \"con16\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Vempkani\",\n                    \"sno\": \"46\",\n                    \"email\": \"\",\n                    \"date_added\": \"2008-11-20\",\n                    \"address\": {\n                        \"country\": \"India\",\n                        \"city\": \"Bangalore\",\n                        \"zip\": \"\",\n                        \"address1\": \"23 India St.\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con16\",\n                    \"first_name\": \"Raj\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app29\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nayak\",\n                    \"sno\": \"49\",\n                    \"email\": \"ram@akkentech.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"Ram\",\n                    \"id\": \"app29\",\n                    \"first_name\": \"Ram\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"555-2155\",\n                    \"username\": \"con10\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Bertrand\",\n                    \"sno\": \"53\",\n                    \"email\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"rochester\",\n                        \"zip\": \"03867\",\n                        \"address1\": \"189 Washington St\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Clerical\",\n                    \"id\": \"con10\",\n                    \"first_name\": \"Jennipher\"\n                },\n                {\n                    \"referral_source\": \"Tim  Quirk\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con18\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Quick\",\n                    \"sno\": \"54\",\n                    \"email\": \"\",\n                    \"date_added\": \"2009-11-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con18\",\n                    \"first_name\": \"Tim\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"617-469-2269\",\n                    \"username\": \"con17\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Seltzer\",\n                    \"sno\": \"55\",\n                    \"email\": \"seltzer@samizdat.com\",\n                    \"date_added\": \"2008-11-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"West Roxbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"33 Gould Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Executive Assistant\",\n                    \"id\": \"con17\",\n                    \"first_name\": \"Barbara\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"214-980-4433\",\n                    \"username\": \"con19\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"James\",\n                    \"sno\": \"56\",\n                    \"email\": \"kjames@gmail.net\",\n                    \"date_added\": \"2010-01-13\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Springfield\",\n                        \"zip\": \"22150\",\n                        \"address1\": \"400 Craig Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"System Analyst\",\n                    \"id\": \"con19\",\n                    \"first_name\": \"Kyle\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"788-999-9930\",\n                    \"username\": \"con20\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Long\",\n                    \"sno\": \"57\",\n                    \"email\": \"sethlong@aol1.com\",\n                    \"date_added\": \"2010-03-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"1178 E End Dr\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"Electronics Technician\",\n                    \"id\": \"con20\",\n                    \"first_name\": \"Seth\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"603-555-1212\",\n                    \"username\": \"con21\",\n                    \"cell_phone\": \"603-987-8765\",\n                    \"last_name\": \"Paquette\",\n                    \"sno\": \"58\",\n                    \"email\": \"jpaquette@yahoo.com\",\n                    \"date_added\": \"2013-08-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03060\",\n                        \"address1\": \"345 Elm Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Sales Director\",\n                    \"id\": \"con21\",\n                    \"first_name\": \"Jeff\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"978-786-5742\",\n                    \"username\": \"con22\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Fournier\",\n                    \"sno\": \"59\",\n                    \"email\": \"fournierscott31@hotmail.com\",\n                    \"date_added\": \"2013-08-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pepperell\",\n                        \"zip\": \"01463\",\n                        \"address1\": \"131 Plainfield Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Sales\",\n                    \"id\": \"con22\",\n                    \"first_name\": \"Scott\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"6037387166\",\n                    \"username\": \"app36\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Vempati\",\n                    \"sno\": \"60\",\n                    \"email\": \"rc.vempati@gmail.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"NASHUA\",\n                        \"zip\": \"03062\",\n                        \"address1\": \"3 KATIE LN\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app36\",\n                    \"first_name\": \"Ramesh\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app37\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"61\",\n                    \"email\": \"\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app37\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con39\",\n                    \"last_name\": \"Testing Again\",\n                    \"sno\": \"62\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con39\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con40\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"63\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con40\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con41\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"64\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con41\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con42\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"65\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con42\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con43\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"66\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con43\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con44\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"67\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con44\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con45\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"68\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con45\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con46\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"69\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con46\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con47\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"70\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con47\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con48\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"71\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-29\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con48\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con49\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"72\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-30\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con49\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con50\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"73\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-30\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con50\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con51\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"74\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-09-30\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con51\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con76\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"75\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con76\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con77\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"76\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con77\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con78\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"77\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con78\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con79\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"78\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con79\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con80\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"79\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con80\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con81\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"80\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con81\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con82\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"81\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con82\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con83\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"82\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con83\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con84\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"83\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con84\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con85\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"84\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con85\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con86\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"85\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con86\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con87\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"86\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con87\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"492\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con90\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"87\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con90\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"493\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con91\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"88\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con91\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"494\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con92\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"89\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con92\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"495\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con93\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"90\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con93\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"496\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con94\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"91\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con94\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"497\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con95\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"92\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con95\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"498\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con96\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"93\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con96\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"499\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con97\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"94\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con97\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"500\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con98\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"95\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con98\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"501\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con99\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"96\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con99\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"502\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con100\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"97\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con100\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"503\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con101\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"98\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con101\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"504\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con102\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"99\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con102\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"505\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con103\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"100\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con103\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"506\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con104\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"101\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con104\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"507\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con105\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"102\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con105\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"508\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con106\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"103\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con106\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"509\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con107\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"104\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con107\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"510\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con108\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"105\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con108\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"511\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con109\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"106\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-11\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con109\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"512\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con110\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"107\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con110\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"513\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con111\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"108\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con111\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"514\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con112\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"109\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con112\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"515\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con113\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"110\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con113\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"516\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con114\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"111\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con114\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"517\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con115\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"112\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con115\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"518\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con116\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"113\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con116\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"519\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con117\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"114\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con117\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"520\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con118\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"115\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con118\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"521\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con119\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"116\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con119\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"522\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con120\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"117\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-12\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con120\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"523\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con121\",\n                    \"last_name\": \"Mufy\",\n                    \"sno\": \"118\",\n                    \"email\": \"mes.mufy@mailinator.com\",\n                    \"date_added\": \"2022-10-13\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con121\",\n                    \"first_name\": \"Mes\"\n                },\n                {\n                    \"referral_source\": \"524\",\n                    \"referral_source_id\": \"0\",\n                    \"username\": \"con122\",\n                    \"last_name\": \"Mufy\",\n                    \"sno\": \"119\",\n                    \"email\": \"meos.mufy@mailinator.com\",\n                    \"date_added\": \"2022-10-14\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"zip\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address1\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"address2\": {\n                            \"m:null\": \"true\"\n                        },\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con122\",\n                    \"first_name\": \"Meos\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con129\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"120\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con129\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con130\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"121\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con130\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con131\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"122\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con131\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con132\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"123\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con132\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con133\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"124\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con133\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con134\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"125\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con134\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con135\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"126\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"id\": \"con135\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con136\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"127\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con136\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con139\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"128\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con139\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con140\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"129\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con140\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con141\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"130\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con141\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"concon99\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Testing Again\",\n                    \"sno\": \"131\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"concon99\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"concon99\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"132\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"concon99\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con144\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"133\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con144\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con145\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"134\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con145\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con146\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Last\",\n                    \"sno\": \"135\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con146\",\n                    \"first_name\": \"First\"\n                },\n                {\n                    \"referral_source\": \"525\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.930.1234\",\n                    \"username\": \"con147\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"136\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con147\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con148\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"137\",\n                    \"email\": \"new@email.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Albany\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con148\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con149\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Muy\",\n                    \"sno\": \"138\",\n                    \"email\": \"new@email.com\",\n                    \"date_added\": \"2022-10-25\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Albany\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con149\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 503-813-9811\",\n                    \"username\": \"con150\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Abel\",\n                    \"sno\": \"139\",\n                    \"email\": \"bokucanu@mailinator.com\",\n                    \"date_added\": \"2022-12-08\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con150\",\n                    \"first_name\": \"Hannah\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con151\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"140\",\n                    \"email\": \"tshoemaker@haleymarketing.com\",\n                    \"date_added\": \"2022-12-16\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con151\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con152\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"141\",\n                    \"email\": \"tshoemakersignup@haleymarketing.com\",\n                    \"date_added\": \"2022-12-16\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con152\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 929-317-6959\",\n                    \"username\": \"con153\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Flenderson\",\n                    \"sno\": \"142\",\n                    \"email\": \"tflenderson@gmail.com\",\n                    \"date_added\": \"2022-12-16\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Town of Babylon\",\n                        \"zip\": \"11704\",\n                        \"address1\": \"458 Neptune Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con153\",\n                    \"first_name\": \"Toby\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con154\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"143\",\n                    \"email\": \"tshoemaker0119@haleymarketing.com\",\n                    \"date_added\": \"2023-01-19\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con154\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con155\",\n                    \"cell_phone\": \"+1 716-631-8981\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"144\",\n                    \"email\": \"tshoemaker0119-1@haleymarketing.com\",\n                    \"date_added\": \"2023-01-19\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con155\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con156\",\n                    \"cell_phone\": \"+1 716-652-5352\",\n                    \"last_name\": \"Jackson\",\n                    \"sno\": \"145\",\n                    \"email\": \"runuvebuz@mailinator.com\",\n                    \"date_added\": \"2023-02-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cedar Falls\",\n                        \"zip\": \"50613\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con156\",\n                    \"first_name\": \"Zenia\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con157\",\n                    \"cell_phone\": \"+1 716-652-6127\",\n                    \"last_name\": \"Geoffrey\",\n                    \"sno\": \"146\",\n                    \"email\": \"vifu@mailinator.com\",\n                    \"date_added\": \"2023-02-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cedar Falls\",\n                        \"zip\": \"50613\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con157\",\n                    \"first_name\": \"Kasimir\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con158\",\n                    \"cell_phone\": \"+1 716-652-5305\",\n                    \"last_name\": \"Damon\",\n                    \"sno\": \"147\",\n                    \"email\": \"hake@mailinator.com\",\n                    \"date_added\": \"2023-02-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cedar Falls\",\n                        \"zip\": \"50613\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con158\",\n                    \"first_name\": \"Sybill\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con159\",\n                    \"cell_phone\": \"+1 934-436-1466\",\n                    \"last_name\": \"Yen\",\n                    \"sno\": \"148\",\n                    \"email\": \"jyjawe@mailinator.com\",\n                    \"date_added\": \"2023-02-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Henderson\",\n                        \"zip\": \"89011\",\n                        \"address1\": \"828 Canonbury Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NV\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con159\",\n                    \"first_name\": \"Rahim\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con160\",\n                    \"cell_phone\": \"+1 252-652-6328\",\n                    \"last_name\": \"Merrill\",\n                    \"sno\": \"149\",\n                    \"email\": \"piwegu@mailinator.com\",\n                    \"date_added\": \"2023-02-03\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cedar Falls\",\n                        \"zip\": \"50613\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con160\",\n                    \"first_name\": \"Basil\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.931.1234\",\n                    \"username\": \"con161\",\n                    \"cell_phone\": \"898.930.1234\",\n                    \"last_name\": \"Haly\",\n                    \"sno\": \"150\",\n                    \"email\": \"haleyjam@mailinator.com\",\n                    \"date_added\": \"2023-02-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"1021 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This\",\n                    \"id\": \"con161\",\n                    \"first_name\": \"Mes\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.932.1234\",\n                    \"username\": \"con162\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"last_name\": \"Haley\",\n                    \"sno\": \"151\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"date_added\": \"2023-02-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con162\",\n                    \"first_name\": \"Mest\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con163\",\n                    \"cell_phone\": \"+1 888-777-6666\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"152\",\n                    \"email\": \"tshoemaker020623@haleymarketing.com\",\n                    \"date_added\": \"2023-02-06\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con163\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"528\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con164\",\n                    \"cell_phone\": \"+1 888-999-7777\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"153\",\n                    \"email\": \"tshoemaker020623-1@haleymarketing.com\",\n                    \"date_added\": \"2023-02-06\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con164\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Website\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con165\",\n                    \"cell_phone\": \"+1 888-555-7777\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"154\",\n                    \"email\": \"tshoemaker020623-2@haleymarketing.com\",\n                    \"date_added\": \"2023-02-06\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con165\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"529\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con166\",\n                    \"cell_phone\": \"+1 888-555-2222\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"157\",\n                    \"email\": \"tshoemaker020723@haleymarketing.com\",\n                    \"date_added\": \"2023-02-07\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con166\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"168\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con167\",\n                    \"cell_phone\": \"+1 888-222-5555\",\n                    \"last_name\": \"Test1\",\n                    \"sno\": \"158\",\n                    \"email\": \"tshoemaker020723-1@haleymarketing.com\",\n                    \"date_added\": \"2023-02-07\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con167\",\n                    \"first_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con168\",\n                    \"cell_phone\": \"+1 774-239-6681\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"159\",\n                    \"email\": \"mpapandrea@akkencloud.com\",\n                    \"date_added\": \"2023-02-09\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con168\",\n                    \"first_name\": \"Mike\"\n                },\n                {\n                    \"referral_source\": \"168\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con169\",\n                    \"cell_phone\": \"+1 774-239-6681\",\n                    \"last_name\": \"20230210\",\n                    \"sno\": \"160\",\n                    \"email\": \"michelle1@yopmail.com\",\n                    \"date_added\": \"2023-02-10\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Worcester\",\n                        \"zip\": \"01603\",\n                        \"address1\": \"4 Aster Place\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con169\",\n                    \"first_name\": \"Test1\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"879.932.1234\",\n                    \"username\": \"con170\",\n                    \"cell_phone\": \"808.934.1234\",\n                    \"last_name\": \"Hale\",\n                    \"sno\": \"161\",\n                    \"email\": \"haleyjams09@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1029 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con170\",\n                    \"first_name\": \"Mesp\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.932.1234\",\n                    \"username\": \"con171\",\n                    \"cell_phone\": \"818.934.1234\",\n                    \"last_name\": \"Kale\",\n                    \"sno\": \"162\",\n                    \"email\": \"haleyjams01@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1229 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con171\",\n                    \"first_name\": \"Des\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con172\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Kal\",\n                    \"sno\": \"163\",\n                    \"email\": \"haleyjams05@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1219 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con172\",\n                    \"first_name\": \"De\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con173\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Kall\",\n                    \"sno\": \"164\",\n                    \"email\": \"haleyjams09@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1219 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con173\",\n                    \"first_name\": \"Dep\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con174\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Kalo\",\n                    \"sno\": \"165\",\n                    \"email\": \"haleyjams06@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1219 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con174\",\n                    \"first_name\": \"Dew\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con175\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Kalo\",\n                    \"sno\": \"166\",\n                    \"email\": \"haleyjams06@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1219 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con175\",\n                    \"first_name\": \"Dew\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con176\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Kilo\",\n                    \"sno\": \"167\",\n                    \"email\": \"haleyjams5@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1219 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con176\",\n                    \"first_name\": \"Dow\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con177\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Killo\",\n                    \"sno\": \"168\",\n                    \"email\": \"haleyjams50@mailinator.com\",\n                    \"date_added\": \"2023-02-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con177\",\n                    \"first_name\": \"Dom\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1234\",\n                    \"username\": \"con178\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"last_name\": \"Killon\",\n                    \"sno\": \"169\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con178\",\n                    \"first_name\": \"Dome\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"819.930.1244\",\n                    \"username\": \"con179\",\n                    \"cell_phone\": \"818.931.1214\",\n                    \"last_name\": \"Killons\",\n                    \"sno\": \"170\",\n                    \"email\": \"haleyjams541@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1215 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con179\",\n                    \"first_name\": \"Domes\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con180\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kallons\",\n                    \"sno\": \"171\",\n                    \"email\": \"haleyjams544@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con180\",\n                    \"first_name\": \"Demes\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con181\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kallop\",\n                    \"sno\": \"172\",\n                    \"email\": \"haleyjams594@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con181\",\n                    \"first_name\": \"Dema\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con182\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kallom\",\n                    \"sno\": \"173\",\n                    \"email\": \"haleyjams524@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con182\",\n                    \"first_name\": \"Demau\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con183\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kallob\",\n                    \"sno\": \"174\",\n                    \"email\": \"haleyjams528@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con183\",\n                    \"first_name\": \"Demai\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con184\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kalob\",\n                    \"sno\": \"175\",\n                    \"email\": \"haleyjams526@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con184\",\n                    \"first_name\": \"Demac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con185\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Kabob\",\n                    \"sno\": \"176\",\n                    \"email\": \"haleyjams926@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con185\",\n                    \"first_name\": \"Deyac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con186\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Labob\",\n                    \"sno\": \"177\",\n                    \"email\": \"haleyjams326@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con186\",\n                    \"first_name\": \"Dyac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con187\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Larob\",\n                    \"sno\": \"178\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con187\",\n                    \"first_name\": \"Diac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con188\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Larob\",\n                    \"sno\": \"179\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con188\",\n                    \"first_name\": \"Diac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con189\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Larob\",\n                    \"sno\": \"180\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con189\",\n                    \"first_name\": \"Diac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con190\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lanob\",\n                    \"sno\": \"181\",\n                    \"email\": \"haleyjams096@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con190\",\n                    \"first_name\": \"Deac\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con191\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Laiob\",\n                    \"sno\": \"182\",\n                    \"email\": \"haleyjams996@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con191\",\n                    \"first_name\": \"Dekc\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con192\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Layob\",\n                    \"sno\": \"183\",\n                    \"email\": \"haleyams996@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con192\",\n                    \"first_name\": \"Dukc\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con193\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Layom\",\n                    \"sno\": \"184\",\n                    \"email\": \"haleyams906@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con193\",\n                    \"first_name\": \"Duck\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con194\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Layoms\",\n                    \"sno\": \"185\",\n                    \"email\": \"haleyams506@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con194\",\n                    \"first_name\": \"Ducks\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con195\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyoms\",\n                    \"sno\": \"186\",\n                    \"email\": \"haleyams536@mailinator.com\",\n                    \"date_added\": \"2023-02-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con195\",\n                    \"first_name\": \"Dcks\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con196\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyems\",\n                    \"sno\": \"187\",\n                    \"email\": \"haleyams586@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con196\",\n                    \"first_name\": \"Dwcks\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con197\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyems\",\n                    \"sno\": \"188\",\n                    \"email\": \"haleyams586@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con197\",\n                    \"first_name\": \"Dwcks\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con198\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyem\",\n                    \"sno\": \"189\",\n                    \"email\": \"haleyams086@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con198\",\n                    \"first_name\": \"Dwck\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con199\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lye\",\n                    \"sno\": \"190\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con199\",\n                    \"first_name\": \"Dwc\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con200\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lye\",\n                    \"sno\": \"191\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con200\",\n                    \"first_name\": \"Dwc\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con201\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lye\",\n                    \"sno\": \"192\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con201\",\n                    \"first_name\": \"Dwc\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con202\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ly\",\n                    \"sno\": \"193\",\n                    \"email\": \"haleyams796@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con202\",\n                    \"first_name\": \"Dw\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con203\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyu\",\n                    \"sno\": \"194\",\n                    \"email\": \"haleyams7906@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con203\",\n                    \"first_name\": \"Dwl\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con204\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyui\",\n                    \"sno\": \"195\",\n                    \"email\": \"haleyams7916@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con204\",\n                    \"first_name\": \"Dwlm\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con205\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyuw\",\n                    \"sno\": \"196\",\n                    \"email\": \"haleyams7996@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con205\",\n                    \"first_name\": \"Dwlr\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con206\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyut\",\n                    \"sno\": \"197\",\n                    \"email\": \"haleyams7998@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con206\",\n                    \"first_name\": \"Dwir\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"849.930.1244\",\n                    \"username\": \"con207\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Lyut\",\n                    \"sno\": \"198\",\n                    \"email\": \"haleyams7998@mailinator.com\",\n                    \"date_added\": \"2023-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con207\",\n                    \"first_name\": \"Dwir\"\n                },\n                {\n                    \"referral_source\": \"529\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con208\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"199\",\n                    \"email\": \"tshoemaker0224@haleymarketing.com\",\n                    \"date_added\": \"2023-02-24\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con208\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con209\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Last\",\n                    \"sno\": \"200\",\n                    \"email\": \"haleyams7198@mailinator.com\",\n                    \"date_added\": \"2023-02-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con209\",\n                    \"first_name\": \"First\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con210\",\n                    \"cell_phone\": \"+1 888-555-5555\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"201\",\n                    \"email\": \"tshoemaker031623-signup@haleymarketing.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con210\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"526\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con211\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"202\",\n                    \"email\": \"tshoemaker031623@haleymarketing.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con211\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.932.1234\",\n                    \"username\": \"con212\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"last_name\": \"Haley\",\n                    \"sno\": \"203\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con212\",\n                    \"first_name\": \"Mest\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.932.1234\",\n                    \"username\": \"con213\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"last_name\": \"Haley\",\n                    \"sno\": \"204\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con213\",\n                    \"first_name\": \"Mest\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.939.1234\",\n                    \"username\": \"con214\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"last_name\": \"Haley\",\n                    \"sno\": \"205\",\n                    \"email\": \"haleyjams2@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con214\",\n                    \"first_name\": \"Mesi\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con215\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hal\",\n                    \"sno\": \"206\",\n                    \"email\": \"haleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con215\",\n                    \"first_name\": \"Messi\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con216\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hal\",\n                    \"sno\": \"207\",\n                    \"email\": \"haleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con216\",\n                    \"first_name\": \"Messi\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con217\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hal\",\n                    \"sno\": \"208\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con217\",\n                    \"first_name\": \"Jessi\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con218\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"209\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con218\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con219\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"210\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con219\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"889.932.1234\",\n                    \"username\": \"con220\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"last_name\": \"Haley\",\n                    \"sno\": \"211\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"Thiss\",\n                    \"id\": \"con220\",\n                    \"first_name\": \"Mest\"\n                },\n                {\n                    \"referral_source\": \"529\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con221\",\n                    \"cell_phone\": \"+1 507-483-3913\",\n                    \"last_name\": \"Barry\",\n                    \"sno\": \"212\",\n                    \"email\": \"wynic@mailinator.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con221\",\n                    \"first_name\": \"Buffy\"\n                },\n                {\n                    \"referral_source\": \"529\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con222\",\n                    \"cell_phone\": \"+1 904-393-9729\",\n                    \"last_name\": \"Gail\",\n                    \"sno\": \"213\",\n                    \"email\": \"kymomy@mailinator.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con222\",\n                    \"first_name\": \"Petra\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con223\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hal\",\n                    \"sno\": \"214\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con223\",\n                    \"first_name\": \"Jessi\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con224\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Halk\",\n                    \"sno\": \"215\",\n                    \"email\": \"jaleyjams2k2@mailinator.com\",\n                    \"date_added\": \"2023-03-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con224\",\n                    \"first_name\": \"Jessik\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con225\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Ha\",\n                    \"sno\": \"216\",\n                    \"email\": \"jaleyjams2f2@mailinator.com\",\n                    \"date_added\": \"2023-03-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con225\",\n                    \"first_name\": \"Jes\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con226\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Ha\",\n                    \"sno\": \"217\",\n                    \"email\": \"jaleyjams2f2@mailinator.com\",\n                    \"date_added\": \"2023-03-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"That\",\n                    \"id\": \"con226\",\n                    \"first_name\": \"Jes\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con227\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hasf\",\n                    \"sno\": \"218\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats\",\n                    \"id\": \"con227\",\n                    \"first_name\": \"Hess\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.1234\",\n                    \"username\": \"con228\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"last_name\": \"Hasf\",\n                    \"sno\": \"219\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats\",\n                    \"id\": \"con228\",\n                    \"first_name\": \"Hess\"\n                },\n                {\n                    \"referral_source\": \"531\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con229\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Hasem\",\n                    \"sno\": \"220\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"date_added\": \"2023-03-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con229\",\n                    \"first_name\": \"Hester\"\n                },\n                {\n                    \"referral_source\": \"527\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con230\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"221\",\n                    \"email\": \"tshoemaker032323@haleymarketing.com\",\n                    \"date_added\": \"2023-03-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con230\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"172\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con231\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"McGuire\",\n                    \"sno\": \"222\",\n                    \"email\": \"tshoemaker032323-1@haleymarketing.com\",\n                    \"date_added\": \"2023-03-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con231\",\n                    \"first_name\": \"Toby\"\n                },\n                {\n                    \"referral_source\": \"172\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 716-631-8981\",\n                    \"username\": \"con232\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"224\",\n                    \"email\": \"tshoemaker032323-2@haleymarketing.com\",\n                    \"date_added\": \"2023-03-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con232\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"172\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 928-261-9048\",\n                    \"username\": \"con233\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hunter\",\n                    \"sno\": \"225\",\n                    \"email\": \"sukuzykem@mailinator.com\",\n                    \"date_added\": \"2023-03-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Riverside\",\n                        \"zip\": \"87533\",\n                        \"address1\": \"NM Office Supplies\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con233\",\n                    \"first_name\": \"Kelly\"\n                },\n                {\n                    \"referral_source\": \"172\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 386-819-9489\",\n                    \"username\": \"con234\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Summers\",\n                    \"sno\": \"226\",\n                    \"email\": \"nejehevyx@mailinator.com\",\n                    \"date_added\": \"2023-03-25\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con234\",\n                    \"first_name\": \"Aaron\"\n                },\n                {\n                    \"referral_source\": \"172\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 947-322-8522\",\n                    \"username\": \"con235\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"May\",\n                    \"sno\": \"227\",\n                    \"email\": \"cojumu@mailinator.com\",\n                    \"date_added\": \"2023-03-25\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con235\",\n                    \"first_name\": \"Stewart\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"545\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con244\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseafafas\",\n                    \"sno\": \"228\",\n                    \"email\": \"jaleyjams123311iii1@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con244\",\n                    \"first_name\": \"Hestersssa\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"539\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con251\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseafaf\",\n                    \"sno\": \"229\",\n                    \"email\": \"jaleyjams123311imkk@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con251\",\n                    \"first_name\": \"Hesterso\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"539\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con252\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseafaf\",\n                    \"sno\": \"230\",\n                    \"email\": \"jaleyjams123311imkk@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con252\",\n                    \"first_name\": \"Hesterso\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"539\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con253\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseafaf\",\n                    \"sno\": \"231\",\n                    \"email\": \"jaleyjams123311imkk@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con253\",\n                    \"first_name\": \"Hesterso\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"539\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con254\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseafaf\",\n                    \"sno\": \"232\",\n                    \"email\": \"jaleyjams121imkk@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con254\",\n                    \"first_name\": \"Hesterso\"\n                },\n                {\n                    \"referral_source\": \"social plotter\",\n                    \"referral_source_id\": \"539\",\n                    \"phone\": \"989.939.3234\",\n                    \"username\": \"con255\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Priseaff\",\n                    \"sno\": \"233\",\n                    \"email\": \"jaleyjam00921imkk@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con255\",\n                    \"first_name\": \"Hestso\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 325-782-5341\",\n                    \"username\": \"con256\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Pascale\",\n                    \"sno\": \"234\",\n                    \"email\": \"fisatojik@mailinator.com\",\n                    \"date_added\": \"2023-03-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con256\",\n                    \"first_name\": \"Carolyn\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 307-208-1053\",\n                    \"username\": \"con258\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Knox\",\n                    \"sno\": \"235\",\n                    \"email\": \"rewyjo@mailinator.com\",\n                    \"date_added\": \"2023-03-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con258\",\n                    \"first_name\": \"Leigh\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con259\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"236\",\n                    \"email\": \"tshoemaker032923@haleymarketing.com\",\n                    \"date_added\": \"2023-03-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con259\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con260\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"237\",\n                    \"email\": \"tshoemaker032923-1@haleymarketing.com\",\n                    \"date_added\": \"2023-03-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con260\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con261\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"238\",\n                    \"email\": \"tshoemaker032923-2@haleymarketing.com\",\n                    \"date_added\": \"2023-03-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con261\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source_id\": \"549\",\n                    \"phone\": \"+1 716-257-1703\",\n                    \"username\": \"con262\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Xavier\",\n                    \"sno\": \"239\",\n                    \"email\": \"rivysuxa@mailinator.com\",\n                    \"date_added\": \"2023-03-30\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con262\",\n                    \"first_name\": \"Margaret\"\n                },\n                {\n                    \"referral_source_id\": \"549\",\n                    \"phone\": \"+1 906-511-6935\",\n                    \"username\": \"con263\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Yetta\",\n                    \"sno\": \"240\",\n                    \"email\": \"mivoziji@mailinator.com\",\n                    \"date_added\": \"2023-03-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nisi ipsa quos sint\",\n                        \"zip\": \"49440\",\n                        \"address1\": \"Qui ut possimus dol\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con263\",\n                    \"first_name\": \"Demetria\"\n                },\n                {\n                    \"referral_source_id\": \"549\",\n                    \"phone\": \"+1 512-208-4724\",\n                    \"username\": \"con264\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Odette\",\n                    \"sno\": \"241\",\n                    \"email\": \"hahy@mailinator.com\",\n                    \"date_added\": \"2023-03-31\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agagag\",\n                        \"zip\": \"12321\",\n                        \"address1\": \"agagag\",\n                        \"address2\": \"\",\n                        \"state\": \"Ohio\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con264\",\n                    \"first_name\": \"Lacota\"\n                },\n                {\n                    \"referral_source_id\": \"549\",\n                    \"phone\": \"+1 587-833-3637\",\n                    \"username\": \"con265\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Edward\",\n                    \"sno\": \"242\",\n                    \"email\": \"hepuf@mailinator.com\",\n                    \"date_added\": \"2023-03-31\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"aggag\",\n                        \"zip\": \"12345\",\n                        \"address1\": \"agaga\",\n                        \"address2\": \"\",\n                        \"state\": \"Ohio\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con265\",\n                    \"first_name\": \"Sierra\"\n                },\n                {\n                    \"referral_source_id\": \"549\",\n                    \"phone\": \"+1 878-266-9436\",\n                    \"username\": \"con266\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nigel\",\n                    \"sno\": \"243\",\n                    \"email\": \"wira@mailinator.com\",\n                    \"date_added\": \"2023-03-31\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Et iure eius vel eni\",\n                        \"zip\": \"20447\",\n                        \"address1\": {\n                            \"content\": \"Eiusmod suscipit ab \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Ohio\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con266\",\n                    \"first_name\": \"Mason\"\n                },\n                {\n                    \"referral_source\": \"Eaque consequatur al\",\n                    \"referral_source_id\": \"551\",\n                    \"phone\": \"+1 903-927-7318\",\n                    \"username\": \"con267\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ryan\",\n                    \"sno\": \"244\",\n                    \"email\": \"citebuho@mailinator.com\",\n                    \"date_added\": \"2023-04-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"atjkhjtk\",\n                        \"zip\": \"11235\",\n                        \"address1\": \"augugh\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con267\",\n                    \"first_name\": \"Lacy\"\n                },\n                {\n                    \"referral_source_id\": \"553\",\n                    \"phone\": \"+1 972-435-9585\",\n                    \"username\": \"con268\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tamekah\",\n                    \"sno\": \"245\",\n                    \"email\": \"nosyxecy@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60637\",\n                        \"address1\": \"255 East 63rd Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con268\",\n                    \"first_name\": \"Vaughan\"\n                },\n                {\n                    \"referral_source_id\": \"553\",\n                    \"phone\": \"+1 539-332-3341\",\n                    \"username\": \"con269\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Paul\",\n                    \"sno\": \"246\",\n                    \"email\": \"gapezom@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fugate\",\n                        \"zip\": \"\",\n                        \"address1\": \"Fugate\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con269\",\n                    \"first_name\": \"Jarrod\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 912-699-3527\",\n                    \"username\": \"con270\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Rhona\",\n                    \"sno\": \"247\",\n                    \"email\": \"rowe@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con270\",\n                    \"first_name\": \"Camden\"\n                },\n                {\n                    \"referral_source\": \"social\",\n                    \"referral_source_id\": \"555\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con271\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Paffa\",\n                    \"sno\": \"248\",\n                    \"email\": \"jaleyam1kk@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con271\",\n                    \"first_name\": \"Hsoa\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 402-217-2805\",\n                    \"username\": \"con272\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Susan\",\n                    \"sno\": \"249\",\n                    \"email\": \"jocytu@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Fe\",\n                        \"zip\": \"87501\",\n                        \"address1\": \"179C Paseo de Peralta\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con272\",\n                    \"first_name\": \"Yuli\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 712-486-8154\",\n                    \"username\": \"con273\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Sara\",\n                    \"sno\": \"250\",\n                    \"email\": \"mojuxasoz@mailinator.com\",\n                    \"date_added\": \"2023-04-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dighton\",\n                        \"zip\": \"\",\n                        \"address1\": \"Dighton, MA\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con273\",\n                    \"first_name\": \"Nash\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con274\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"251\",\n                    \"email\": \"tshoemaker040723@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con274\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"username\": \"con275\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"252\",\n                    \"email\": \"tshoemaker040723-2@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con275\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 888-555-2121\",\n                    \"username\": \"con276\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"253\",\n                    \"email\": \"tshoemaker040723-3@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con276\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con277\",\n                    \"cell_phone\": \"+1 716-631-8981\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"254\",\n                    \"email\": \"tshoemaker040723-5@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con277\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con278\",\n                    \"cell_phone\": \"+1 716-631-8981\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"255\",\n                    \"email\": \"tshoemaker040723-6@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con278\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con279\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"256\",\n                    \"email\": \"tshoemaker040723-8@haleymarketing.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con279\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"who\",\n                    \"referral_source_id\": \"557\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con280\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Paffaa\",\n                    \"sno\": \"257\",\n                    \"email\": \"jaleya11m1kk@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con280\",\n                    \"first_name\": \"Hso1a\"\n                },\n                {\n                    \"referral_source\": \"whose\",\n                    \"referral_source_id\": \"559\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con281\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pafaa\",\n                    \"sno\": \"258\",\n                    \"email\": \"jalea11m1kk@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con281\",\n                    \"first_name\": \"Ho1a\"\n                },\n                {\n                    \"referral_source\": \"whoseor\",\n                    \"referral_source_id\": \"561\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con282\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Paa\",\n                    \"sno\": \"259\",\n                    \"email\": \"jalea11mk@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con282\",\n                    \"first_name\": \"Ho1\"\n                },\n                {\n                    \"referral_source\": \"whoseoro\",\n                    \"referral_source_id\": \"563\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con285\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pk\",\n                    \"sno\": \"260\",\n                    \"email\": \"jale31mk@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con285\",\n                    \"first_name\": \"Ho1\"\n                },\n                {\n                    \"referral_source\": \"whoseorp0\",\n                    \"referral_source_id\": \"565\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con286\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pklj8k\",\n                    \"sno\": \"261\",\n                    \"email\": \"jale319u89hmk@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Thats It\",\n                    \"id\": \"con286\",\n                    \"first_name\": \"Hoihjuij\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con287\",\n                    \"cell_phone\": \"+1 507-248-4531\",\n                    \"last_name\": \"Eric\",\n                    \"sno\": \"262\",\n                    \"email\": \"dyrypod@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"ghfh\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"5577\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con287\",\n                    \"first_name\": \"Alfonso\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con288\",\n                    \"cell_phone\": \"+1 731-699-4432\",\n                    \"last_name\": \"Nerea\",\n                    \"sno\": \"263\",\n                    \"email\": \"cuxodoja@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Qui autem in eveniet\",\n                        \"zip\": \"71103\",\n                        \"address1\": \"Iusto minim omnis ex\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con288\",\n                    \"first_name\": \"Randall\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con289\",\n                    \"cell_phone\": \"+1 717-569-8679\",\n                    \"last_name\": \"Harper\",\n                    \"sno\": \"264\",\n                    \"email\": \"jikyniq@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Iure et deserunt mai\",\n                        \"zip\": \"59776\",\n                        \"address1\": {\n                            \"content\": \"Non sit quia dolor \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con289\",\n                    \"first_name\": \"Joelle\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con290\",\n                    \"cell_phone\": \"+1 585-946-5724\",\n                    \"last_name\": \"Flavia\",\n                    \"sno\": \"265\",\n                    \"email\": \"xaridivaty@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Omnis doloribus quia\",\n                        \"zip\": \"74468\",\n                        \"address1\": \"Voluptate Nam qui ad\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con290\",\n                    \"first_name\": \"Kasper\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con291\",\n                    \"cell_phone\": \"+1 522-303-3455\",\n                    \"last_name\": \"Ina\",\n                    \"sno\": \"266\",\n                    \"email\": \"wuzipa@mailinator.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Sed quisquam labore \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"93413\",\n                        \"address1\": \"Laboriosam omnis et\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con291\",\n                    \"first_name\": \"Declan\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con292\",\n                    \"cell_phone\": \"+1 805-523-1211\",\n                    \"last_name\": \"agag\",\n                    \"sno\": \"267\",\n                    \"email\": \"gag@ho.com\",\n                    \"date_added\": \"2023-04-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ingham Township\",\n                        \"zip\": \"48819\",\n                        \"address1\": \"Ingham Township, MI 48819\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con292\",\n                    \"first_name\": \"jhjk\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con293\",\n                    \"cell_phone\": \"+1 416-891-2407\",\n                    \"last_name\": \"Ross\",\n                    \"sno\": \"268\",\n                    \"email\": \"cehovizu@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"aguhag\",\n                        \"zip\": \"12121\",\n                        \"address1\": \"gahgu\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con293\",\n                    \"first_name\": \"Ori\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con294\",\n                    \"cell_phone\": \"+1 817-894-2802\",\n                    \"last_name\": \"Kevyn\",\n                    \"sno\": \"269\",\n                    \"email\": \"rydyxanat@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkhakgah\",\n                        \"zip\": \"001212\",\n                        \"address1\": \"ahauhkgah\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con294\",\n                    \"first_name\": \"Blythe\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con295\",\n                    \"cell_phone\": \"+1 646-513-9624\",\n                    \"last_name\": \"Jamalia\",\n                    \"sno\": \"270\",\n                    \"email\": \"jarane@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkahgjkag\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agjhajgk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con295\",\n                    \"first_name\": \"Kathleen\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con296\",\n                    \"cell_phone\": \"+1 478-527-5708\",\n                    \"last_name\": \"Yvette\",\n                    \"sno\": \"271\",\n                    \"email\": \"gafady@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nostrum assumenda qu\",\n                        \"zip\": \"88466\",\n                        \"address1\": \"Sit et cumque in ac\",\n                        \"address2\": \"\",\n                        \"state\": \"Veniam magna praese\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con296\",\n                    \"first_name\": \"Aileen\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con297\",\n                    \"cell_phone\": \"+1 458-839-2233\",\n                    \"last_name\": \"Veda\",\n                    \"sno\": \"272\",\n                    \"email\": \"duze@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Doloremque odio eos \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"14386\",\n                        \"address1\": {\n                            \"content\": \"Ex debitis fuga Ut \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Nostrud doloremque o\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con297\",\n                    \"first_name\": \"Ryan\"\n                },\n                {\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"referral_source_id\": \"567\",\n                    \"phone\": \"\",\n                    \"username\": \"con298\",\n                    \"cell_phone\": \"+1 458-839-2233\",\n                    \"last_name\": \"Veda\",\n                    \"sno\": \"273\",\n                    \"email\": \"duzefafa@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Doloremque odio eos \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"14386\",\n                        \"address1\": {\n                            \"content\": \"Ex debitis fuga Ut \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Nostrud doloremque o\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con298\",\n                    \"first_name\": \"Ryan\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con299\",\n                    \"cell_phone\": \"+1 262-691-8918\",\n                    \"last_name\": \"Marvin\",\n                    \"sno\": \"274\",\n                    \"email\": \"qukuhysu@mailinator.com\",\n                    \"date_added\": \"2023-04-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"ajgkhajkg\",\n                        \"zip\": \"12311\",\n                        \"address1\": \"aglaghk\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con299\",\n                    \"first_name\": \"Ralph\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con300\",\n                    \"cell_phone\": \"+1 805-337-9248\",\n                    \"last_name\": \"Melvin\",\n                    \"sno\": \"275\",\n                    \"email\": \"jopyryt@mailinator.com\",\n                    \"date_added\": \"2023-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"gakjhgjka\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agjhajgk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con300\",\n                    \"first_name\": \"Kathleen\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con301\",\n                    \"cell_phone\": \"+1 504-557-8299\",\n                    \"last_name\": \"Dylan\",\n                    \"sno\": \"276\",\n                    \"email\": \"sicunaqity@mailinator.com\",\n                    \"date_added\": \"2023-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ina\",\n                        \"zip\": \"62846\",\n                        \"address1\": \"Ina, IL 62846\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con301\",\n                    \"first_name\": \"Wanda\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"+1 804-472-8097\",\n                    \"username\": \"con302\",\n                    \"cell_phone\": \"+1 804-472-8097\",\n                    \"last_name\": \"Chadwick\",\n                    \"sno\": \"277\",\n                    \"email\": \"saweriraxo@mailinator.com\",\n                    \"date_added\": \"2023-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sitka\",\n                        \"zip\": \"99835\",\n                        \"address1\": \"Sitka\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con302\",\n                    \"first_name\": \"Amena\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"+1 803-627-5218\",\n                    \"username\": \"con303\",\n                    \"cell_phone\": \"+1 803-627-5218\",\n                    \"last_name\": \"Norman\",\n                    \"sno\": \"278\",\n                    \"email\": \"saquto@mailinator.com\",\n                    \"date_added\": \"2023-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Oconto\",\n                        \"zip\": \"54153\",\n                        \"address1\": \"Oconto, WI 54153\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con303\",\n                    \"first_name\": \"Daryl\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con304\",\n                    \"cell_phone\": \"+1 262-709-7078\",\n                    \"last_name\": \"Bert\",\n                    \"sno\": \"279\",\n                    \"email\": \"gola@mailinator.com\",\n                    \"date_added\": \"2023-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sonoma\",\n                        \"zip\": \"95476\",\n                        \"address1\": \"650 2nd Street West\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con304\",\n                    \"first_name\": \"Quinn\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con305\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"280\",\n                    \"email\": \"tshoemaker041323@haleymarketing.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con305\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con306\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"281\",\n                    \"email\": \"tshoemaker041323-1@haleymarketing.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con306\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con307\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"282\",\n                    \"email\": \"tshoemaker041323-signup@haleymarketing.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con307\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con308\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"283\",\n                    \"email\": \"tshoemaker041323-2@haleymarketing.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con308\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con309\",\n                    \"cell_phone\": \"+1 441-326-8307\",\n                    \"last_name\": \"Nicholas\",\n                    \"sno\": \"284\",\n                    \"email\": \"hegozu@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agkhakg\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agfhagk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con309\",\n                    \"first_name\": \"Zenia\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 443-992-6128\",\n                    \"username\": \"con310\",\n                    \"cell_phone\": \"+1 443-992-6128\",\n                    \"last_name\": \"Cheryl\",\n                    \"sno\": \"285\",\n                    \"email\": \"dukajyvyvo@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"gakhkag\",\n                        \"zip\": \"12455\",\n                        \"address1\": \"ghakjgka\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con310\",\n                    \"first_name\": \"Remedios\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 804-563-3909\",\n                    \"username\": \"con311\",\n                    \"cell_phone\": \"+1 804-563-3909\",\n                    \"last_name\": \"Todd\",\n                    \"sno\": \"286\",\n                    \"email\": \"ruvoci@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agkjhkg\",\n                        \"zip\": \"12345\",\n                        \"address1\": \"agjhkg\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con311\",\n                    \"first_name\": \"Alice\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 405-356-8657\",\n                    \"username\": \"con312\",\n                    \"cell_phone\": \"+1 405-356-8657\",\n                    \"last_name\": \"Lila\",\n                    \"sno\": \"287\",\n                    \"email\": \"kigyw@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Voluptatem alias qui\",\n                        \"zip\": \"91116\",\n                        \"address1\": \"Sunt similique conse\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con312\",\n                    \"first_name\": \"Bradley\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con313\",\n                    \"cell_phone\": \"+1 402-358-4789\",\n                    \"last_name\": \"Forrest\",\n                    \"sno\": \"288\",\n                    \"email\": \"gohele@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Id minus tempor dele\",\n                        \"zip\": \"75410\",\n                        \"address1\": \"Animi est cum dicta\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con313\",\n                    \"first_name\": \"Marny\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con314\",\n                    \"cell_phone\": \"+1 502-523-9999\",\n                    \"last_name\": \"agagag\",\n                    \"sno\": \"289\",\n                    \"email\": \"AGAG@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkag\",\n                        \"zip\": \"12345\",\n                        \"address1\": \"agajghk\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con314\",\n                    \"first_name\": \"glakghajg\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con315\",\n                    \"cell_phone\": \"+1 805-835-6761\",\n                    \"last_name\": \"Eve\",\n                    \"sno\": \"290\",\n                    \"email\": \"tuzad@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Absecon\",\n                        \"zip\": \"08201\",\n                        \"address1\": \"Absecon, NJ 08201\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con315\",\n                    \"first_name\": \"Cheyenne\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con316\",\n                    \"cell_phone\": \"+1 812-262-2117\",\n                    \"last_name\": \"Jacob\",\n                    \"sno\": \"291\",\n                    \"email\": \"jozaqy@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"35022\",\n                        \"address1\": \"Dolonah Quarry\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con316\",\n                    \"first_name\": \"Kelsey\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"+1 405-472-2422\",\n                    \"username\": \"con317\",\n                    \"cell_phone\": \"+1 405-472-2422\",\n                    \"last_name\": \"Sonya\",\n                    \"sno\": \"292\",\n                    \"email\": \"doqi@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Clarita\",\n                        \"zip\": \"01387\",\n                        \"address1\": \"Eos Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con317\",\n                    \"first_name\": \"Barclay\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con318\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"last_name\": \"Xena\",\n                    \"sno\": \"293\",\n                    \"email\": \"wogymun@mailinator.com\",\n                    \"date_added\": \"2023-04-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rector\",\n                        \"zip\": \"72461\",\n                        \"address1\": \"Rector, AR 72461\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con318\",\n                    \"first_name\": \"Bernard\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con319\",\n                    \"cell_phone\": \"+1 203-649-1455\",\n                    \"last_name\": \"Sade\",\n                    \"sno\": \"294\",\n                    \"email\": \"widaheh@mailinator.com\",\n                    \"date_added\": \"2023-04-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chester\",\n                        \"zip\": \"19013\",\n                        \"address1\": \"Commodore Barry Bridge\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con319\",\n                    \"first_name\": \"Bethany\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con320\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"last_name\": \"Gannon\",\n                    \"sno\": \"295\",\n                    \"email\": \"masol@mailinator.com\",\n                    \"date_added\": \"2023-04-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"State College\",\n                        \"zip\": \"16803\",\n                        \"address1\": \"385 Science Park Road\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con320\",\n                    \"first_name\": \"Aladdin\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 805-464-6875\",\n                    \"username\": \"con321\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"last_name\": \"Ora\",\n                    \"sno\": \"296\",\n                    \"email\": \"xojypeci@mailinator.com\",\n                    \"date_added\": \"2023-04-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con321\",\n                    \"first_name\": \"Evangeline\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con322\",\n                    \"cell_phone\": \"+1 409-963-3712\",\n                    \"last_name\": \"Kemp\",\n                    \"sno\": \"297\",\n                    \"email\": \"miwivyfiq@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con322\",\n                    \"first_name\": \"Shaine\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con323\",\n                    \"cell_phone\": \"+1 909-471-4896\",\n                    \"last_name\": \"Lambert\",\n                    \"sno\": \"298\",\n                    \"email\": \"madusotu@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con323\",\n                    \"first_name\": \"Jordan\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con324\",\n                    \"cell_phone\": \"+1 571-356-9012\",\n                    \"last_name\": \"Patterson\",\n                    \"sno\": \"299\",\n                    \"email\": \"ficad@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con324\",\n                    \"first_name\": \"Keiko\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con325\",\n                    \"cell_phone\": \"+1 716-512-1988\",\n                    \"last_name\": \"Myra\",\n                    \"sno\": \"300\",\n                    \"email\": \"gonikyqo@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Shoshoni\",\n                        \"zip\": \"82649\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"WY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con325\",\n                    \"first_name\": \"Isabelle\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 716-489-4425\",\n                    \"username\": \"con326\",\n                    \"cell_phone\": \"+1 716-489-4425\",\n                    \"last_name\": \"Cassady\",\n                    \"sno\": \"301\",\n                    \"email\": \"dinop@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Shoshoni\",\n                        \"zip\": \"82649\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"WY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con326\",\n                    \"first_name\": \"Guinevere\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con327\",\n                    \"cell_phone\": \"+1 973-424-2879\",\n                    \"last_name\": \"Wheeler\",\n                    \"sno\": \"302\",\n                    \"email\": \"selu@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con327\",\n                    \"first_name\": \"Harrison\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con328\",\n                    \"cell_phone\": \"+1 806-319-4339\",\n                    \"last_name\": \"Figueroa\",\n                    \"sno\": \"303\",\n                    \"email\": \"bucodevan@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con328\",\n                    \"first_name\": \"Madonna\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con329\",\n                    \"cell_phone\": \"+1 747-914-3389\",\n                    \"last_name\": \"Conner\",\n                    \"sno\": \"304\",\n                    \"email\": \"daze@mailinator.com\",\n                    \"date_added\": \"2023-04-15\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con329\",\n                    \"first_name\": \"Sage\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"+17373866533\",\n                    \"username\": \"con330\",\n                    \"cell_phone\": \"+1 724-909-6894\",\n                    \"last_name\": \"Marsh\",\n                    \"sno\": \"305\",\n                    \"email\": \"qitesezisa@mailinator.com\",\n                    \"date_added\": \"2023-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sparks\",\n                        \"zip\": \"74869\",\n                        \"address1\": \"Quapaw Creek Site 1 Dam\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con330\",\n                    \"first_name\": \"Martena\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con331\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"Shoemaker\",\n                    \"sno\": \"306\",\n                    \"email\": \"tshoemaker041823@haleymarketing.com\",\n                    \"date_added\": \"2023-04-18\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con331\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con332\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"Shoemaker\",\n                    \"sno\": \"307\",\n                    \"email\": \"tshoemaker041823-1@haleymarketing.com\",\n                    \"date_added\": \"2023-04-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con332\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con333\",\n                    \"cell_phone\": \"+1 716-631-5555\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"308\",\n                    \"email\": \"tiffany0419@haleymarketing.com\",\n                    \"date_added\": \"2023-04-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con333\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con334\",\n                    \"cell_phone\": \"+1 716-555-2212\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"309\",\n                    \"email\": \"tiffany0419-1@haleymarketing.com\",\n                    \"date_added\": \"2023-04-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con334\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Open API\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con335\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"agag\",\n                    \"sno\": \"310\",\n                    \"email\": \"\",\n                    \"date_added\": \"2023-04-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con335\",\n                    \"first_name\": \"atgkla\"\n                },\n                {\n                    \"referral_source\": \"whasoseorp0\",\n                    \"referral_source_id\": \"569\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con336\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pklfafj8k\",\n                    \"sno\": \"311\",\n                    \"email\": \"jale3afaf19u89hmk@mailinator.com\",\n                    \"date_added\": \"2023-05-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con336\",\n                    \"first_name\": \"Hoihjffauij\"\n                },\n                {\n                    \"referral_source\": \"whasoseorp0\",\n                    \"referral_source_id\": \"569\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con337\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pklk\",\n                    \"sno\": \"312\",\n                    \"email\": \"jale3afaf10k@mailinator.com\",\n                    \"date_added\": \"2023-05-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con337\",\n                    \"first_name\": \"Hffauij\"\n                },\n                {\n                    \"referral_source\": \"whasoseorp0\",\n                    \"referral_source_id\": \"569\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con338\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pslk\",\n                    \"sno\": \"313\",\n                    \"email\": \"jalaf10k@mailinator.com\",\n                    \"date_added\": \"2023-05-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12313\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con338\",\n                    \"first_name\": \"Affauij\"\n                },\n                {\n                    \"referral_source\": \"whasoseorp0\",\n                    \"referral_source_id\": \"569\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con339\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Polk\",\n                    \"sno\": \"314\",\n                    \"email\": \"jalaf133k@mailinator.com\",\n                    \"date_added\": \"2023-05-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12313\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con339\",\n                    \"first_name\": \"Aauij\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con340\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"315\",\n                    \"email\": \"tshoemaker050223@haleymarketing.com\",\n                    \"date_added\": \"2023-05-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con340\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con341\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"316\",\n                    \"email\": \"tshoemaker050523@haleymarketing.com\",\n                    \"date_added\": \"2023-05-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con341\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con342\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Polk\",\n                    \"sno\": \"317\",\n                    \"email\": \"jslaf133k@mailinator.com\",\n                    \"date_added\": \"2023-05-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con342\",\n                    \"first_name\": \"Aauij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con343\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pelk\",\n                    \"sno\": \"318\",\n                    \"email\": \"jaalaf133k@mailinator.com\",\n                    \"date_added\": \"2023-05-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con343\",\n                    \"first_name\": \"Abuij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con344\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"319\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con344\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con345\",\n                    \"cell_phone\": \"+1 813-651-7023\",\n                    \"last_name\": \"Courtney\",\n                    \"sno\": \"320\",\n                    \"email\": \"kizuhehaz@mailinator.com\",\n                    \"date_added\": \"2023-05-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cedar Hills\",\n                        \"zip\": \"84004\",\n                        \"address1\": \"North La Quinta\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con345\",\n                    \"first_name\": \"Juliet\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con346\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"321\",\n                    \"email\": \"tshoemaker0509@haleymarketing.com\",\n                    \"date_added\": \"2023-05-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con346\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con347\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"322\",\n                    \"email\": \"tshoemaker0509-1@haleymarketing.com\",\n                    \"date_added\": \"2023-05-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con347\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con348\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"323\",\n                    \"email\": \"tshoemaker0509-2@haleymarketing.com\",\n                    \"date_added\": \"2023-05-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con348\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con349\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"324\",\n                    \"email\": \"tshoemaker0510@haleymarketing.com\",\n                    \"date_added\": \"2023-05-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con349\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con350\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"325\",\n                    \"email\": \"tshoemaker0510-1@haleymarketing.com\",\n                    \"date_added\": \"2023-05-10\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con350\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con351\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"326\",\n                    \"email\": \"tshoemaker0510-3@haleymarketing.com\",\n                    \"date_added\": \"2023-05-10\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con351\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con352\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"327\",\n                    \"email\": \"tshoemaker0510-4@haleymarketing.com\",\n                    \"date_added\": \"2023-05-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con352\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con353\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"328\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con353\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con354\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"329\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con354\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con355\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"330\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con355\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con356\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"331\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con356\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con357\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"332\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con357\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con358\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"333\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con358\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con359\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"334\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con359\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con360\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"335\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con360\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con361\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"336\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con361\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con362\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"337\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con362\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"989.139.3234\",\n                    \"username\": \"con363\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"last_name\": \"Pdelk\",\n                    \"sno\": \"338\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"date_added\": \"2023-05-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con363\",\n                    \"first_name\": \"Abusij\"\n                },\n                {\n                    \"referral_source\": \"Employment Application\",\n                    \"referral_source_id\": \"570\",\n                    \"phone\": \"\",\n                    \"username\": \"con364\",\n                    \"cell_phone\": \"+1 364-564-8274\",\n                    \"last_name\": \"Priscilla\",\n                    \"sno\": \"339\",\n                    \"email\": \"tego@mailinator.com\",\n                    \"date_added\": \"2023-05-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con364\",\n                    \"first_name\": \"Lee\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con365\",\n                    \"cell_phone\": \"+1 808-891-2527\",\n                    \"last_name\": \"Perry\",\n                    \"sno\": \"340\",\n                    \"email\": \"vahy@mailinator.com\",\n                    \"date_added\": \"2023-05-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Underhill\",\n                        \"zip\": \"54176\",\n                        \"address1\": \"Underhill, WI 54176\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con365\",\n                    \"first_name\": \"Judith\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con366\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"341\",\n                    \"email\": \"tshoemaker0515@haleymarketing.com\",\n                    \"date_added\": \"2023-05-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con366\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 828-444-9918\",\n                    \"username\": \"con367\",\n                    \"cell_phone\": \"+1 828-444-9918\",\n                    \"last_name\": \"Athena\",\n                    \"sno\": \"342\",\n                    \"email\": \"vihil@mailinator.com\",\n                    \"date_added\": \"2023-05-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10025\",\n                        \"address1\": \"West End Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con367\",\n                    \"first_name\": \"Bruno\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con368\",\n                    \"cell_phone\": \"+1 365-877-7992\",\n                    \"last_name\": \"Phelan\",\n                    \"sno\": \"343\",\n                    \"email\": \"syfyhize@mailinator.com\",\n                    \"date_added\": \"2023-05-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Quasqueton\",\n                        \"zip\": \"52326\",\n                        \"address1\": \"Quasqueton, IA 52326\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con368\",\n                    \"first_name\": \"Lee\"\n                },\n                {\n                    \"referral_source_id\": \"572\",\n                    \"phone\": \"\",\n                    \"username\": \"con369\",\n                    \"cell_phone\": \"+1 334-282-1605\",\n                    \"last_name\": \"Zia\",\n                    \"sno\": \"344\",\n                    \"email\": \"gafu@mailinator.com\",\n                    \"date_added\": \"2023-05-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10034\",\n                        \"address1\": \"Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con369\",\n                    \"first_name\": \"Reuben\"\n                },\n                {\n                    \"referral_source_id\": \"572\",\n                    \"phone\": \"\",\n                    \"username\": \"con370\",\n                    \"cell_phone\": \"+1 256-333-7498\",\n                    \"last_name\": \"Kylynn\",\n                    \"sno\": \"345\",\n                    \"email\": \"furi@mailinator.com\",\n                    \"date_added\": \"2023-05-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Glenville\",\n                        \"zip\": \"12325\",\n                        \"address1\": \"East Glenville (Glenville), NY 12325\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con370\",\n                    \"first_name\": \"Nigel\"\n                },\n                {\n                    \"referral_source_id\": \"572\",\n                    \"phone\": \"\",\n                    \"username\": \"con371\",\n                    \"cell_phone\": \"+1 331-781-4462\",\n                    \"last_name\": \"Judith\",\n                    \"sno\": \"346\",\n                    \"email\": \"zyvepiv@mailinator.com\",\n                    \"date_added\": \"2023-05-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98199\",\n                        \"address1\": \"Quarters B\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con371\",\n                    \"first_name\": \"Alvin\"\n                },\n                {\n                    \"referral_source_id\": \"572\",\n                    \"phone\": \"+1 805-477-6025\",\n                    \"username\": \"con372\",\n                    \"cell_phone\": \"+1 805-477-6025\",\n                    \"last_name\": \"Tyrone\",\n                    \"sno\": \"347\",\n                    \"email\": \"bicadafexi@mailinator.com\",\n                    \"date_added\": \"2023-05-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"Etna Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con372\",\n                    \"first_name\": \"Camilla\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 239-764-1751\",\n                    \"username\": \"con373\",\n                    \"cell_phone\": \"+1 239-764-1751\",\n                    \"last_name\": \"Rooney\",\n                    \"sno\": \"348\",\n                    \"email\": \"jexox@mailinator.com\",\n                    \"date_added\": \"2023-05-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con373\",\n                    \"first_name\": \"Gregory\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con374\",\n                    \"cell_phone\": \"+1 989-397-9366\",\n                    \"last_name\": \"Maile\",\n                    \"sno\": \"349\",\n                    \"email\": \"jizotysen@mailinator.com\",\n                    \"date_added\": \"2023-06-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33620\",\n                        \"address1\": \"Natural and Environmental Sciences\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con374\",\n                    \"first_name\": \"Kimberley\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con375\",\n                    \"cell_phone\": \"+1 831-952-3775\",\n                    \"last_name\": \"Jordan\",\n                    \"sno\": \"350\",\n                    \"email\": \"zynudupy@mailinator.com\",\n                    \"date_added\": \"2023-06-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nondalton\",\n                        \"zip\": \"99640\",\n                        \"address1\": \"Nondalton, AK 99640\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con375\",\n                    \"first_name\": \"Seth\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con376\",\n                    \"cell_phone\": \"+1 283-719-6398\",\n                    \"last_name\": \"Marshall\",\n                    \"sno\": \"351\",\n                    \"email\": \"jeguzaman@mailinator.com\",\n                    \"date_added\": \"2023-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nondalton\",\n                        \"zip\": \"99640\",\n                        \"address1\": \"Nondalton, AK 99640\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con376\",\n                    \"first_name\": \"Leah\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 213-574-9745\",\n                    \"username\": \"con377\",\n                    \"cell_phone\": \"+1 213-574-9745\",\n                    \"last_name\": \"Carol\",\n                    \"sno\": \"352\",\n                    \"email\": \"tuladebel@mailinator.com\",\n                    \"date_added\": \"2023-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lamar\",\n                        \"zip\": \"81052\",\n                        \"address1\": \"Lamar, CO 81052\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con377\",\n                    \"first_name\": \"Jasper\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con378\",\n                    \"cell_phone\": \"+1 978-664-7751\",\n                    \"last_name\": \"Cole\",\n                    \"sno\": \"353\",\n                    \"email\": \"zyfoz@mailinator.com\",\n                    \"date_added\": \"2023-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con378\",\n                    \"first_name\": \"Madeson\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con379\",\n                    \"cell_phone\": \"+1 843-405-8592\",\n                    \"last_name\": \"Madison\",\n                    \"sno\": \"354\",\n                    \"email\": \"rovodekef@mailinator.com\",\n                    \"date_added\": \"2023-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Itasca\",\n                        \"zip\": \"76055\",\n                        \"address1\": \"Itasca, TX 76055\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con379\",\n                    \"first_name\": \"Olga\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 979-449-1294\",\n                    \"username\": \"con380\",\n                    \"cell_phone\": \"+1 979-449-1294\",\n                    \"last_name\": \"Ryan\",\n                    \"sno\": \"355\",\n                    \"email\": \"worav@mailinator.com\",\n                    \"date_added\": \"2023-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Maine\",\n                        \"zip\": \"13802\",\n                        \"address1\": \"Maine, NY 13802\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con380\",\n                    \"first_name\": \"Camilla\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 504-204-2415\",\n                    \"username\": \"con381\",\n                    \"cell_phone\": \"+1 504-204-2415\",\n                    \"last_name\": \"Leilani\",\n                    \"sno\": \"356\",\n                    \"email\": \"zokaqosole@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sandy Springs\",\n                        \"zip\": \"30328\",\n                        \"address1\": \"5898 Roswell Road\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con381\",\n                    \"first_name\": \"Xaviera\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 719-683-1539\",\n                    \"username\": \"con382\",\n                    \"cell_phone\": \"+1 719-683-1539\",\n                    \"last_name\": \"Cassidy\",\n                    \"sno\": \"357\",\n                    \"email\": \"regehu@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raleigh\",\n                        \"zip\": \"27695\",\n                        \"address1\": \"1021 Main Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NC\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con382\",\n                    \"first_name\": \"Benedict\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con383\",\n                    \"cell_phone\": \"+1 931-441-4691\",\n                    \"last_name\": \"Ocean\",\n                    \"sno\": \"358\",\n                    \"email\": \"jibod@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ringgold\",\n                        \"zip\": \"30736\",\n                        \"address1\": \"Fran\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con383\",\n                    \"first_name\": \"Chastity\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con384\",\n                    \"cell_phone\": \"+1 607-827-4818\",\n                    \"last_name\": \"Hedwig\",\n                    \"sno\": \"359\",\n                    \"email\": \"besudatile@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Commerce\",\n                        \"zip\": \"75428\",\n                        \"address1\": \"Commerce, TX 75428\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con384\",\n                    \"first_name\": \"Akeem\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con385\",\n                    \"cell_phone\": \"+1 228-664-1725\",\n                    \"last_name\": \"Lenore\",\n                    \"sno\": \"360\",\n                    \"email\": \"miborakoge@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Calexico\",\n                        \"zip\": \"92231\",\n                        \"address1\": \"Imperial Ave Access Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con385\",\n                    \"first_name\": \"James\"\n                },\n                {\n                    \"referral_source\": \"Reprehenderit est a\",\n                    \"referral_source_id\": \"573\",\n                    \"phone\": \"\",\n                    \"username\": \"con386\",\n                    \"cell_phone\": \"+1 212-664-4544\",\n                    \"last_name\": \"Neville\",\n                    \"sno\": \"361\",\n                    \"email\": \"duvywo@mailinator.com\",\n                    \"date_added\": \"2023-06-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sunnyvale\",\n                        \"zip\": \"95051\",\n                        \"address1\": \"Eton Way\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con386\",\n                    \"first_name\": \"Chaney\"\n                },\n                {\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"referral_source_id\": \"574\",\n                    \"phone\": \"\",\n                    \"username\": \"con387\",\n                    \"cell_phone\": \"+1 304-225-5695\",\n                    \"last_name\": \"Nayda\",\n                    \"sno\": \"362\",\n                    \"email\": \"fuced@mailinator.com\",\n                    \"date_added\": \"2023-06-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"West Alexandria\",\n                        \"zip\": \"45381\",\n                        \"address1\": \"385 Quinn Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con387\",\n                    \"first_name\": \"Eliana\"\n                },\n                {\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"referral_source_id\": \"574\",\n                    \"phone\": \"+1 646-206-3851\",\n                    \"username\": \"con388\",\n                    \"cell_phone\": \"+1 646-206-3851\",\n                    \"last_name\": \"Michael\",\n                    \"sno\": \"363\",\n                    \"email\": \"qigypazoty@mailinator.com\",\n                    \"date_added\": \"2023-06-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cold Bay\",\n                        \"zip\": \"99571\",\n                        \"address1\": \"Veniamov Circle\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con388\",\n                    \"first_name\": \"Kadeem\"\n                },\n                {\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"referral_source_id\": \"574\",\n                    \"phone\": \"+1 514-385-9018\",\n                    \"username\": \"con389\",\n                    \"cell_phone\": \"+1 514-385-9018\",\n                    \"last_name\": \"Piper\",\n                    \"sno\": \"364\",\n                    \"email\": \"kipoto@mailinator.com\",\n                    \"date_added\": \"2023-06-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Liberty\",\n                        \"zip\": \"77575\",\n                        \"address1\": \"Liberty, TX 77575\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con389\",\n                    \"first_name\": \"Sawyer\"\n                },\n                {\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"referral_source_id\": \"574\",\n                    \"phone\": \"+1 407-715-7528\",\n                    \"username\": \"con390\",\n                    \"cell_phone\": \"+1 407-715-7528\",\n                    \"last_name\": \"Brian\",\n                    \"sno\": \"365\",\n                    \"email\": \"heweloxo@mailinator.com\",\n                    \"date_added\": \"2023-06-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sonoma\",\n                        \"zip\": \"95476\",\n                        \"address1\": \"Sonoma, CA 95476\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con390\",\n                    \"first_name\": \"Eaton\"\n                },\n                {\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"referral_source_id\": \"574\",\n                    \"phone\": \"\",\n                    \"username\": \"con391\",\n                    \"cell_phone\": \"+1 254-792-6557\",\n                    \"last_name\": \"Hall\",\n                    \"sno\": \"366\",\n                    \"email\": \"pexinaz@mailinator.com\",\n                    \"date_added\": \"2023-06-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cumberland\",\n                        \"zip\": \"21502\",\n                        \"address1\": \"Cumberland, MD 21502\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con391\",\n                    \"first_name\": \"Deborah\"\n                },\n                {\n                    \"referral_source\": \"other\",\n                    \"referral_source_id\": \"202\",\n                    \"phone\": \"919.139.3234\",\n                    \"username\": \"con392\",\n                    \"cell_phone\": \"918.934.7234\",\n                    \"last_name\": \"Pelk\",\n                    \"sno\": \"367\",\n                    \"email\": \"jas@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12115\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con392\",\n                    \"first_name\": \"Musij\"\n                },\n                {\n                    \"referral_source\": \"other\",\n                    \"referral_source_id\": \"202\",\n                    \"phone\": \"919.139.3234\",\n                    \"username\": \"con393\",\n                    \"cell_phone\": \"918.934.7234\",\n                    \"last_name\": \"Pell\",\n                    \"sno\": \"368\",\n                    \"email\": \"mus@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12105\",\n                        \"address1\": \"1124 Zony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con393\",\n                    \"first_name\": \"Mus\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"919.139.3234\",\n                    \"username\": \"con394\",\n                    \"cell_phone\": \"918.934.7234\",\n                    \"last_name\": \"Pelle\",\n                    \"sno\": \"369\",\n                    \"email\": \"muss@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12105\",\n                        \"address1\": \"1124 Zony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con394\",\n                    \"first_name\": \"Muss\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"919.139.3334\",\n                    \"username\": \"con395\",\n                    \"cell_phone\": \"918.134.7234\",\n                    \"last_name\": \"Pellem\",\n                    \"sno\": \"370\",\n                    \"email\": \"musse@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12145\",\n                        \"address1\": \"1128 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con395\",\n                    \"first_name\": \"Musse\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con396\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Pall\",\n                    \"sno\": \"371\",\n                    \"email\": \"mass@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92145\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con396\",\n                    \"first_name\": \"Mas\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con397\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Poll\",\n                    \"sno\": \"372\",\n                    \"email\": \"moss@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con397\",\n                    \"first_name\": \"Moss\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con398\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Pill\",\n                    \"sno\": \"373\",\n                    \"email\": \"pill@mailinator.com\",\n                    \"date_added\": \"2023-06-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con398\",\n                    \"first_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 347-952-5531\",\n                    \"username\": \"con399\",\n                    \"cell_phone\": \"+1 347-952-5531\",\n                    \"last_name\": \"Blaine\",\n                    \"sno\": \"374\",\n                    \"email\": \"buguqyju@mailinator.com\",\n                    \"date_added\": \"2023-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con399\",\n                    \"first_name\": \"Maisie\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 559-924-1083\",\n                    \"username\": \"con400\",\n                    \"cell_phone\": \"+1 559-924-1083\",\n                    \"last_name\": \"Malcolm\",\n                    \"sno\": \"375\",\n                    \"email\": \"cutovakiso@mailinator.com\",\n                    \"date_added\": \"2023-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con400\",\n                    \"first_name\": \"Thaddeus\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 737-276-3794\",\n                    \"username\": \"con401\",\n                    \"cell_phone\": \"+1 737-276-3794\",\n                    \"last_name\": \"Abbot\",\n                    \"sno\": \"376\",\n                    \"email\": \"hire@mailinator.com\",\n                    \"date_added\": \"2023-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Burlingame\",\n                        \"zip\": \"94030\",\n                        \"address1\": \"1616 Rollins Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con401\",\n                    \"first_name\": \"Kirestin\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con402\",\n                    \"cell_phone\": \"+1 778-818-9283\",\n                    \"last_name\": \"Bree\",\n                    \"sno\": \"377\",\n                    \"email\": \"cyhypijof@mailinator.com\",\n                    \"date_added\": \"2023-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10013\",\n                        \"address1\": \"770 Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con402\",\n                    \"first_name\": \"Igor\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con403\",\n                    \"cell_phone\": \"+1 228-602-1974\",\n                    \"last_name\": \"Serina\",\n                    \"sno\": \"378\",\n                    \"email\": \"gelu@mailinator.com\",\n                    \"date_added\": \"2023-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con403\",\n                    \"first_name\": \"Kameko\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con404\",\n                    \"cell_phone\": \"+1 984-954-2865\",\n                    \"last_name\": \"Ira\",\n                    \"sno\": \"379\",\n                    \"email\": \"xicizag@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con404\",\n                    \"first_name\": \"Kellie\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con405\",\n                    \"cell_phone\": \"+1 937-983-6435\",\n                    \"last_name\": \"Veronica\",\n                    \"sno\": \"380\",\n                    \"email\": \"qovyfabovu@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con405\",\n                    \"first_name\": \"Angela\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con406\",\n                    \"cell_phone\": \"+1 937-983-6435\",\n                    \"last_name\": \"Veronica\",\n                    \"sno\": \"381\",\n                    \"email\": \"qovyfabovu@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con406\",\n                    \"first_name\": \"Angela\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con407\",\n                    \"cell_phone\": \"+1 564-862-6134\",\n                    \"last_name\": \"Sade\",\n                    \"sno\": \"382\",\n                    \"email\": \"qojelaz@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con407\",\n                    \"first_name\": \"Cecilia\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con408\",\n                    \"cell_phone\": \"+1 516-482-7052\",\n                    \"last_name\": \"Kadeem\",\n                    \"sno\": \"383\",\n                    \"email\": \"xyrexehu@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Carlsbad\",\n                        \"zip\": \"92009\",\n                        \"address1\": \"2100 Costa del Mar Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con408\",\n                    \"first_name\": \"Harriet\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con409\",\n                    \"cell_phone\": \"+1 228-456-3911\",\n                    \"last_name\": \"Aaron\",\n                    \"sno\": \"384\",\n                    \"email\": \"hegibukab@mailinator.com\",\n                    \"date_added\": \"2023-06-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Oviedo\",\n                        \"zip\": \"32765\",\n                        \"address1\": \"Mad Science Laboratory\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con409\",\n                    \"first_name\": \"Levi\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con410\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Pill\",\n                    \"sno\": \"385\",\n                    \"email\": \"pillo@mailinator.com\",\n                    \"date_added\": \"2023-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con410\",\n                    \"first_name\": \"Mel\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con411\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Pille\",\n                    \"sno\": \"386\",\n                    \"email\": \"pillow@mailinator.com\",\n                    \"date_added\": \"2023-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con411\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con412\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Mill\",\n                    \"sno\": \"387\",\n                    \"email\": \"pillow@mailinator.com\",\n                    \"date_added\": \"2023-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con412\",\n                    \"first_name\": \"Mill\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con413\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Mill\",\n                    \"sno\": \"388\",\n                    \"email\": \"pillow@mailinator.com\",\n                    \"date_added\": \"2023-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con413\",\n                    \"first_name\": \"Mall\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con414\",\n                    \"cell_phone\": \"+1 909-352-5591\",\n                    \"last_name\": \"Paki\",\n                    \"sno\": \"389\",\n                    \"email\": \"helixir@mailinator.com\",\n                    \"date_added\": \"2023-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Earle\",\n                        \"zip\": \"72331\",\n                        \"address1\": \"Earle, AR 72331\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con414\",\n                    \"first_name\": \"Lucas\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 681-666-8981\",\n                    \"username\": \"con415\",\n                    \"cell_phone\": \"+1 681-666-8981\",\n                    \"last_name\": \"Urielle\",\n                    \"sno\": \"390\",\n                    \"email\": \"jaja@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11040\",\n                        \"address1\": \"259-17 Hillside Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con415\",\n                    \"first_name\": \"Kelsey\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con420\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"last_name\": \"Mall\",\n                    \"sno\": \"391\",\n                    \"email\": \"pilloaaaw@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con420\",\n                    \"first_name\": \"Moll\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con421\",\n                    \"cell_phone\": \"+1 236-794-6533\",\n                    \"last_name\": \"List\",\n                    \"sno\": \"392\",\n                    \"email\": \"peqehok@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lyman\",\n                        \"zip\": \"04002\",\n                        \"address1\": \"Sand Pit (used for shooting, 4 wheeling, etc)\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con421\",\n                    \"first_name\": \"Fast\"\n                },\n                {\n                    \"referral_source\": \"Labore qui dolore vo\",\n                    \"referral_source_id\": \"576\",\n                    \"phone\": \"\",\n                    \"username\": \"con422\",\n                    \"cell_phone\": \"+1 231-551-2569\",\n                    \"last_name\": \"Tanek\",\n                    \"sno\": \"393\",\n                    \"email\": \"lilapukof@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Akron\",\n                        \"zip\": \"44320\",\n                        \"address1\": \"Family Dollar\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con422\",\n                    \"first_name\": \"Nicole\"\n                },\n                {\n                    \"referral_source\": \"Labore qui dolore vo\",\n                    \"referral_source_id\": \"576\",\n                    \"phone\": \"+1 602-476-1993\",\n                    \"username\": \"con423\",\n                    \"cell_phone\": \"+1 602-476-1993\",\n                    \"last_name\": \"Audra\",\n                    \"sno\": \"394\",\n                    \"email\": \"gyren@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con423\",\n                    \"first_name\": \"Jada\"\n                },\n                {\n                    \"referral_source\": \"Non quaerat cum aspe\",\n                    \"referral_source_id\": \"577\",\n                    \"phone\": \"+1 719-851-3256\",\n                    \"username\": \"con424\",\n                    \"cell_phone\": \"+1 719-851-3256\",\n                    \"last_name\": \"Rinah\",\n                    \"sno\": \"395\",\n                    \"email\": \"pefobyky@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Albuquerque\",\n                        \"zip\": \"87117\",\n                        \"address1\": \"3550 Aberdeen Drive Southeast\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con424\",\n                    \"first_name\": \"Zachary\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con425\",\n                    \"cell_phone\": \"910.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"396\",\n                    \"email\": \"pilplojiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con425\",\n                    \"first_name\": \"Mull\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con426\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"397\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con426\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"+1 702-268-8994\",\n                    \"username\": \"con427\",\n                    \"cell_phone\": \"+1 702-268-8994\",\n                    \"last_name\": \"Germaine\",\n                    \"sno\": \"398\",\n                    \"email\": \"hobyl@mailinator.com\",\n                    \"date_added\": \"2023-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con427\",\n                    \"first_name\": \"Tanek\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"\",\n                    \"username\": \"con428\",\n                    \"cell_phone\": \"+1 747-341-1033\",\n                    \"last_name\": \"Daphne\",\n                    \"sno\": \"399\",\n                    \"email\": \"gizixuhulo@mailinator.com\",\n                    \"date_added\": \"2023-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Velma\",\n                        \"zip\": \"73491\",\n                        \"address1\": \"Velma, OK 73491\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con428\",\n                    \"first_name\": \"Denton\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"+1 521-864-9787\",\n                    \"username\": \"con429\",\n                    \"cell_phone\": \"+1 521-864-9787\",\n                    \"last_name\": \"Kelly\",\n                    \"sno\": \"400\",\n                    \"email\": \"qiloj@mailinator.com\",\n                    \"date_added\": \"2023-07-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Franklin\",\n                        \"zip\": \"08867\",\n                        \"address1\": \"321 Pittstown Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con429\",\n                    \"first_name\": \"Kadeem\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con430\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"401\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-07-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con430\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con431\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"402\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-07-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con431\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"\",\n                    \"username\": \"con432\",\n                    \"cell_phone\": \"+1 908-553-4478\",\n                    \"last_name\": \"Jordan\",\n                    \"sno\": \"403\",\n                    \"email\": \"vezo@mailinator.com\",\n                    \"date_added\": \"2023-07-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tempe\",\n                        \"zip\": \"85283\",\n                        \"address1\": \"4666 South Ash Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"AZ\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con432\",\n                    \"first_name\": \"Tanisha\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"\",\n                    \"username\": \"con433\",\n                    \"cell_phone\": \"+1 606-476-4235\",\n                    \"last_name\": \"Barclay\",\n                    \"sno\": \"404\",\n                    \"email\": \"bihofa@mailinator.com\",\n                    \"date_added\": \"2023-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lyman\",\n                        \"zip\": \"04002\",\n                        \"address1\": \"Sand Pit (used for shooting, 4 wheeling, etc)\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con433\",\n                    \"first_name\": \"Plato\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"+1 978-259-7355\",\n                    \"username\": \"con434\",\n                    \"cell_phone\": \"+1 978-259-7355\",\n                    \"last_name\": \"Fredericka\",\n                    \"sno\": \"405\",\n                    \"email\": \"bycyteka@mailinator.com\",\n                    \"date_added\": \"2023-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11251\",\n                        \"address1\": \"61 Little Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con434\",\n                    \"first_name\": \"Dahlia\"\n                },\n                {\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"referral_source_id\": \"578\",\n                    \"phone\": \"\",\n                    \"username\": \"con435\",\n                    \"cell_phone\": \"+1 231-898-1028\",\n                    \"last_name\": \"Bruno\",\n                    \"sno\": \"406\",\n                    \"email\": \"jyrirodix@mailinator.com\",\n                    \"date_added\": \"2023-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Mount Sinai\",\n                        \"zip\": \"36067\",\n                        \"address1\": \"Autauga County 6\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con435\",\n                    \"first_name\": \"Aileen\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con436\",\n                    \"cell_phone\": \"+1 859-202-8932\",\n                    \"last_name\": \"Lewis\",\n                    \"sno\": \"407\",\n                    \"email\": \"gudawumew@mailinator.com\",\n                    \"date_added\": \"2023-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orange City\",\n                        \"zip\": \"32763\",\n                        \"address1\": \"Quality Inn\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con436\",\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con437\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"408\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con437\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con438\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mal\",\n                    \"sno\": \"409\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"date_added\": \"2023-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con438\",\n                    \"first_name\": \"Mell\"\n                },\n                {\n                    \"referral_source\": \"Dolorem non nihil se\",\n                    \"referral_source_id\": \"579\",\n                    \"phone\": \"\",\n                    \"username\": \"con439\",\n                    \"cell_phone\": \"+1 719-703-5234\",\n                    \"last_name\": \"Drew\",\n                    \"sno\": \"410\",\n                    \"email\": \"qupuraqiv@mailinator.com\",\n                    \"date_added\": \"2023-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Underhill\",\n                        \"zip\": \"54176\",\n                        \"address1\": \"Underhill, WI 54176\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con439\",\n                    \"first_name\": \"Dakota\"\n                },\n                {\n                    \"referral_source\": \"Dolorem non nihil se\",\n                    \"referral_source_id\": \"579\",\n                    \"phone\": \"+1 902-385-5966\",\n                    \"username\": \"con440\",\n                    \"cell_phone\": \"+1 902-385-5966\",\n                    \"last_name\": \"Riley\",\n                    \"sno\": \"411\",\n                    \"email\": \"zitavagem@mailinator.com\",\n                    \"date_added\": \"2023-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con440\",\n                    \"first_name\": \"Ina\"\n                },\n                {\n                    \"referral_source\": \"Quo dolorem proident\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con443\",\n                    \"cell_phone\": \"+1 343-858-8403\",\n                    \"last_name\": \"Dakota\",\n                    \"sno\": \"412\",\n                    \"email\": \"tuvoz@mailinator.com\",\n                    \"date_added\": \"2023-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con443\",\n                    \"first_name\": \"Tatyana\"\n                },\n                {\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con444\",\n                    \"cell_phone\": \"+1 523-964-8403\",\n                    \"last_name\": \"Vance\",\n                    \"sno\": \"413\",\n                    \"email\": \"sololady@mailinator.com\",\n                    \"date_added\": \"2023-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con444\",\n                    \"first_name\": \"Abel\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con445\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Ml\",\n                    \"sno\": \"414\",\n                    \"email\": \"pijiaaaw12@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con445\",\n                    \"first_name\": \"Mll\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con446\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mlo\",\n                    \"sno\": \"415\",\n                    \"email\": \"pijiaaaw100002@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con446\",\n                    \"first_name\": \"Mllo\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con447\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Malo\",\n                    \"sno\": \"416\",\n                    \"email\": \"aijiaaaw100002@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con447\",\n                    \"first_name\": \"Millo\"\n                },\n                {\n                    \"referral_source\": \"kjlljnk\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con448\",\n                    \"cell_phone\": \"+1 872-908-7627\",\n                    \"last_name\": \"Thor\",\n                    \"sno\": \"417\",\n                    \"email\": \"fufukod@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98105\",\n                        \"address1\": \"3946 West Stevens Way Northeast\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con448\",\n                    \"first_name\": \"Abigail\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 443-865-4365\",\n                    \"username\": \"con449\",\n                    \"cell_phone\": \"+1 443-865-4365\",\n                    \"last_name\": \"Ryder\",\n                    \"sno\": \"418\",\n                    \"email\": \"lamodemyre@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Carters\",\n                        \"zip\": \"30732\",\n                        \"address1\": \"Carters Reregulation Dam\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con449\",\n                    \"first_name\": \"Carla\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con450\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Malo\",\n                    \"sno\": \"419\",\n                    \"email\": \"aijiiaaw100002@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con450\",\n                    \"first_name\": \"Mullo\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con451\",\n                    \"cell_phone\": \"+1 913-856-4279\",\n                    \"last_name\": \"Ronan\",\n                    \"sno\": \"420\",\n                    \"email\": \"husigozoku@mailinator.com\",\n                    \"date_added\": \"2023-07-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Enid\",\n                        \"zip\": \"73703\",\n                        \"address1\": \"4914 West Owen K Garriott Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con451\",\n                    \"first_name\": \"Quintessa\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con454\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Malo\",\n                    \"sno\": \"421\",\n                    \"email\": \"aijiiaaw100002@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con454\",\n                    \"first_name\": \"Mullo\"\n                },\n                {\n                    \"referral_source\": \"Vel quas ex ad neque\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 857-638-6781\",\n                    \"username\": \"con455\",\n                    \"cell_phone\": \"+1 857-638-6781\",\n                    \"last_name\": \"Cameron\",\n                    \"sno\": \"422\",\n                    \"email\": \"wulok@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sitka\",\n                        \"zip\": \"99835\",\n                        \"address1\": \"Sitka\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con455\",\n                    \"first_name\": \"Kessie\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con456\",\n                    \"cell_phone\": \"+1 351-734-9892\",\n                    \"last_name\": \"Chastity\",\n                    \"sno\": \"423\",\n                    \"email\": \"kyvo@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Simpson\",\n                        \"zip\": \"71474\",\n                        \"address1\": \"Odie Jackson Road\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con456\",\n                    \"first_name\": \"Kylan\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"714-957-2596\",\n                    \"username\": \"con457\",\n                    \"cell_phone\": \"714-957-2596\",\n                    \"last_name\": \"Fletcher\",\n                    \"sno\": \"424\",\n                    \"email\": \"vipefepiv@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Port Orange\",\n                        \"zip\": \"32127\",\n                        \"address1\": \"3863 South Nova Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con457\",\n                    \"first_name\": \"Maia\"\n                },\n                {\n                    \"referral_source\": \"test\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con458\",\n                    \"cell_phone\": \"+1 564-463-5948\",\n                    \"last_name\": \"Jakeem\",\n                    \"sno\": \"425\",\n                    \"email\": \"zivapo@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con458\",\n                    \"first_name\": \"Hiram\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"+1 902-209-5058\",\n                    \"username\": \"con459\",\n                    \"cell_phone\": \"+1 902-209-5058\",\n                    \"last_name\": \"Hayden\",\n                    \"sno\": \"426\",\n                    \"email\": \"rafuduxiwa@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Enterprise\",\n                        \"zip\": \"36330\",\n                        \"address1\": \"867 Aviation Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con459\",\n                    \"first_name\": \"Jerry\"\n                },\n                {\n                    \"referral_source\": \"aagagag\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con460\",\n                    \"cell_phone\": \"+1 256-229-3901\",\n                    \"last_name\": \"Leilani\",\n                    \"sno\": \"427\",\n                    \"email\": \"huseci@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nondalton\",\n                        \"zip\": \"99640\",\n                        \"address1\": \"Nondalton, AK 99640\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con460\",\n                    \"first_name\": \"Lenore\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con461\",\n                    \"cell_phone\": \"+1 506-311-8722\",\n                    \"last_name\": \"Adrienne\",\n                    \"sno\": \"428\",\n                    \"email\": \"zylowyhyv@mailinator.com\",\n                    \"date_added\": \"2023-07-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"04210\",\n                        \"address1\": \"Dolores Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con461\",\n                    \"first_name\": \"Colorado\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con462\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Mao\",\n                    \"sno\": \"429\",\n                    \"email\": \"aijiiaaw400002@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92149\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con462\",\n                    \"first_name\": \"Mull\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con462\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Lost\",\n                    \"sno\": \"430\",\n                    \"email\": \"aijiiaaw400002@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92149\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con462\",\n                    \"first_name\": \"Fost\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con463\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Mqo\",\n                    \"sno\": \"431\",\n                    \"email\": \"baaw400002@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con463\",\n                    \"first_name\": \"Mill\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con464\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Mo\",\n                    \"sno\": \"432\",\n                    \"email\": \"baa400002@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con464\",\n                    \"first_name\": \"Lill\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con465\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Po\",\n                    \"sno\": \"433\",\n                    \"email\": \"baap00002@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con465\",\n                    \"first_name\": \"Mill\"\n                },\n                {\n                    \"referral_source\": \"Eiusmod illum eveni\",\n                    \"referral_source_id\": \"582\",\n                    \"phone\": \"+1 706-761-5147\",\n                    \"username\": \"con466\",\n                    \"cell_phone\": \"+1 706-761-5147\",\n                    \"last_name\": \"Branden\",\n                    \"sno\": \"434\",\n                    \"email\": \"wyhoxyd@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nebo\",\n                        \"zip\": \"28761\",\n                        \"address1\": \"148 Nebo School Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NC\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con466\",\n                    \"first_name\": \"Chase\"\n                },\n                {\n                    \"referral_source\": \"Eiusmod illum eveni\",\n                    \"referral_source_id\": \"582\",\n                    \"phone\": \"\",\n                    \"username\": \"con467\",\n                    \"cell_phone\": \"+1 253-623-7595\",\n                    \"last_name\": \"Paul\",\n                    \"sno\": \"435\",\n                    \"email\": \"hupif@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"28306\",\n                        \"address1\": \"3831 Queen Anne Loop\",\n                        \"address2\": \"\",\n                        \"state\": \"NC\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con467\",\n                    \"first_name\": \"Urielle\"\n                },\n                {\n                    \"referral_source_id\": \"583\",\n                    \"phone\": \"+1 877-279-8577\",\n                    \"username\": \"con468\",\n                    \"cell_phone\": \"+1 877-279-8577\",\n                    \"last_name\": \"Wang\",\n                    \"sno\": \"436\",\n                    \"email\": \"zoqezota@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Venus\",\n                        \"zip\": \"76084\",\n                        \"address1\": \"Venus, TX 76084\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con468\",\n                    \"first_name\": \"Chiquita\"\n                },\n                {\n                    \"referral_source_id\": \"583\",\n                    \"phone\": \"+1 815-252-2499\",\n                    \"username\": \"con469\",\n                    \"cell_phone\": \"+1 815-252-2499\",\n                    \"last_name\": \"Xyla\",\n                    \"sno\": \"437\",\n                    \"email\": \"jeny@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con469\",\n                    \"first_name\": \"Darius\"\n                },\n                {\n                    \"referral_source\": \"Ex numquam tenetur p\",\n                    \"referral_source_id\": \"584\",\n                    \"phone\": \"\",\n                    \"username\": \"con470\",\n                    \"cell_phone\": \"+1 639-273-3119\",\n                    \"last_name\": \"MacKensie\",\n                    \"sno\": \"438\",\n                    \"email\": \"kozaw@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Reedley\",\n                        \"zip\": \"93654\",\n                        \"address1\": \"327 West Cypress Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con470\",\n                    \"first_name\": \"Ashton\"\n                },\n                {\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"referral_source_id\": \"585\",\n                    \"phone\": \"\",\n                    \"username\": \"con471\",\n                    \"cell_phone\": \"+1 308-573-1029\",\n                    \"last_name\": \"Irene\",\n                    \"sno\": \"439\",\n                    \"email\": \"neqel@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Culpeper\",\n                        \"zip\": \"22701\",\n                        \"address1\": \"Liberatore Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con471\",\n                    \"first_name\": \"Ayanna\"\n                },\n                {\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"referral_source_id\": \"585\",\n                    \"phone\": \"\",\n                    \"username\": \"con472\",\n                    \"cell_phone\": \"+1 308-573-1029\",\n                    \"last_name\": \"Irene\",\n                    \"sno\": \"440\",\n                    \"email\": \"neqel@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Culpeper\",\n                        \"zip\": \"22701\",\n                        \"address1\": \"Liberatore Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con472\",\n                    \"first_name\": \"Ayanna\"\n                },\n                {\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"referral_source_id\": \"585\",\n                    \"phone\": \"+1 704-732-4923\",\n                    \"username\": \"con473\",\n                    \"cell_phone\": \"+1 704-732-4923\",\n                    \"last_name\": \"Daria\",\n                    \"sno\": \"441\",\n                    \"email\": \"hewunivaw@mailinator.com\",\n                    \"date_added\": \"2023-07-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Amarillo\",\n                        \"zip\": \"79104\",\n                        \"address1\": \"2601 East Interstate Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con473\",\n                    \"first_name\": \"Edan\"\n                },\n                {\n                    \"referral_source\": \"refer\",\n                    \"referral_source_id\": \"575\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con474\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Ao\",\n                    \"sno\": \"442\",\n                    \"email\": \"aap00002@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con474\",\n                    \"first_name\": \"Aill\"\n                },\n                {\n                    \"referral_source\": \"refere\",\n                    \"referral_source_id\": \"586\",\n                    \"phone\": \"010.139.3334\",\n                    \"username\": \"con475\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"A\",\n                    \"sno\": \"443\",\n                    \"email\": \"aap00009@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con475\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"referes\",\n                    \"referral_source_id\": \"587\",\n                    \"phone\": \"010.139.3334\",\n                    \"username\": \"con476\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Q\",\n                    \"sno\": \"444\",\n                    \"email\": \"aarp00009@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con476\",\n                    \"first_name\": \"Arl\"\n                },\n                {\n                    \"referral_source\": \"refered\",\n                    \"referral_source_id\": \"588\",\n                    \"phone\": \"010.139.3334\",\n                    \"username\": \"con477\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"K\",\n                    \"sno\": \"445\",\n                    \"email\": \"arp00009@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con477\",\n                    \"first_name\": \"Url\"\n                },\n                {\n                    \"referral_source\": \"Quis excepteur amet\",\n                    \"referral_source_id\": \"589\",\n                    \"phone\": \"+1 901-356-5317\",\n                    \"username\": \"con478\",\n                    \"cell_phone\": \"+1 901-356-5317\",\n                    \"last_name\": \"Mollie\",\n                    \"sno\": \"446\",\n                    \"email\": \"jibukyl@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Elyria\",\n                        \"zip\": \"44035\",\n                        \"address1\": \"1005 North Abbe Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con478\",\n                    \"first_name\": \"Aurora\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 931-369-9218\",\n                    \"username\": \"con479\",\n                    \"cell_phone\": \"+1 931-369-9218\",\n                    \"last_name\": \"Tyrone\",\n                    \"sno\": \"447\",\n                    \"email\": \"sote@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98105\",\n                        \"address1\": \"3946 West Stevens Way Northeast\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con479\",\n                    \"first_name\": \"Melissa\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con480\",\n                    \"cell_phone\": \"+1 617-278-6202\",\n                    \"last_name\": \"Galena\",\n                    \"sno\": \"448\",\n                    \"email\": \"tibe@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"The Woodlands\",\n                        \"zip\": \"77381\",\n                        \"address1\": \"Quiet Peace Place\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con480\",\n                    \"first_name\": \"Rudyard\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con481\",\n                    \"cell_phone\": \"+1 445-206-3463\",\n                    \"last_name\": \"Susan\",\n                    \"sno\": \"449\",\n                    \"email\": \"tacimi@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fuget\",\n                        \"zip\": \"41219\",\n                        \"address1\": \"Fuget\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con481\",\n                    \"first_name\": \"Yen\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con482\",\n                    \"cell_phone\": \"+1 888-525-6989\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"450\",\n                    \"email\": \"tshoemaker0720@haleymarketing.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con482\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 204-898-7567\",\n                    \"username\": \"con483\",\n                    \"cell_phone\": \"+1 204-898-7567\",\n                    \"last_name\": \"Ila\",\n                    \"sno\": \"451\",\n                    \"email\": \"wohome@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97204\",\n                        \"address1\": \"Animals in Pools\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con483\",\n                    \"first_name\": \"Ivy\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con484\",\n                    \"cell_phone\": \"+1 659-918-8004\",\n                    \"last_name\": \"Hilary\",\n                    \"sno\": \"452\",\n                    \"email\": \"gorahame@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Diego\",\n                        \"zip\": \"92101\",\n                        \"address1\": \"435 6th Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con484\",\n                    \"first_name\": \"Vincent\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 972-386-1891\",\n                    \"username\": \"con485\",\n                    \"cell_phone\": \"+1 972-386-1891\",\n                    \"last_name\": \"Neil\",\n                    \"sno\": \"453\",\n                    \"email\": \"rakihoqe@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Asperiores odit id i\",\n                        \"zip\": \"57580\",\n                        \"address1\": \"Exercitationem accus\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con485\",\n                    \"first_name\": \"Scott\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con482\",\n                    \"cell_phone\": \"+1 888-525-6989\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"454\",\n                    \"email\": \"tshoemaker0720@haleymarketing.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con482\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con482\",\n                    \"cell_phone\": \"+1 888-525-6989\",\n                    \"last_name\": \"test1\",\n                    \"sno\": \"455\",\n                    \"email\": \"tshoemaker0720@haleymarketing.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con482\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con486\",\n                    \"cell_phone\": \"+1 443-679-4515\",\n                    \"last_name\": \"Veronica\",\n                    \"sno\": \"456\",\n                    \"email\": \"holuhule@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Venus\",\n                        \"zip\": \"76084\",\n                        \"address1\": \"Venus, TX 76084\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con486\",\n                    \"first_name\": \"September\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 269-643-8843\",\n                    \"username\": \"con487\",\n                    \"cell_phone\": \"+1 269-643-8843\",\n                    \"last_name\": \"Lee\",\n                    \"sno\": \"457\",\n                    \"email\": \"lutobofo@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02903\",\n                        \"address1\": \"First Baptist Church in America\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con487\",\n                    \"first_name\": \"Oliver\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"+1 418-611-9688\",\n                    \"username\": \"con488\",\n                    \"cell_phone\": \"+1 418-611-9688\",\n                    \"last_name\": \"Hannah\",\n                    \"sno\": \"458\",\n                    \"email\": \"zirywu@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Odessa\",\n                        \"zip\": \"79765\",\n                        \"address1\": \"4122 Faudree Road\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con488\",\n                    \"first_name\": \"Reed\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 521-978-6896\",\n                    \"username\": \"con489\",\n                    \"cell_phone\": \"+1 521-978-6896\",\n                    \"last_name\": \"Nita\",\n                    \"sno\": \"459\",\n                    \"email\": \"vehuqewyf@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10002\",\n                        \"address1\": \"Lower East Side\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con489\",\n                    \"first_name\": \"Josephine\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con490\",\n                    \"cell_phone\": \"+1 908-636-1278\",\n                    \"last_name\": \"Halla\",\n                    \"sno\": \"460\",\n                    \"email\": \"zycajacah@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Asian Exhibits\",\n                        \"zip\": \"33177\",\n                        \"address1\": \"Asian Exhibits\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con490\",\n                    \"first_name\": \"Wyoming\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"+1 352-333-9338\",\n                    \"username\": \"con491\",\n                    \"cell_phone\": \"+1 352-333-9338\",\n                    \"last_name\": \"Declan\",\n                    \"sno\": \"461\",\n                    \"email\": \"bunegu@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con491\",\n                    \"first_name\": \"Veronica\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con492\",\n                    \"cell_phone\": \"+1 517-932-5895\",\n                    \"last_name\": \"Caleb\",\n                    \"sno\": \"462\",\n                    \"email\": \"xepigipez@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"94536\",\n                        \"address1\": \"Sequoia Common\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con492\",\n                    \"first_name\": \"Molly\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 913-772-7138\",\n                    \"username\": \"con493\",\n                    \"cell_phone\": \"+1 913-772-7138\",\n                    \"last_name\": \"Jordan\",\n                    \"sno\": \"463\",\n                    \"email\": \"rejuxac@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Isabela\",\n                        \"zip\": \"00665\",\n                        \"address1\": \"Calle Lorenzo Cabrera de JesÃ\\u0083Âºs\",\n                        \"address2\": \"\",\n                        \"state\": \"PR\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con493\",\n                    \"first_name\": \"Oleg\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 618-918-4238\",\n                    \"username\": \"con494\",\n                    \"cell_phone\": \"+1 618-918-4238\",\n                    \"last_name\": \"Evangeline\",\n                    \"sno\": \"464\",\n                    \"email\": \"cufac@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con494\",\n                    \"first_name\": \"Blake\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con495\",\n                    \"cell_phone\": \"+1 469-903-2886\",\n                    \"last_name\": \"Camilla\",\n                    \"sno\": \"465\",\n                    \"email\": \"xaji@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75212\",\n                        \"address1\": \"4025 Singleton Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con495\",\n                    \"first_name\": \"Amery\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con496\",\n                    \"cell_phone\": \"+1 715-935-4504\",\n                    \"last_name\": \"Philip\",\n                    \"sno\": \"466\",\n                    \"email\": \"wocamebo@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con496\",\n                    \"first_name\": \"Lesley\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con497\",\n                    \"cell_phone\": \"+1 956-222-8872\",\n                    \"last_name\": \"Wendy\",\n                    \"sno\": \"467\",\n                    \"email\": \"dosypo@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Roseville\",\n                        \"zip\": \"95747\",\n                        \"address1\": \"1501 Pleasant Grove Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con497\",\n                    \"first_name\": \"Zephania\"\n                },\n                {\n                    \"referral_source_id\": \"590\",\n                    \"phone\": \"+1 613-549-9063\",\n                    \"username\": \"con498\",\n                    \"cell_phone\": \"+1 613-549-9063\",\n                    \"last_name\": \"Aristotle\",\n                    \"sno\": \"468\",\n                    \"email\": \"xijicehe@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33142\",\n                        \"address1\": \"3501 Northwest 42nd Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"id\": \"con498\",\n                    \"first_name\": \"Lucius\"\n                },\n                {\n                    \"referral_source_id\": \"591\",\n                    \"phone\": \"+1 905-825-8732\",\n                    \"username\": \"con499\",\n                    \"cell_phone\": \"+1 905-825-8732\",\n                    \"last_name\": \"Shafira\",\n                    \"sno\": \"469\",\n                    \"email\": \"javevewefa@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Blanditiis eveniet \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"32467\",\n                        \"address1\": \"Debitis et nostrud n\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con499\",\n                    \"first_name\": \"Montana\"\n                },\n                {\n                    \"referral_source_id\": \"591\",\n                    \"phone\": \"+1 419-339-4069\",\n                    \"username\": \"con500\",\n                    \"cell_phone\": \"+1 419-339-4069\",\n                    \"last_name\": \"Taylor\",\n                    \"sno\": \"470\",\n                    \"email\": \"hegosyh@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fugiat magna quam t\",\n                        \"zip\": \"61905\",\n                        \"address1\": {\n                            \"content\": \"Sed eius explicabo \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con500\",\n                    \"first_name\": \"Hadley\"\n                },\n                {\n                    \"referral_source_id\": \"591\",\n                    \"phone\": \"+1 609-829-6864\",\n                    \"username\": \"con501\",\n                    \"cell_phone\": \"+1 609-829-6864\",\n                    \"last_name\": \"Wade\",\n                    \"sno\": \"471\",\n                    \"email\": \"kygezovys@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Et Nam delectus cul\",\n                        \"zip\": \"68354\",\n                        \"address1\": \"Quod quas quo aute a\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con501\",\n                    \"first_name\": \"Rashad\"\n                },\n                {\n                    \"referral_source_id\": \"591\",\n                    \"phone\": \"\",\n                    \"username\": \"con502\",\n                    \"cell_phone\": \"+1 782-602-9654\",\n                    \"last_name\": \"Hedley\",\n                    \"sno\": \"472\",\n                    \"email\": \"kifysozes@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Eveniet architecto \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"60714\",\n                        \"address1\": {\n                            \"content\": \"Impedit provident \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con502\",\n                    \"first_name\": \"Miranda\"\n                },\n                {\n                    \"referral_source_id\": \"591\",\n                    \"phone\": \"+1 201-437-3146\",\n                    \"username\": \"con503\",\n                    \"cell_phone\": \"+1 201-437-3146\",\n                    \"last_name\": \"Shad\",\n                    \"sno\": \"473\",\n                    \"email\": \"wefocafuco@mailinator.com\",\n                    \"date_added\": \"2023-07-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Beavercreek\",\n                        \"zip\": \"45431\",\n                        \"address1\": \"2601 Park Overlook Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con503\",\n                    \"first_name\": \"Deirdre\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 269-306-4711\",\n                    \"username\": \"con504\",\n                    \"cell_phone\": \"+1 269-306-4711\",\n                    \"last_name\": \"Chloe\",\n                    \"sno\": \"474\",\n                    \"email\": \"ropirovote@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fort Jones\",\n                        \"zip\": \"96032\",\n                        \"address1\": \"NAPA Auto Parts\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con504\",\n                    \"first_name\": \"Samantha\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 523-497-2587\",\n                    \"username\": \"con505\",\n                    \"cell_phone\": \"+1 523-497-2587\",\n                    \"last_name\": \"Beatrice\",\n                    \"sno\": \"475\",\n                    \"email\": \"futemy@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con505\",\n                    \"first_name\": \"Robin\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 523-497-2587\",\n                    \"username\": \"con505\",\n                    \"cell_phone\": \"+1 523-497-2587\",\n                    \"last_name\": \"Beatrice\",\n                    \"sno\": \"476\",\n                    \"email\": \"futemy@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con505\",\n                    \"first_name\": \"Robin\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 523-497-2587\",\n                    \"username\": \"con505\",\n                    \"cell_phone\": \"+1 523-497-2587\",\n                    \"last_name\": \"Beatrice\",\n                    \"sno\": \"477\",\n                    \"email\": \"futemy@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con505\",\n                    \"first_name\": \"Robin\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con506\",\n                    \"cell_phone\": \"+1 544-845-7388\",\n                    \"last_name\": \"Fritz\",\n                    \"sno\": \"478\",\n                    \"email\": \"sofy@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Jersey City\",\n                        \"zip\": \"07307\",\n                        \"address1\": \"U.S. Postal Facility at Bulk Door\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con506\",\n                    \"first_name\": \"Nayda\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 636-668-6468\",\n                    \"username\": \"con507\",\n                    \"cell_phone\": \"+1 636-668-6468\",\n                    \"last_name\": \"Carson\",\n                    \"sno\": \"479\",\n                    \"email\": \"fujijovo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con507\",\n                    \"first_name\": \"Indigo\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 636-668-6468\",\n                    \"username\": \"con507\",\n                    \"cell_phone\": \"+1 636-668-6468\",\n                    \"last_name\": \"Carson\",\n                    \"sno\": \"480\",\n                    \"email\": \"fujijovo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con507\",\n                    \"first_name\": \"Indigo\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 636-668-6468\",\n                    \"username\": \"con507\",\n                    \"cell_phone\": \"+1 636-668-6468\",\n                    \"last_name\": \"Carson\",\n                    \"sno\": \"481\",\n                    \"email\": \"fujijovo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con507\",\n                    \"first_name\": \"Indigo\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 561-901-2669\",\n                    \"username\": \"con508\",\n                    \"cell_phone\": \"+1 561-901-2669\",\n                    \"last_name\": \"Aquila\",\n                    \"sno\": \"482\",\n                    \"email\": \"mopi@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Odin\",\n                        \"zip\": \"62870\",\n                        \"address1\": \"Odin, IL 62870\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con508\",\n                    \"first_name\": \"Ralph\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 561-901-2669\",\n                    \"username\": \"con508\",\n                    \"cell_phone\": \"+1 561-901-2669\",\n                    \"last_name\": \"Aquila\",\n                    \"sno\": \"483\",\n                    \"email\": \"mopi@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Odin\",\n                        \"zip\": \"62870\",\n                        \"address1\": \"Odin, IL 62870\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con508\",\n                    \"first_name\": \"Ralph\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 561-901-2669\",\n                    \"username\": \"con508\",\n                    \"cell_phone\": \"+1 561-901-2669\",\n                    \"last_name\": \"Aquila\",\n                    \"sno\": \"484\",\n                    \"email\": \"mopi@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Odin\",\n                        \"zip\": \"62870\",\n                        \"address1\": \"Odin, IL 62870\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con508\",\n                    \"first_name\": \"Ralph\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con509\",\n                    \"cell_phone\": \"+1 228-629-3945\",\n                    \"last_name\": \"Laith\",\n                    \"sno\": \"485\",\n                    \"email\": \"tysoqodo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bonney Lake\",\n                        \"zip\": \"98391\",\n                        \"address1\": \"14708 198th Avenue East\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con509\",\n                    \"first_name\": \"Kennedy\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con509\",\n                    \"cell_phone\": \"+1 228-629-3945\",\n                    \"last_name\": \"Laith\",\n                    \"sno\": \"486\",\n                    \"email\": \"tysoqodo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bonney Lake\",\n                        \"zip\": \"98391\",\n                        \"address1\": \"14708 198th Avenue East\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con509\",\n                    \"first_name\": \"Kennedy\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con509\",\n                    \"cell_phone\": \"+1 228-629-3945\",\n                    \"last_name\": \"Laith\",\n                    \"sno\": \"487\",\n                    \"email\": \"tysoqodo@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bonney Lake\",\n                        \"zip\": \"98391\",\n                        \"address1\": \"14708 198th Avenue East\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con509\",\n                    \"first_name\": \"Kennedy\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con510\",\n                    \"cell_phone\": \"+1 306-229-1464\",\n                    \"last_name\": \"Thane\",\n                    \"sno\": \"488\",\n                    \"email\": \"bekicyde@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raton\",\n                        \"zip\": \"87740\",\n                        \"address1\": \"Raton, NM 87740\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con510\",\n                    \"first_name\": \"Lee\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con511\",\n                    \"cell_phone\": \"+1 909-576-9526\",\n                    \"last_name\": \"Simon\",\n                    \"sno\": \"489\",\n                    \"email\": \"gexinocix@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ocean Township\",\n                        \"zip\": \"07712\",\n                        \"address1\": \"Mahoras Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con511\",\n                    \"first_name\": \"Abraham\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con512\",\n                    \"cell_phone\": \"+1 229-644-8077\",\n                    \"last_name\": \"Jennifer\",\n                    \"sno\": \"490\",\n                    \"email\": \"buna@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Milwaukee\",\n                        \"zip\": \"53207\",\n                        \"address1\": \"4940 South Howell Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con512\",\n                    \"first_name\": \"Plato\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con512\",\n                    \"cell_phone\": \"+1 229-644-8077\",\n                    \"last_name\": \"Jennifer\",\n                    \"sno\": \"491\",\n                    \"email\": \"buna@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Milwaukee\",\n                        \"zip\": \"53207\",\n                        \"address1\": \"4940 South Howell Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con512\",\n                    \"first_name\": \"Plato\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con512\",\n                    \"cell_phone\": \"+1 229-644-8077\",\n                    \"last_name\": \"Jennifer\",\n                    \"sno\": \"492\",\n                    \"email\": \"buna@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Milwaukee\",\n                        \"zip\": \"53207\",\n                        \"address1\": \"4940 South Howell Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con512\",\n                    \"first_name\": \"Plato\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con513\",\n                    \"cell_phone\": \"+1 562-613-1134\",\n                    \"last_name\": \"Xanthus\",\n                    \"sno\": \"493\",\n                    \"email\": \"berype@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"16 Pelham Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con513\",\n                    \"first_name\": \"Sopoline\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con514\",\n                    \"cell_phone\": \"+1 518-941-3672\",\n                    \"last_name\": \"Shea\",\n                    \"sno\": \"494\",\n                    \"email\": \"lazoqywofe@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"49911\",\n                        \"address1\": \"Ethnic Commons Park\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con514\",\n                    \"first_name\": \"Shannon\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con514\",\n                    \"cell_phone\": \"+1 518-941-3672\",\n                    \"last_name\": \"Shea\",\n                    \"sno\": \"495\",\n                    \"email\": \"lazoqywofe@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"49911\",\n                        \"address1\": \"Ethnic Commons Park\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con514\",\n                    \"first_name\": \"Shannon\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con514\",\n                    \"cell_phone\": \"+1 518-941-3672\",\n                    \"last_name\": \"Shea\",\n                    \"sno\": \"496\",\n                    \"email\": \"lazoqywofe@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"49911\",\n                        \"address1\": \"Ethnic Commons Park\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con514\",\n                    \"first_name\": \"Shannon\"\n                },\n                {\n                    \"referral_source\": \"jkhkk\",\n                    \"referral_source_id\": \"592\",\n                    \"phone\": \"\",\n                    \"username\": \"con515\",\n                    \"cell_phone\": \"+1 225-247-7947\",\n                    \"last_name\": \"Lucius\",\n                    \"sno\": \"497\",\n                    \"email\": \"lupisev@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10013\",\n                        \"address1\": \"770 Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con515\",\n                    \"first_name\": \"Bo\"\n                },\n                {\n                    \"referral_source\": \"jkhkk\",\n                    \"referral_source_id\": \"592\",\n                    \"phone\": \"+1 303-373-6638\",\n                    \"username\": \"con516\",\n                    \"cell_phone\": \"+1 303-373-6638\",\n                    \"last_name\": \"Emerson\",\n                    \"sno\": \"498\",\n                    \"email\": \"bumyzusem@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Vernon\",\n                        \"zip\": \"35592\",\n                        \"address1\": \"Vernon, AL 35592\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con516\",\n                    \"first_name\": \"Martha\"\n                },\n                {\n                    \"referral_source\": \"jkhkk\",\n                    \"referral_source_id\": \"592\",\n                    \"phone\": \"+1 303-373-6638\",\n                    \"username\": \"con516\",\n                    \"cell_phone\": \"+1 303-373-6638\",\n                    \"last_name\": \"Emerson\",\n                    \"sno\": \"499\",\n                    \"email\": \"bumyzusem@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Vernon\",\n                        \"zip\": \"35592\",\n                        \"address1\": \"Vernon, AL 35592\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con516\",\n                    \"first_name\": \"Martha\"\n                },\n                {\n                    \"referral_source\": \"jkhkk\",\n                    \"referral_source_id\": \"592\",\n                    \"phone\": \"+1 303-373-6638\",\n                    \"username\": \"con516\",\n                    \"cell_phone\": \"+1 303-373-6638\",\n                    \"last_name\": \"Emerson\",\n                    \"sno\": \"500\",\n                    \"email\": \"bumyzusem@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Vernon\",\n                        \"zip\": \"35592\",\n                        \"address1\": \"Vernon, AL 35592\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con516\",\n                    \"first_name\": \"Martha\"\n                },\n                {\n                    \"referral_source\": \"lhjljhk\",\n                    \"referral_source_id\": \"593\",\n                    \"phone\": \"+1 902-674-4452\",\n                    \"username\": \"con517\",\n                    \"cell_phone\": \"+1 902-674-4452\",\n                    \"last_name\": \"Bernard\",\n                    \"sno\": \"501\",\n                    \"email\": \"hoha@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Exeter\",\n                        \"zip\": \"93221\",\n                        \"address1\": \"Exeter, CA 93221\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con517\",\n                    \"first_name\": \"Anthony\"\n                },\n                {\n                    \"referral_source\": \"lhjljhk\",\n                    \"referral_source_id\": \"593\",\n                    \"phone\": \"+1 902-674-4452\",\n                    \"username\": \"con517\",\n                    \"cell_phone\": \"+1 902-674-4452\",\n                    \"last_name\": \"Bernard\",\n                    \"sno\": \"502\",\n                    \"email\": \"hoha@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Exeter\",\n                        \"zip\": \"93221\",\n                        \"address1\": \"Exeter, CA 93221\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con517\",\n                    \"first_name\": \"Anthony\"\n                },\n                {\n                    \"referral_source\": \"lhjljhk\",\n                    \"referral_source_id\": \"593\",\n                    \"phone\": \"+1 902-674-4452\",\n                    \"username\": \"con517\",\n                    \"cell_phone\": \"+1 902-674-4452\",\n                    \"last_name\": \"Bernard\",\n                    \"sno\": \"503\",\n                    \"email\": \"hoha@mailinator.com\",\n                    \"date_added\": \"2023-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Exeter\",\n                        \"zip\": \"93221\",\n                        \"address1\": \"Exeter, CA 93221\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con517\",\n                    \"first_name\": \"Anthony\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 215-472-8022\",\n                    \"username\": \"con518\",\n                    \"cell_phone\": \"+1 215-472-8022\",\n                    \"last_name\": \"MacKensie\",\n                    \"sno\": \"504\",\n                    \"email\": \"gehok@mailinator.com\",\n                    \"date_added\": \"2023-07-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20003\",\n                        \"address1\": \"John Quincy Adams\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con518\",\n                    \"first_name\": \"Lois\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 734-654-2301\",\n                    \"username\": \"con519\",\n                    \"cell_phone\": \"+1 734-654-2301\",\n                    \"last_name\": \"Steven\",\n                    \"sno\": \"505\",\n                    \"email\": \"likafitov@mailinator.com\",\n                    \"date_added\": \"2023-07-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Wallops Flight Facility Main Base\",\n                        \"zip\": \"23337\",\n                        \"address1\": \"Wallops Flight Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con519\",\n                    \"first_name\": \"Aladdin\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 734-654-2301\",\n                    \"username\": \"con519\",\n                    \"cell_phone\": \"+1 734-654-2301\",\n                    \"last_name\": \"Steven\",\n                    \"sno\": \"506\",\n                    \"email\": \"likafitov@mailinator.com\",\n                    \"date_added\": \"2023-07-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Wallops Flight Facility Main Base\",\n                        \"zip\": \"23337\",\n                        \"address1\": \"Wallops Flight Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con519\",\n                    \"first_name\": \"Aladdin\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"+1 734-654-2301\",\n                    \"username\": \"con519\",\n                    \"cell_phone\": \"+1 734-654-2301\",\n                    \"last_name\": \"Steven\",\n                    \"sno\": \"507\",\n                    \"email\": \"likafitov@mailinator.com\",\n                    \"date_added\": \"2023-07-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Wallops Flight Facility Main Base\",\n                        \"zip\": \"23337\",\n                        \"address1\": \"Wallops Flight Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con519\",\n                    \"first_name\": \"Aladdin\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con520\",\n                    \"cell_phone\": \"+1 561-782-9406\",\n                    \"last_name\": \"Aristotle\",\n                    \"sno\": \"508\",\n                    \"email\": \"cirucuzy@mailinator.com\",\n                    \"date_added\": \"2023-07-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Las Vegas\",\n                        \"zip\": \"87701\",\n                        \"address1\": \"Dolores Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con520\",\n                    \"first_name\": \"Mona\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con521\",\n                    \"cell_phone\": \"+1 829-657-5559\",\n                    \"last_name\": \"Bianca\",\n                    \"sno\": \"509\",\n                    \"email\": \"matujowol@mailinator.com\",\n                    \"date_added\": \"2023-07-31\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Round Rock\",\n                        \"zip\": \"78681\",\n                        \"address1\": \"1100 West Louis Henna Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con521\",\n                    \"first_name\": \"August\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"+1 855-924-3793\",\n                    \"username\": \"con522\",\n                    \"cell_phone\": \"+1 855-924-3793\",\n                    \"last_name\": \"Haviva\",\n                    \"sno\": \"510\",\n                    \"email\": \"gelejig@mailinator.com\",\n                    \"date_added\": \"2023-07-31\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sunrise Heights\",\n                        \"zip\": \"95945\",\n                        \"address1\": \"Dolores Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con522\",\n                    \"first_name\": \"Kiayada\"\n                },\n                {\n                    \"referral_source\": \"Quos laborum Aute o\",\n                    \"referral_source_id\": \"594\",\n                    \"phone\": \"\",\n                    \"username\": \"con523\",\n                    \"cell_phone\": \"+1 813-215-7722\",\n                    \"last_name\": \"Gage\",\n                    \"sno\": \"511\",\n                    \"email\": \"lixaka@mailinator.com\",\n                    \"date_added\": \"2023-08-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Offerman\",\n                        \"zip\": \"31556\",\n                        \"address1\": \"Offerman, GA 31556\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con523\",\n                    \"first_name\": \"Tucker\"\n                },\n                {\n                    \"referral_source\": \"Quos laborum Aute o\",\n                    \"referral_source_id\": \"594\",\n                    \"phone\": \"+1 813-521-2851\",\n                    \"username\": \"con524\",\n                    \"cell_phone\": \"+1 813-521-2851\",\n                    \"last_name\": \"Kathleen\",\n                    \"sno\": \"512\",\n                    \"email\": \"katy@mailinator.com\",\n                    \"date_added\": \"2023-08-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sumter\",\n                        \"zip\": \"29150\",\n                        \"address1\": \"Temple Sinai\",\n                        \"address2\": \"\",\n                        \"state\": \"SC\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con524\",\n                    \"first_name\": \"Gabriel\"\n                },\n                {\n                    \"referral_source\": \"referee\",\n                    \"referral_source_id\": \"595\",\n                    \"phone\": \"910.139.3334\",\n                    \"username\": \"con525\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"last_name\": \"Aas\",\n                    \"sno\": \"513\",\n                    \"email\": \"1108o91a@mailinator.com\",\n                    \"date_added\": \"2023-09-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay County\",\n                        \"zip\": \"12140\",\n                        \"address1\": \"120 Eny Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"DE\"\n                    },\n                    \"id\": \"con525\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 623-596-3799\",\n                    \"username\": \"con526\",\n                    \"cell_phone\": \"+1 623-596-3799\",\n                    \"last_name\": \"Patience\",\n                    \"sno\": \"514\",\n                    \"email\": \"mequqa@mailinator.com\",\n                    \"date_added\": \"2023-09-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con526\",\n                    \"first_name\": \"Gary\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"+1 228-315-9338\",\n                    \"username\": \"con527\",\n                    \"cell_phone\": \"+1 228-315-9338\",\n                    \"last_name\": \"Catherine\",\n                    \"sno\": \"515\",\n                    \"email\": \"fefybuzegy@mailinator.com\",\n                    \"date_added\": \"2023-09-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cumberland\",\n                        \"zip\": \"21502\",\n                        \"address1\": \"Cumberland, MD 21502\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con527\",\n                    \"first_name\": \"Nevada\"\n                },\n                {\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"referral_source_id\": \"596\",\n                    \"phone\": \"\",\n                    \"username\": \"con528\",\n                    \"cell_phone\": \"+1 445-898-8579\",\n                    \"last_name\": \"Imogene\",\n                    \"sno\": \"516\",\n                    \"email\": \"sykigin@mailinator.com\",\n                    \"date_added\": \"2023-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ripon\",\n                        \"zip\": \"95366\",\n                        \"address1\": \"Ripon, CA 95366\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con528\",\n                    \"first_name\": \"Abra\"\n                },\n                {\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"referral_source_id\": \"596\",\n                    \"phone\": \"888-716-1241\",\n                    \"username\": \"con529\",\n                    \"cell_phone\": \"888-716-1241\",\n                    \"last_name\": \"Bo\",\n                    \"sno\": \"517\",\n                    \"email\": \"dunyvuqys@mailinator.com\",\n                    \"date_added\": \"2023-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Daytona Beach\",\n                        \"zip\": \"32114\",\n                        \"address1\": \"299 Bill France Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con529\",\n                    \"first_name\": \"Valentine\"\n                },\n                {\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"referral_source_id\": \"596\",\n                    \"username\": \"con530\",\n                    \"cell_phone\": \"707-937-5153\",\n                    \"last_name\": \"Graiden\",\n                    \"sno\": \"518\",\n                    \"email\": \"kowofil@mailinator.com\",\n                    \"date_added\": \"2023-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Indianapolis\",\n                        \"zip\": \"46241\",\n                        \"address1\": \"Elite Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"IN\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con530\",\n                    \"first_name\": \"Yvonne\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"\",\n                    \"username\": \"con531\",\n                    \"cell_phone\": \"614-645-8527\",\n                    \"last_name\": \"Keely\",\n                    \"sno\": \"519\",\n                    \"email\": \"nicawebob@mailinator.com\",\n                    \"date_added\": \"2023-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Attleboro\",\n                        \"zip\": \"02703\",\n                        \"address1\": \"Attleboro, MA 02703\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con531\",\n                    \"first_name\": \"Ava\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"\",\n                    \"username\": \"con532\",\n                    \"cell_phone\": \"775-949-5567\",\n                    \"last_name\": \"Gray\",\n                    \"sno\": \"520\",\n                    \"email\": \"mehafiqo@mailinator.com\",\n                    \"date_added\": \"2023-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Natchitoches\",\n                        \"zip\": \"71457\",\n                        \"address1\": \"Natchitoches, LA 71457\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con532\",\n                    \"first_name\": \"Ima\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"354-204-2509\",\n                    \"username\": \"con533\",\n                    \"cell_phone\": \"354-204-2509\",\n                    \"last_name\": \"Elton\",\n                    \"sno\": \"521\",\n                    \"email\": \"mebyjufa@mailinator.com\",\n                    \"date_added\": \"2023-09-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con533\",\n                    \"first_name\": \"Vernon\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3337\",\n                    \"username\": \"con534\",\n                    \"cell_phone\": \"119.104.7232\",\n                    \"last_name\": \"Alli\",\n                    \"sno\": \"522\",\n                    \"email\": \"aap00012@mailinator.com\",\n                    \"date_added\": \"2023-10-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Main Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con534\",\n                    \"first_name\": \"Akken\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con535\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"523\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-10-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con535\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3336\",\n                    \"username\": \"con536\",\n                    \"cell_phone\": \"119.104.7233\",\n                    \"last_name\": \"Akken\",\n                    \"sno\": \"524\",\n                    \"email\": \"aap00011@mailinator.com\",\n                    \"date_added\": \"2023-10-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Up Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con536\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con537\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"525\",\n                    \"email\": \"jlachica@haleymarketing.com\",\n                    \"date_added\": \"2023-10-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con537\",\n                    \"title\": \"Administrative\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con538\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Evelyn\",\n                    \"sno\": \"526\",\n                    \"email\": \"gigul@mailinator.com\",\n                    \"date_added\": \"2023-11-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97225\",\n                        \"address1\": \"CapulÃ\\u00adn Park\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con538\",\n                    \"first_name\": \"Austin\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"\",\n                    \"username\": \"con539\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kasimir\",\n                    \"sno\": \"527\",\n                    \"email\": \"fudecav@mailinator.com\",\n                    \"date_added\": \"2023-11-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con539\",\n                    \"first_name\": \"Kaseem\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con540\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"sno\": \"528\",\n                    \"email\": \"gacymulo@mailinator.com\",\n                    \"date_added\": \"2023-11-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11208\",\n                        \"address1\": \"Morris Park Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con540\",\n                    \"first_name\": \"Brianna\"\n                },\n                {\n                    \"referral_source\": \"hvgjhv\",\n                    \"referral_source_id\": \"598\",\n                    \"phone\": \"\",\n                    \"username\": \"con541\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Fatima\",\n                    \"sno\": \"529\",\n                    \"email\": \"suwizerem@mailinator.com\",\n                    \"date_added\": \"2023-11-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Poca\",\n                        \"zip\": \"25159\",\n                        \"address1\": \"Etta Street\",\n                        \"address2\": \"\",\n                        \"state\": \"WV\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con541\",\n                    \"first_name\": \"Leo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con542\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"530\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con542\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con543\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"531\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con543\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con544\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"532\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con544\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con545\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Deirdre\",\n                    \"sno\": \"533\",\n                    \"email\": \"temamoq@mailinator.com\",\n                    \"date_added\": \"2023-11-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Totowa\",\n                        \"zip\": \"07512\",\n                        \"address1\": \"Totowa, NJ 07512\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con545\",\n                    \"first_name\": \"Keely\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"606\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con553\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"534\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con553\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"607\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con554\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"535\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con554\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"608\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con555\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"536\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con555\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"609\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con556\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"537\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con556\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"610\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con557\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"538\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2023-11-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con557\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"611\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con558\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"539\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2024-01-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"000000\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con558\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"612\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con559\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"540\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"date_added\": \"2024-01-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"000000\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con559\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"agagaga\",\n                    \"referral_source_id\": \"620\",\n                    \"phone\": \"\",\n                    \"username\": \"con560\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Angelica\",\n                    \"sno\": \"541\",\n                    \"email\": \"sodotubu@mailinator.com\",\n                    \"date_added\": \"2024-01-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Madison\",\n                        \"zip\": \"53716\",\n                        \"address1\": \"Dolores Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con560\",\n                    \"first_name\": \"Leandra\"\n                },\n                {\n                    \"referral_source\": \"97y7h99h9p\",\n                    \"referral_source_id\": \"621\",\n                    \"phone\": \"\",\n                    \"username\": \"con561\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Indigo\",\n                    \"sno\": \"542\",\n                    \"email\": \"nyheruvy@mailinator.com\",\n                    \"date_added\": \"2024-01-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Corvallis\",\n                        \"zip\": \"97331\",\n                        \"address1\": \"3151 Southwest Washington Way\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con561\",\n                    \"first_name\": \"Summer\"\n                },\n                {\n                    \"referral_source\": \"jilj0j9unl\",\n                    \"referral_source_id\": \"622\",\n                    \"phone\": \"\",\n                    \"username\": \"con562\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Donovan\",\n                    \"sno\": \"543\",\n                    \"email\": \"vihaguseb@mailinator.com\",\n                    \"date_added\": \"2024-01-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Perrysburg\",\n                        \"zip\": \"43551\",\n                        \"address1\": \"6165 Levis Commons Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con562\",\n                    \"first_name\": \"Joel\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"623\",\n                    \"phone\": \"\",\n                    \"username\": \"con563\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Randall\",\n                    \"sno\": \"544\",\n                    \"email\": \"cylozytoba@mailinator.com\",\n                    \"date_added\": \"2024-01-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boca Raton\",\n                        \"zip\": \"33432\",\n                        \"address1\": \"7920 Glades Road\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"Marketing Contract\",\n                    \"id\": \"con563\",\n                    \"first_name\": \"Salvador\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"624\",\n                    \"phone\": \"\",\n                    \"username\": \"con564\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Leigh\",\n                    \"sno\": \"545\",\n                    \"email\": \"risomahumu@mailinator.com\",\n                    \"date_added\": \"2024-01-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con564\",\n                    \"first_name\": \"Sage\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"625\",\n                    \"phone\": \"\",\n                    \"username\": \"con565\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Allegra\",\n                    \"sno\": \"546\",\n                    \"email\": \"mewa@mailinator.com\",\n                    \"date_added\": \"2024-01-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolgeville\",\n                        \"zip\": \"13329\",\n                        \"address1\": \"Village of Dolgeville\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con565\",\n                    \"first_name\": \"Charissa\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"626\",\n                    \"phone\": \"\",\n                    \"username\": \"con566\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kaye\",\n                    \"sno\": \"547\",\n                    \"email\": \"hoqaqoloz@mailinator.com\",\n                    \"date_added\": \"2024-01-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11432\",\n                        \"address1\": \"175-35 Hillside Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con566\",\n                    \"first_name\": \"Veda\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"627\",\n                    \"phone\": \"\",\n                    \"username\": \"con567\",\n                    \"cell_phone\": \"225-616-7495\",\n                    \"last_name\": \"Ramona\",\n                    \"sno\": \"548\",\n                    \"email\": \"kuwodevopi@mailinator.com\",\n                    \"date_added\": \"2024-01-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con567\",\n                    \"first_name\": \"Dacey\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"629\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con568\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"549\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"date_added\": \"2024-01-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con568\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"632\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con569\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"550\",\n                    \"email\": \"jlachica123@haleymarketing.com\",\n                    \"date_added\": \"2024-01-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con569\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"635\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con570\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"551\",\n                    \"email\": \"testing01242024@mailinator.com\",\n                    \"date_added\": \"2024-01-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con570\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"654\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con571\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"552\",\n                    \"email\": \"testing01242024.2@mailinator.com\",\n                    \"date_added\": \"2024-01-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con571\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app38\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hut\",\n                    \"sno\": \"553\",\n                    \"email\": \"jabba.hut@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32806\",\n                        \"address1\": \"1400 Sligh Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"title\": \"Jabba the Hut\",\n                    \"id\": \"app38\",\n                    \"first_name\": \"Jabba\"\n                },\n                {\n                    \"referral_source\": \"Open API\",\n                    \"referral_source_id\": \"317\",\n                    \"phone\": \"\",\n                    \"username\": \"con572\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"I think so\",\n                    \"sno\": \"556\",\n                    \"email\": \"stars0124@mailinator.com\",\n                    \"date_added\": \"2024-01-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32806\",\n                        \"address1\": \"1400 Test Boulevard\",\n                        \"address2\": \"This\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"This or That\",\n                    \"id\": \"con572\",\n                    \"first_name\": \"Will it Work\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"644\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"app39\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"CHANGE\",\n                    \"sno\": \"558\",\n                    \"email\": \"testertonHRM@email.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"QA Analyst\",\n                    \"id\": \"app39\",\n                    \"first_name\": \"TestertronHRMCHANGE\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"643\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con573\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"CRMHRMMM\",\n                    \"sno\": \"559\",\n                    \"email\": \"testertonCRMHRM@email.com\",\n                    \"date_added\": \"2024-01-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con573\",\n                    \"first_name\": \"TestertronChanged23\"\n                },\n                {\n                    \"referral_source\": \"Open API\",\n                    \"referral_source_id\": \"637\",\n                    \"phone\": \"\",\n                    \"username\": \"con574\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"APP\",\n                    \"sno\": \"560\",\n                    \"email\": \"TesterAPP@email.com\",\n                    \"date_added\": \"2024-01-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"QA Analyst\",\n                    \"id\": \"con574\",\n                    \"first_name\": \"TesterAPP\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"648\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con575\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"CHANGE\",\n                    \"sno\": \"561\",\n                    \"email\": \"qatester@email.com\",\n                    \"date_added\": \"2024-01-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con575\",\n                    \"first_name\": \"QA Change\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"649\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con576\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"562\",\n                    \"email\": \"duplicatetest@email.com\",\n                    \"date_added\": \"2024-02-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con576\",\n                    \"first_name\": \"Duplicate\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"651\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con577\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Change\",\n                    \"sno\": \"563\",\n                    \"email\": \"duplicatetest@mailinator.com\",\n                    \"date_added\": \"2024-02-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con577\",\n                    \"first_name\": \"Duplicate\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"652\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con578\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Tests\",\n                    \"sno\": \"564\",\n                    \"email\": \"testingagain@mailinator.com\",\n                    \"date_added\": \"2024-02-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94039\",\n                        \"address1\": \"629 Slide Rd\",\n                        \"address2\": \"State Route 3\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con578\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"653\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con579\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Tests\",\n                    \"sno\": \"565\",\n                    \"email\": \"testingagain2024-02-01@mailinator.com\",\n                    \"date_added\": \"2024-02-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"State Road 23\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con579\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"655\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con580\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"566\",\n                    \"email\": \"testing01242024.3@mailinator.com\",\n                    \"date_added\": \"2024-02-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con580\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"676\",\n                    \"phone\": \"910.139.3335\",\n                    \"username\": \"con581\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"last_name\": \"Testnation\",\n                    \"sno\": \"567\",\n                    \"email\": \"testing01242024.4@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con581\",\n                    \"first_name\": \"Ail\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"685\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con583\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Leut\",\n                    \"sno\": \"568\",\n                    \"email\": \"haleyams7198.0129@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con583\",\n                    \"first_name\": \"Diir\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"687\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con584\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Leut\",\n                    \"sno\": \"569\",\n                    \"email\": \"haleyams7198.0130@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con584\",\n                    \"first_name\": \"Diir\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"688\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con585\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Leut\",\n                    \"sno\": \"570\",\n                    \"email\": \"haleyams7198.0134@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con585\",\n                    \"first_name\": \"Diir\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"689\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con586\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Sure\",\n                    \"sno\": \"571\",\n                    \"email\": \"haleyams7198.1134@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"1245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"con586\",\n                    \"first_name\": \"Not\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"690\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con587\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Okay\",\n                    \"sno\": \"572\",\n                    \"email\": \"1234567890@mailinator.com\",\n                    \"date_added\": \"2024-02-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con587\",\n                    \"first_name\": \"Hmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"691\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con588\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Okay\",\n                    \"sno\": \"573\",\n                    \"email\": \"1234567890.97@mailinator.com\",\n                    \"date_added\": \"2024-02-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con588\",\n                    \"first_name\": \"Hmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"692\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con589\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"574\",\n                    \"email\": \"12345267890.97@mailinator.com\",\n                    \"date_added\": \"2024-02-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con589\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"693\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con590\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"575\",\n                    \"email\": \"12345267890.97@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con590\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"694\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con591\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"576\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con591\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"695\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con592\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"577\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con592\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"696\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con593\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"578\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con593\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"697\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con594\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"579\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con594\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"698\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con595\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"580\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con595\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"699\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con596\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"581\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con596\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"700\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con597\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"582\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con597\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"701\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con598\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"583\",\n                    \"email\": \"testonly123321@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con598\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"702\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con599\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ok\",\n                    \"sno\": \"584\",\n                    \"email\": \"testonly123321@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con599\",\n                    \"first_name\": \"Hmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"703\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con600\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Only\",\n                    \"sno\": \"585\",\n                    \"email\": \"testonlyaccount1@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con600\",\n                    \"first_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"704\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con601\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Change\",\n                    \"sno\": \"586\",\n                    \"email\": \"testonlyaccount1@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con601\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"705\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con602\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Cool\",\n                    \"sno\": \"587\",\n                    \"email\": \"12345267890.99@mailinator.com\",\n                    \"date_added\": \"2024-03-04\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"10061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con602\",\n                    \"first_name\": \"Hummmmm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"707\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con603\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Change\",\n                    \"sno\": \"588\",\n                    \"email\": \"retestonlyaccount@mailinator.com\",\n                    \"date_added\": \"2024-03-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con603\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"708\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con604\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"589\",\n                    \"email\": \"12345267890.91119@mailinator.com\",\n                    \"date_added\": \"2024-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con604\",\n                    \"first_name\": \"Ammm\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"709\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con605\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Stop\",\n                    \"sno\": \"590\",\n                    \"email\": \"02345267890.91119@mailinator.com\",\n                    \"date_added\": \"2024-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con605\",\n                    \"first_name\": \"Ammem\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"username\": \"con606\",\n                    \"last_name\": \"Stop\",\n                    \"sno\": \"591\",\n                    \"email\": \"ma12131r@mailinator.com\",\n                    \"date_added\": \"2024-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con606\",\n                    \"title\": \"IT Manager\",\n                    \"first_name\": \"Go\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"712\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con607\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"592\",\n                    \"email\": \"duplicatetesteron@mailinator.com\",\n                    \"date_added\": \"2024-03-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con607\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"713\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con608\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"593\",\n                    \"email\": \"johntesterfu@mailinator.com\",\n                    \"date_added\": \"2024-04-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con608\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"714\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con609\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"594\",\n                    \"email\": \"johntesterfileupload@mailinator.com\",\n                    \"date_added\": \"2024-04-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con609\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"715\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con610\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"595\",\n                    \"email\": \"johntesterfileupload1@mailinator.com\",\n                    \"date_added\": \"2024-04-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con610\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"716\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con611\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"596\",\n                    \"email\": \"johntesterfileupload2@mailinator.com\",\n                    \"date_added\": \"2024-04-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con611\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"717\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con612\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Me See\",\n                    \"sno\": \"597\",\n                    \"email\": \"today-2024@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con612\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"720\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con613\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Me See\",\n                    \"sno\": \"598\",\n                    \"email\": \"today-2024-02@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con613\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"721\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con614\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"599\",\n                    \"email\": \"thursday@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con614\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"722\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con615\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"600\",\n                    \"email\": \"notsure01@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con615\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"723\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con616\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Ma Sa\",\n                    \"sno\": \"601\",\n                    \"email\": \"notsure02@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con616\",\n                    \"first_name\": \"Mats\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"726\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con617\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Ma Sa\",\n                    \"sno\": \"602\",\n                    \"email\": \"notsure03@mailinator.com\",\n                    \"date_added\": \"2024-04-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con617\",\n                    \"first_name\": \"Mats\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"725\",\n                    \"phone\": \"842.930.1244\",\n                    \"username\": \"con618\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"last_name\": \"Ak\",\n                    \"sno\": \"603\",\n                    \"email\": \"johntesterfileupload22@mailinator.com\",\n                    \"date_added\": \"2024-04-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con618\",\n                    \"first_name\": \"Change\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"727\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con619\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me Sa\",\n                    \"sno\": \"604\",\n                    \"email\": \"notsure04@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con619\",\n                    \"first_name\": \"Mets\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"728\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con620\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Mo Sa\",\n                    \"sno\": \"605\",\n                    \"email\": \"notsure05@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con620\",\n                    \"first_name\": \"Mots\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"729\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con621\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Mu Sa\",\n                    \"sno\": \"606\",\n                    \"email\": \"notsure06@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con621\",\n                    \"first_name\": \"Muts\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con622\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"My Sa\",\n                    \"sno\": \"607\",\n                    \"email\": \"notsure07@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con622\",\n                    \"first_name\": \"Go\"\n                },\n                {\n                    \"referral_source\": \"Indeed\",\n                    \"referral_source_id\": \"730\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con623\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"My Sa\",\n                    \"sno\": \"608\",\n                    \"email\": \"notsure09@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con623\",\n                    \"first_name\": \"Myts\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"732\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con624\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"609\",\n                    \"email\": \"sourcetypetest1@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con624\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con625\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"610\",\n                    \"email\": \"sourcetypetest2@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con625\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con626\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"611\",\n                    \"email\": \"sourcetypetest3@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con626\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con627\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"612\",\n                    \"email\": \"sourcetypetest5@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con627\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con628\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"613\",\n                    \"email\": \"sourcetypetest6@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con628\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con629\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"614\",\n                    \"email\": \"sourcetypetest7@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con629\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con630\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"615\",\n                    \"email\": \"sourcetypetest8@mailinator.com\",\n                    \"date_added\": \"2024-04-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con630\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con631\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"616\",\n                    \"email\": \"monday@mailinator.com\",\n                    \"date_added\": \"2024-05-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con631\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con632\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"617\",\n                    \"email\": \"monday-01@mailinator.com\",\n                    \"date_added\": \"2024-05-20\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con632\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con633\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"618\",\n                    \"email\": \"tuesday-02@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con633\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con634\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"619\",\n                    \"email\": \"sourcetyperetestonly1@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con634\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Indeed\",\n                    \"referral_source_id\": \"730\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con635\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"620\",\n                    \"email\": \"sourcetyperetestonly123321@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con635\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con636\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"621\",\n                    \"email\": \"sourcetyperetestonly123322@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con636\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con637\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"622\",\n                    \"email\": \"sourcetyperetestonly123323@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con637\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con638\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"623\",\n                    \"email\": \"sourcetyperetestonly123325@mailinator.com\",\n                    \"date_added\": \"2024-05-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con638\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con639\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"624\",\n                    \"email\": \"sourcetyperetestonly123326@mailinator.com\",\n                    \"date_added\": \"2024-05-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con639\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con640\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"625\",\n                    \"email\": \"sourcetyperetestonly123327@mailinator.com\",\n                    \"date_added\": \"2024-05-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con640\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con641\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"626\",\n                    \"email\": \"sourcetyperetestonlyprod@mailinator.com\",\n                    \"date_added\": \"2024-05-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con641\",\n                    \"first_name\": \"Let Update\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con642\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Too\",\n                    \"sno\": \"627\",\n                    \"email\": \"sourcetyperetestonlyprod1@mailinator.com\",\n                    \"date_added\": \"2024-06-07\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con642\",\n                    \"first_name\": \"Go\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"95969972\",\n                    \"username\": \"con643\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Minerva\",\n                    \"sno\": \"628\",\n                    \"email\": \"pigewylek@mailinator.com\",\n                    \"date_added\": \"2024-06-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con643\",\n                    \"first_name\": \"Josephine\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"32373806\",\n                    \"username\": \"con644\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Arden\",\n                    \"sno\": \"629\",\n                    \"email\": \"hynaf@mailinator.com\",\n                    \"date_added\": \"2024-06-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con644\",\n                    \"first_name\": \"Kelly\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"67066094\",\n                    \"username\": \"con645\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Blaine\",\n                    \"sno\": \"630\",\n                    \"email\": \"pamoha@mailinator.com\",\n                    \"date_added\": \"2024-06-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lubec\",\n                        \"zip\": \"04652\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con645\",\n                    \"first_name\": \"Alana\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con646\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"631\",\n                    \"email\": \"wednesday-01@mailinator.com\",\n                    \"date_added\": \"2024-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con646\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con647\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"632\",\n                    \"email\": \"wednesday-03@mailinator.com\",\n                    \"date_added\": \"2024-06-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con647\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con648\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"633\",\n                    \"email\": \"testerontest123@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con648\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con649\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"634\",\n                    \"email\": \"testerontest500badrequest@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con649\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con650\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"635\",\n                    \"email\": \"testerontest500badrequest1@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con650\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con651\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"636\",\n                    \"email\": \"testerontest500badrequest2@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con651\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con652\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"637\",\n                    \"email\": \"friday-01@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con652\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con653\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"638\",\n                    \"email\": \"500internalservererrortest@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con653\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con654\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"639\",\n                    \"email\": \"500internalservererrortest1@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con654\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con655\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"640\",\n                    \"email\": \"500internalservererrortest2@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con655\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con656\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"641\",\n                    \"email\": \"friday-02@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con656\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con657\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"642\",\n                    \"email\": \"friday-03@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con657\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con658\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"643\",\n                    \"email\": \"RetestAkkenPleaseWor1k@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con658\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con659\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"644\",\n                    \"email\": \"RetestAkkenPleaseWork2@mailinator.com\",\n                    \"date_added\": \"2024-06-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con659\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"647-933-2695\",\n                    \"username\": \"con660\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Keefe\",\n                    \"sno\": \"645\",\n                    \"email\": \"qasudusip@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con660\",\n                    \"first_name\": \"Athena\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"79332695\",\n                    \"username\": \"con661\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Keefe\",\n                    \"sno\": \"646\",\n                    \"email\": \"qasudusip@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con661\",\n                    \"first_name\": \"Athena\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-322-6011\",\n                    \"username\": \"con662\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"sno\": \"647\",\n                    \"email\": \"zudyfo@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"con662\",\n                    \"first_name\": \"Garth\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"83226011\",\n                    \"username\": \"con663\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"sno\": \"648\",\n                    \"email\": \"zudyfo@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"con663\",\n                    \"first_name\": \"Garth\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-674-2802\",\n                    \"username\": \"con664\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"649\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con664\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"86742802\",\n                    \"username\": \"con665\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"650\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con665\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con666\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"651\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con666\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con667\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"652\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con667\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con668\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"653\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con668\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con669\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"654\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con669\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con670\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"655\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con670\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"con671\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"656\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con671\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-674-2802\",\n                    \"username\": \"con672\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"657\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con672\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-674-2802\",\n                    \"username\": \"con673\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"658\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con673\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-674-2802\",\n                    \"username\": \"con674\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"659\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con674\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-674-2802\",\n                    \"username\": \"con675\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"sno\": \"660\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"date_added\": \"2024-06-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con675\",\n                    \"first_name\": \"Hanna\"\n                },\n                {\n                    \"referral_source\": \"test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"888-219-9681\",\n                    \"username\": \"con676\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"sno\": \"661\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"date_added\": \"2024-06-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con676\",\n                    \"first_name\": \"Preston\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"82199681\",\n                    \"username\": \"con677\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"sno\": \"662\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"date_added\": \"2024-06-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con677\",\n                    \"first_name\": \"Preston\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-219-9681\",\n                    \"username\": \"con678\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"sno\": \"663\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"date_added\": \"2024-06-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con678\",\n                    \"first_name\": \"Preston\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"888-219-9681\",\n                    \"username\": \"con679\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"sno\": \"664\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"date_added\": \"2024-06-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con679\",\n                    \"first_name\": \"Preston\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con680\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"665\",\n                    \"email\": \"TestOnlyTesteronakkentest@gmail.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con680\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con681\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"666\",\n                    \"email\": \"TestOnlyTesteronakkentest@gmail.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con681\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con682\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"667\",\n                    \"email\": \"AkkenTest123@gmail.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con682\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con683\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"668\",\n                    \"email\": \"AkkenTest123@gmail.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con683\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"434-451-3052\",\n                    \"username\": \"con684\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Yuli\",\n                    \"sno\": \"669\",\n                    \"email\": \"nypyvam@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con684\",\n                    \"first_name\": \"Ella\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"44513052\",\n                    \"username\": \"con685\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Yuli\",\n                    \"sno\": \"670\",\n                    \"email\": \"nypyvam@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con685\",\n                    \"first_name\": \"Ella\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"901-253-7699\",\n                    \"username\": \"con686\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Karyn\",\n                    \"sno\": \"671\",\n                    \"email\": \"vijoqiv@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con686\",\n                    \"first_name\": \"Brenda\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"12537699\",\n                    \"username\": \"con687\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Karyn\",\n                    \"sno\": \"672\",\n                    \"email\": \"vijoqiv@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con687\",\n                    \"first_name\": \"Brenda\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"318-567-4653\",\n                    \"username\": \"con688\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"April\",\n                    \"sno\": \"673\",\n                    \"email\": \"qovikip@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con688\",\n                    \"first_name\": \"Madeson\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"85674653\",\n                    \"username\": \"con689\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"April\",\n                    \"sno\": \"674\",\n                    \"email\": \"qovikip@mailinator.com\",\n                    \"date_added\": \"2024-06-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con689\",\n                    \"first_name\": \"Madeson\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"857-697-9594\",\n                    \"username\": \"con690\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"sno\": \"675\",\n                    \"email\": \"zode@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con690\",\n                    \"first_name\": \"Wynter\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"76979594\",\n                    \"username\": \"con691\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"sno\": \"676\",\n                    \"email\": \"zode@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con691\",\n                    \"first_name\": \"Wynter\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"53434942\",\n                    \"username\": \"con692\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dillon\",\n                    \"sno\": \"677\",\n                    \"email\": \"sezaj@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con692\",\n                    \"first_name\": \"Maxwell\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"82254499\",\n                    \"username\": \"con693\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dahlia\",\n                    \"sno\": \"678\",\n                    \"email\": \"qutuqir@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con693\",\n                    \"first_name\": \"Callum\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"72667858\",\n                    \"username\": \"con694\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Erin\",\n                    \"sno\": \"679\",\n                    \"email\": \"nopirevaza@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con694\",\n                    \"first_name\": \"Elvis\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"53691909\",\n                    \"username\": \"con695\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ariel\",\n                    \"sno\": \"680\",\n                    \"email\": \"wunusu@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con695\",\n                    \"first_name\": \"Samantha\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"89258854\",\n                    \"username\": \"con696\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Jemima\",\n                    \"sno\": \"681\",\n                    \"email\": \"vevixo@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con696\",\n                    \"first_name\": \"Xantha\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"83961638\",\n                    \"username\": \"con697\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Abdul\",\n                    \"sno\": \"682\",\n                    \"email\": \"deja@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con697\",\n                    \"first_name\": \"Steel\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"\",\n                    \"username\": \"con698\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Forrest\",\n                    \"sno\": \"683\",\n                    \"email\": \"xuvevatoxi@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con698\",\n                    \"first_name\": \"Quinn\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"84517543\",\n                    \"username\": \"con699\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Avram\",\n                    \"sno\": \"684\",\n                    \"email\": \"bizetite@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con699\",\n                    \"first_name\": \"Inga\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"56075025\",\n                    \"username\": \"con700\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"sno\": \"685\",\n                    \"email\": \"tihela@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dexter\",\n                        \"zip\": \"04930\",\n                        \"address1\": \"209 Line Road\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con700\",\n                    \"first_name\": \"Hedy\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"phone\": \"58947419\",\n                    \"username\": \"con701\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Bertha\",\n                    \"sno\": \"686\",\n                    \"email\": \"nadehinufo@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dexter\",\n                        \"zip\": \"04930\",\n                        \"address1\": \"209 Line Road\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con701\",\n                    \"first_name\": \"Solomon\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"782-991-1462\",\n                    \"username\": \"con702\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Adria\",\n                    \"sno\": \"687\",\n                    \"email\": \"xequ@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con702\",\n                    \"first_name\": \"Yoshio\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-444-1494\",\n                    \"username\": \"con703\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kenyon\",\n                    \"sno\": \"688\",\n                    \"email\": \"nagyxu@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"id\": \"con703\",\n                    \"first_name\": \"Byron\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"888-515-9182\",\n                    \"username\": \"con704\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Quail\",\n                    \"sno\": \"689\",\n                    \"email\": \"qurynigo@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con704\",\n                    \"first_name\": \"Raven\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"463-673-2699\",\n                    \"username\": \"con705\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alyssa\",\n                    \"sno\": \"690\",\n                    \"email\": \"barinawy@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lisbon\",\n                        \"zip\": \"04250\",\n                        \"address1\": \"209 Lisbon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con705\",\n                    \"first_name\": \"Leilani\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"931-953-7149\",\n                    \"username\": \"con706\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ruth\",\n                    \"sno\": \"691\",\n                    \"email\": \"jumijonilu@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con706\",\n                    \"first_name\": \"Laurel\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"828-969-7084\",\n                    \"username\": \"con707\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Naida\",\n                    \"sno\": \"692\",\n                    \"email\": \"vagemute@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con707\",\n                    \"first_name\": \"Pearl\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"832-672-4369\",\n                    \"username\": \"con708\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Cadman\",\n                    \"sno\": \"693\",\n                    \"email\": \"duxywojyn@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con708\",\n                    \"first_name\": \"Owen\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-515-7409\",\n                    \"username\": \"con709\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hermione\",\n                    \"sno\": \"694\",\n                    \"email\": \"hyzipyfi@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con709\",\n                    \"first_name\": \"Kadeem\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-523-2711\",\n                    \"username\": \"con710\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"sno\": \"695\",\n                    \"email\": \"jybyka@mailinator.com\",\n                    \"date_added\": \"2024-06-21\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con710\",\n                    \"first_name\": \"Neville\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con711\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"696\",\n                    \"email\": \"TryingTest@gmail.com\",\n                    \"date_added\": \"2024-06-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con711\",\n                    \"first_name\": \"Trying\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con712\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"697\",\n                    \"email\": \"tryingtest123654@gmail.com\",\n                    \"date_added\": \"2024-06-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con712\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-722-9772\",\n                    \"username\": \"con713\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"sno\": \"698\",\n                    \"email\": \"zaxif@mailinator.com\",\n                    \"date_added\": \"2024-06-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con713\",\n                    \"first_name\": \"Flynn\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"\",\n                    \"username\": \"con714\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Fatima\",\n                    \"sno\": \"699\",\n                    \"email\": \"sagisihy@mailinator.com\",\n                    \"date_added\": \"2024-06-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con714\",\n                    \"first_name\": \"Benedict\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con715\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"700\",\n                    \"email\": \"resumetestroon@gmail.com\",\n                    \"date_added\": \"2024-06-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con715\",\n                    \"first_name\": \"TestOnly\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"username\": \"con716\",\n                    \"last_name\": \"Chanda\",\n                    \"sno\": \"701\",\n                    \"email\": \"pude@mailinator.com\",\n                    \"date_added\": \"2024-06-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton Highlands\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"con716\",\n                    \"title\": \"Assistant\",\n                    \"first_name\": \"Gloria\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"183\",\n                    \"username\": \"con717\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Velma\",\n                    \"sno\": \"702\",\n                    \"email\": \"sakaky@mailinator.com\",\n                    \"date_added\": \"2024-06-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con717\",\n                    \"first_name\": \"Castor\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"\",\n                    \"username\": \"con718\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Justine\",\n                    \"sno\": \"703\",\n                    \"email\": \"lyxer@mailinator.com\",\n                    \"date_added\": \"2024-07-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"94114\",\n                        \"address1\": \"Mission Dolores Park\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con718\",\n                    \"first_name\": \"Leonard\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"85924162\",\n                    \"username\": \"con719\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tamekah\",\n                    \"sno\": \"704\",\n                    \"email\": \"tufit@mailinator.com\",\n                    \"date_added\": \"2024-07-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"id\": \"con719\",\n                    \"first_name\": \"Renee\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"87742557\",\n                    \"username\": \"con720\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Quin\",\n                    \"sno\": \"705\",\n                    \"email\": \"gidatejeri@mailinator.com\",\n                    \"date_added\": \"2024-07-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con720\",\n                    \"first_name\": \"August\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"82989963\",\n                    \"username\": \"con721\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Jacob\",\n                    \"sno\": \"706\",\n                    \"email\": \"lucyroha@mailinator.com\",\n                    \"date_added\": \"2024-07-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con721\",\n                    \"first_name\": \"Zachery\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"79429269\",\n                    \"username\": \"con722\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Briar\",\n                    \"sno\": \"707\",\n                    \"email\": \"xawito@mailinator.com\",\n                    \"date_added\": \"2024-07-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con722\",\n                    \"first_name\": \"Declan\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-213-6069\",\n                    \"username\": \"con723\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nathaniel\",\n                    \"sno\": \"708\",\n                    \"email\": \"rywucug016@mailinator.com\",\n                    \"date_added\": \"2024-07-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"IT Manager\",\n                    \"id\": \"con723\",\n                    \"first_name\": \"Courtney\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con724\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"709\",\n                    \"email\": \"tuesday-021@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con724\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con725\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"710\",\n                    \"email\": \"tuesday-02122@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con725\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-301-7657\",\n                    \"username\": \"con726\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Zenia\",\n                    \"sno\": \"711\",\n                    \"email\": \"nuvexyvuti@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con726\",\n                    \"first_name\": \"Branden\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-836-4619\",\n                    \"username\": \"con727\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wesley\",\n                    \"sno\": \"712\",\n                    \"email\": \"kesaf@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con727\",\n                    \"first_name\": \"Wang\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-573-5042\",\n                    \"username\": \"con728\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Amethyst\",\n                    \"sno\": \"713\",\n                    \"email\": \"zypabu@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Marketing Contract\",\n                    \"id\": \"con728\",\n                    \"first_name\": \"Burton\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-415-3757\",\n                    \"username\": \"con729\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Pearl\",\n                    \"sno\": \"714\",\n                    \"email\": \"cekygon@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con729\",\n                    \"first_name\": \"Boris\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con730\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"715\",\n                    \"email\": \"tuesday2546859@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con730\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"505-699-7281\",\n                    \"username\": \"con731\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Angela\",\n                    \"sno\": \"716\",\n                    \"email\": \"wowagewez@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con731\",\n                    \"first_name\": \"Colton\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888-502-2981\",\n                    \"username\": \"con732\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Inez\",\n                    \"sno\": \"717\",\n                    \"email\": \"jufofoco@mailinator.com\",\n                    \"date_added\": \"2024-07-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con732\",\n                    \"first_name\": \"Mannix\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con733\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See Three\",\n                    \"sno\": \"718\",\n                    \"email\": \"tuesday2546859514@mailinator.com\",\n                    \"date_added\": \"2024-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con733\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"512-623-3868\",\n                    \"username\": \"con734\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aubrey\",\n                    \"sno\": \"719\",\n                    \"email\": \"nuvibici@mailinator.com\",\n                    \"date_added\": \"2024-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con734\",\n                    \"first_name\": \"Gretchen\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1574\",\n                    \"username\": \"con735\",\n                    \"cell_phone\": \"888.000.1574\",\n                    \"last_name\": \"This Be Duplicate\",\n                    \"sno\": \"720\",\n                    \"email\": \"THISisaSAMPE@mailinator.com\",\n                    \"date_added\": \"2024-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con735\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"281-867-3573\",\n                    \"username\": \"con736\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Samantha\",\n                    \"sno\": \"721\",\n                    \"email\": \"kyrinix@mailinator.com\",\n                    \"date_added\": \"2024-07-11\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con736\",\n                    \"first_name\": \"Jaden\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-654-7881\",\n                    \"username\": \"con741\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alana\",\n                    \"sno\": \"722\",\n                    \"email\": \"tebuceti@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con741\",\n                    \"first_name\": \"Inga\"\n                },\n                {\n                    \"referral_source\": \"abracadabra-hocus-pocus\",\n                    \"referral_source_id\": \"734\",\n                    \"phone\": \"888-561-5488\",\n                    \"username\": \"con742\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Derek\",\n                    \"sno\": \"723\",\n                    \"email\": \"nocihebo@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con742\",\n                    \"first_name\": \"Xena\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"219-534-9534\",\n                    \"username\": \"con743\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nicole\",\n                    \"sno\": \"724\",\n                    \"email\": \"dolohet@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con743\",\n                    \"first_name\": \"Paula\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-923-2579\",\n                    \"username\": \"con744\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Idola\",\n                    \"sno\": \"725\",\n                    \"email\": \"cisy@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con744\",\n                    \"first_name\": \"Patrick\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-715-8958\",\n                    \"username\": \"con745\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Mallory\",\n                    \"sno\": \"726\",\n                    \"email\": \"sawidebas@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con745\",\n                    \"first_name\": \"Rosalyn\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-401-6029\",\n                    \"username\": \"con746\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Lee\",\n                    \"sno\": \"727\",\n                    \"email\": \"cimudi@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con746\",\n                    \"first_name\": \"Hermione\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"517-243-4682\",\n                    \"username\": \"con747\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Marsden\",\n                    \"sno\": \"728\",\n                    \"email\": \"dacywim@mailinator.com\",\n                    \"date_added\": \"2024-07-13\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con747\",\n                    \"first_name\": \"Herrod\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-596-2562\",\n                    \"username\": \"con748\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Gretchen\",\n                    \"sno\": \"729\",\n                    \"email\": \"sasep@mailinator.com\",\n                    \"date_added\": \"2024-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con748\",\n                    \"first_name\": \"Christine\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-273-8031\",\n                    \"username\": \"con749\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Harlan\",\n                    \"sno\": \"730\",\n                    \"email\": \"fyteqyv@mailinator.com\",\n                    \"date_added\": \"2024-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con749\",\n                    \"first_name\": \"Rafael\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-929-2354\",\n                    \"username\": \"con750\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chelsea\",\n                    \"sno\": \"731\",\n                    \"email\": \"wito@mailinator.com\",\n                    \"date_added\": \"2024-07-14\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con750\",\n                    \"first_name\": \"Clio\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-717-4764\",\n                    \"username\": \"con751\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Abdul\",\n                    \"sno\": \"732\",\n                    \"email\": \"doxiboxahu@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con751\",\n                    \"first_name\": \"Stone\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-568-6379\",\n                    \"username\": \"con752\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Finn\",\n                    \"sno\": \"733\",\n                    \"email\": \"majo@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con752\",\n                    \"first_name\": \"Ginger\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-699-8547\",\n                    \"username\": \"con753\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Linus\",\n                    \"sno\": \"734\",\n                    \"email\": \"ryquxihymi@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con753\",\n                    \"first_name\": \"Dalton\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"519-684-6978\",\n                    \"username\": \"con754\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Christopher\",\n                    \"sno\": \"735\",\n                    \"email\": \"micyf@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con754\",\n                    \"first_name\": \"Scarlett\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"252-214-9179\",\n                    \"username\": \"con755\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ciaran\",\n                    \"sno\": \"736\",\n                    \"email\": \"pevila@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60610\",\n                        \"address1\": \"1065 North Orleans Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con755\",\n                    \"first_name\": \"Sigourney\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"408-883-4482\",\n                    \"username\": \"con756\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aiko\",\n                    \"sno\": \"737\",\n                    \"email\": \"kolakah@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lewis\",\n                        \"zip\": \"81327\",\n                        \"address1\": \"20755 Lebanon Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con756\",\n                    \"first_name\": \"Camilla\"\n                },\n                {\n                    \"referral_source\": \"other\",\n                    \"referral_source_id\": \"202\",\n                    \"phone\": \"829-836-3541\",\n                    \"username\": \"con757\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wing\",\n                    \"sno\": \"738\",\n                    \"email\": \"pipuhy@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con757\",\n                    \"first_name\": \"Stephen\"\n                },\n                {\n                    \"referral_source\": \"Ut est explicabo Pa\",\n                    \"referral_source_id\": \"736\",\n                    \"phone\": \"872-239-8505\",\n                    \"username\": \"con758\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Charlotte\",\n                    \"sno\": \"739\",\n                    \"email\": \"lajidol@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84108\",\n                        \"address1\": \"Administration Building\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con758\",\n                    \"first_name\": \"Whilemina\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"786-444-8167\",\n                    \"username\": \"con759\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Steel\",\n                    \"sno\": \"740\",\n                    \"email\": \"suhuxileza@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Atascadero\",\n                        \"zip\": \"93422\",\n                        \"address1\": \"Dolores Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con759\",\n                    \"first_name\": \"Azalia\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"337-499-1563\",\n                    \"username\": \"con760\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Jermaine\",\n                    \"sno\": \"741\",\n                    \"email\": \"wifucyjevo@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37914\",\n                        \"address1\": \"TDOT Region 1 Incident Management\",\n                        \"address2\": \"\",\n                        \"state\": \"TN\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con760\",\n                    \"first_name\": \"Leila\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"742-443-1424\",\n                    \"username\": \"con761\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Boone\",\n                    \"sno\": \"742\",\n                    \"email\": \"fydamiwoxu@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con761\",\n                    \"first_name\": \"Piper\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"404-931-9067\",\n                    \"username\": \"con762\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hayden\",\n                    \"sno\": \"743\",\n                    \"email\": \"hujikin@mailinator.com\",\n                    \"date_added\": \"2024-07-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con762\",\n                    \"first_name\": \"Hayfa\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-381-5507\",\n                    \"username\": \"con763\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Yoshio\",\n                    \"sno\": \"744\",\n                    \"email\": \"lyryxu@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con763\",\n                    \"first_name\": \"Jocelyn\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-591-8589\",\n                    \"username\": \"con764\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"sno\": \"745\",\n                    \"email\": \"fokizen@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con764\",\n                    \"first_name\": \"Regan\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"636-526-9475\",\n                    \"username\": \"con765\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Joy\",\n                    \"sno\": \"746\",\n                    \"email\": \"fowo@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11435\",\n                        \"address1\": \"144-01 Liberty Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con765\",\n                    \"first_name\": \"Kadeem\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-591-8589\",\n                    \"username\": \"con766\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"sno\": \"747\",\n                    \"email\": \"fokizenkhjkhkkj@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con766\",\n                    \"first_name\": \"Regan\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"218-586-1386\",\n                    \"username\": \"con767\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Bolton\",\n                    \"sno\": \"748\",\n                    \"email\": \"moxezuvaw@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con767\",\n                    \"first_name\": \"Mercedes\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"577-406-5894\",\n                    \"username\": \"con768\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kirk\",\n                    \"sno\": \"749\",\n                    \"email\": \"vyfiforogo@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con768\",\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con769\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"sno\": \"750\",\n                    \"email\": \"fokizenkhjk878678hkkj@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"test job\",\n                    \"id\": \"con769\",\n                    \"first_name\": \"Regan\"\n                },\n                {\n                    \"referral_source\": \"Sequi animi nisi id\",\n                    \"referral_source_id\": \"737\",\n                    \"phone\": \"572-836-8315\",\n                    \"username\": \"con770\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nina\",\n                    \"sno\": \"751\",\n                    \"email\": \"fijujipeh@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con770\",\n                    \"first_name\": \"Grady\"\n                },\n                {\n                    \"referral_source\": \"Sequi animi nisi id\",\n                    \"referral_source_id\": \"737\",\n                    \"phone\": \"367-289-6604\",\n                    \"username\": \"con771\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Gisela\",\n                    \"sno\": \"752\",\n                    \"email\": \"viwogazo@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"108 Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con771\",\n                    \"first_name\": \"Ferris\"\n                },\n                {\n                    \"referral_source\": \"Other\",\n                    \"referral_source_id\": \"202\",\n                    \"phone\": \"835-373-2277\",\n                    \"username\": \"con772\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dahlia\",\n                    \"sno\": \"753\",\n                    \"email\": \"dabijusem@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"108 Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con772\",\n                    \"first_name\": \"Leroy\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"478-698-3381\",\n                    \"username\": \"con773\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Shaffer\",\n                    \"sno\": \"754\",\n                    \"email\": \"kixy@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con773\",\n                    \"first_name\": \"Rogan\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"888-435-2681\",\n                    \"username\": \"con774\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tobias\",\n                    \"sno\": \"755\",\n                    \"email\": \"recowu@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con774\",\n                    \"first_name\": \"Jessica\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"517-258-3598\",\n                    \"username\": \"con775\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Mathews\",\n                    \"sno\": \"756\",\n                    \"email\": \"jijali@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con775\",\n                    \"first_name\": \"Barry\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"507-447-8584\",\n                    \"username\": \"con776\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Sargent\",\n                    \"sno\": \"757\",\n                    \"email\": \"cinat@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con776\",\n                    \"first_name\": \"Raymond\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con777\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Moses\",\n                    \"sno\": \"758\",\n                    \"email\": \"desuxolu@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con777\",\n                    \"first_name\": \"Basil\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con778\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Eliana\",\n                    \"sno\": \"759\",\n                    \"email\": \"niwimi@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con778\",\n                    \"first_name\": \"Slade\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"952-745-1526\",\n                    \"username\": \"con779\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Johnston\",\n                    \"sno\": \"760\",\n                    \"email\": \"ruhamut@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con779\",\n                    \"first_name\": \"Danielle\"\n                },\n                {\n                    \"referral_source\": \"OTHER DESCRIPTION\",\n                    \"referral_source_id\": \"739\",\n                    \"phone\": \"844-318-5769\",\n                    \"username\": \"con780\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Serena\",\n                    \"sno\": \"761\",\n                    \"email\": \"giheri@mailinator.com\",\n                    \"date_added\": \"2024-07-16\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"South Salt Lake\",\n                        \"zip\": \"84190\",\n                        \"address1\": \"Eugene Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con780\",\n                    \"first_name\": \"Odysseus\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888-813-9999\",\n                    \"username\": \"con781\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"sno\": \"762\",\n                    \"email\": \"kigoxygy@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con781\",\n                    \"first_name\": \"Rachel\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con782\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"763\",\n                    \"email\": \"monday-04@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con782\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con783\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"764\",\n                    \"email\": \"monday-04-07-22-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con783\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con784\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"765\",\n                    \"email\": \"monday-05-07-22-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con784\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con785\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"766\",\n                    \"email\": \"monday-06-07-22-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con785\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con786\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"767\",\n                    \"email\": \"monday-07-07-22-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": {\n                            \"m:null\": \"true\"\n                        }\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con786\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con787\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"768\",\n                    \"email\": \"monday-07-07-22-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con787\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"online:-zip recruiter\",\n                    \"referral_source_id\": \"740\",\n                    \"phone\": \"803 633 4807\",\n                    \"username\": \"con788\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Fix\",\n                    \"sno\": \"769\",\n                    \"email\": \"testeronquest1@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"321211\",\n                        \"address1\": \"20 festus chukwueku street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con788\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"954-748-6022\",\n                    \"username\": \"con789\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Nicole\",\n                    \"sno\": \"770\",\n                    \"email\": \"lyjareb@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con789\",\n                    \"first_name\": \"Olga\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"713-633-5867\",\n                    \"username\": \"con790\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Carissa\",\n                    \"sno\": \"771\",\n                    \"email\": \"pubab@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con790\",\n                    \"first_name\": \"Octavius\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"304-321-4754\",\n                    \"username\": \"con791\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chava\",\n                    \"sno\": \"772\",\n                    \"email\": \"juvifypeta@mailinator.com\",\n                    \"date_added\": \"2024-07-22\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Asperiores aliquam n\",\n                        \"zip\": \"63837\",\n                        \"address1\": \"Dolorem tempora expe\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con791\",\n                    \"first_name\": \"Wylie\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con792\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"773\",\n                    \"email\": \"tuesday-01-07-23-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con792\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con794\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"774\",\n                    \"email\": \"tuesday-03-07-23-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con794\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con795\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"775\",\n                    \"email\": \"tuesday-04-07-23-2024@mailinator.com\",\n                    \"date_added\": \"2024-07-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con795\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-792-2633\",\n                    \"username\": \"con796\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Mary\",\n                    \"sno\": \"776\",\n                    \"email\": \"gavyroxemu@mailinator.com\",\n                    \"date_added\": \"2024-07-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con796\",\n                    \"first_name\": \"Griffith\"\n                },\n                {\n                    \"referral_source\": \"Repellendus Sit off\",\n                    \"referral_source_id\": \"741\",\n                    \"phone\": \"912-682-4271\",\n                    \"username\": \"con797\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Colt\",\n                    \"sno\": \"777\",\n                    \"email\": \"vuhujutesa@mailinator.com\",\n                    \"date_added\": \"2024-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77003\",\n                        \"address1\": \"18 Estelle Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con797\",\n                    \"first_name\": \"Winter\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"928-655-9225\",\n                    \"username\": \"con798\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Brynn\",\n                    \"sno\": \"778\",\n                    \"email\": \"humul@mailinator.com\",\n                    \"date_added\": \"2024-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Enid\",\n                        \"zip\": \"73701\",\n                        \"address1\": \"South 66th Street\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con798\",\n                    \"first_name\": \"Basia\"\n                },\n                {\n                    \"referral_source\": \"Test\",\n                    \"referral_source_id\": \"568\",\n                    \"phone\": \"361-972-9726\",\n                    \"username\": \"con799\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Caryn\",\n                    \"sno\": \"779\",\n                    \"email\": \"romecuj@mailinator.com\",\n                    \"date_added\": \"2024-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Palatine Township\",\n                        \"zip\": \"60074\",\n                        \"address1\": \"Einstein Bros. Bagels\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con799\",\n                    \"first_name\": \"Raja\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"719-459-1611\",\n                    \"username\": \"con800\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Melvin\",\n                    \"sno\": \"780\",\n                    \"email\": \"zivanyzuqe@mailinator.com\",\n                    \"date_added\": \"2024-07-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con800\",\n                    \"first_name\": \"Isaiah\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"682-699-8306\",\n                    \"username\": \"con801\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ifeoma\",\n                    \"sno\": \"781\",\n                    \"email\": \"kybizeje@mailinator.com\",\n                    \"date_added\": \"2024-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Austin\",\n                        \"zip\": \"78742\",\n                        \"address1\": \"Quality Inn &amp;amp; Suites\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con801\",\n                    \"first_name\": \"Violet\"\n                },\n                {\n                    \"referral_source\": \"Aliquam cupidatat iu\",\n                    \"referral_source_id\": \"742\",\n                    \"phone\": \"216-328-4223\",\n                    \"username\": \"con802\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Teegan\",\n                    \"sno\": \"782\",\n                    \"email\": \"gytyko@mailinator.com\",\n                    \"date_added\": \"2024-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con802\",\n                    \"first_name\": \"Brenda\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"205-318-6168\",\n                    \"username\": \"con803\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aubrey\",\n                    \"sno\": \"783\",\n                    \"email\": \"xikun@mailinator.com\",\n                    \"date_added\": \"2024-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"94143\",\n                        \"address1\": \"California Volunteers Memorial\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con803\",\n                    \"first_name\": \"Erica\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con804\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Mona\",\n                    \"sno\": \"784\",\n                    \"email\": \"jucosybev@mailinator.com\",\n                    \"date_added\": \"2024-07-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con804\",\n                    \"first_name\": \"Gail\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-538-7413\",\n                    \"username\": \"con805\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Pearl\",\n                    \"sno\": \"785\",\n                    \"email\": \"wamonusep@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con805\",\n                    \"first_name\": \"Elton\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"402-505-1146\",\n                    \"username\": \"con806\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Brittany\",\n                    \"sno\": \"786\",\n                    \"email\": \"buki@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con806\",\n                    \"first_name\": \"Gary\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-965-8714\",\n                    \"username\": \"con807\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hammett\",\n                    \"sno\": \"787\",\n                    \"email\": \"simotudat@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con807\",\n                    \"first_name\": \"Hayley\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"878-513-1303\",\n                    \"username\": \"con808\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Adam\",\n                    \"sno\": \"788\",\n                    \"email\": \"netasyn@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con808\",\n                    \"first_name\": \"Blake\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con809\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"789\",\n                    \"email\": \"tuesday321test1@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con809\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Indeed\",\n                    \"referral_source_id\": \"730\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con810\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"790\",\n                    \"email\": \"tuesday321test2@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con810\",\n                    \"first_name\": \"Le\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"566-599-5235\",\n                    \"username\": \"con811\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Magee\",\n                    \"sno\": \"791\",\n                    \"email\": \"nehaxaku@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con811\",\n                    \"first_name\": \"Quinlan\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"502-667-7199\",\n                    \"username\": \"con812\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Joelle\",\n                    \"sno\": \"792\",\n                    \"email\": \"tufev@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Braddock\",\n                        \"zip\": \"15104\",\n                        \"address1\": \"Fugitive Bag House EDC\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con812\",\n                    \"first_name\": \"Maya\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"588-948-5065\",\n                    \"username\": \"con813\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Odette\",\n                    \"sno\": \"793\",\n                    \"email\": \"tydifu@mailinator.com\",\n                    \"date_added\": \"2024-07-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hyattsville\",\n                        \"zip\": \"20737\",\n                        \"address1\": \"6018 Sheridan Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con813\",\n                    \"first_name\": \"Aaron\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"707-437-4346\",\n                    \"username\": \"con814\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Deanna\",\n                    \"sno\": \"794\",\n                    \"email\": \"wavuhip@mailinator.com\",\n                    \"date_added\": \"2024-08-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rancho Cucamonga\",\n                        \"zip\": \"92336\",\n                        \"address1\": \"CHP Officer John Bailey Memorial Freeway\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con814\",\n                    \"first_name\": \"Zelda\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"816-507-6859\",\n                    \"username\": \"con815\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Clinton\",\n                    \"sno\": \"795\",\n                    \"email\": \"daputekev@mailinator.com\",\n                    \"date_added\": \"2024-08-05\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con815\",\n                    \"first_name\": \"Mary\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con816\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Linus\",\n                    \"sno\": \"796\",\n                    \"email\": \"catawofoz@mailinator.com\",\n                    \"date_added\": \"2024-08-15\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con816\",\n                    \"first_name\": \"Imelda\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con817\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Piper\",\n                    \"sno\": \"797\",\n                    \"email\": \"wefume@mailinator.com\",\n                    \"date_added\": \"2024-08-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rio Rancho\",\n                        \"zip\": \"87124\",\n                        \"address1\": \"Dolores Hidalgo Drive Southeast\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con817\",\n                    \"first_name\": \"Darrel\"\n                },\n                {\n                    \"referral_source\": \"jjkjhkh\",\n                    \"referral_source_id\": \"745\",\n                    \"phone\": \"888-946-7702\",\n                    \"username\": \"con818\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Barrett\",\n                    \"sno\": \"798\",\n                    \"email\": \"gidavobip@mailinator.com\",\n                    \"date_added\": \"2024-08-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con818\",\n                    \"first_name\": \"Stacy\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con819\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Anderson\",\n                    \"sno\": \"799\",\n                    \"email\": \"atianderson12@gmail.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con819\",\n                    \"first_name\": \"Tricia\"\n                },\n                {\n                    \"referral_source\": \"Dolorum explicabo P\",\n                    \"referral_source_id\": \"746\",\n                    \"phone\": \"715-727-1733\",\n                    \"username\": \"con820\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Helen\",\n                    \"sno\": \"800\",\n                    \"email\": \"duzuqiheca@mailinator.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con820\",\n                    \"first_name\": \"Reece\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con821\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Rush\",\n                    \"sno\": \"801\",\n                    \"email\": \"arush@gmail.net\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con821\",\n                    \"first_name\": \"Ann\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con822\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Masterson\",\n                    \"sno\": \"802\",\n                    \"email\": \"dmasterson@queenbee.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con822\",\n                    \"first_name\": \"Diana\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con823\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Linscott\",\n                    \"sno\": \"803\",\n                    \"email\": \"llinscottlinda23@gmail.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con823\",\n                    \"first_name\": \"Linda\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"\",\n                    \"username\": \"con824\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Montana\",\n                    \"sno\": \"804\",\n                    \"email\": \"joe.m.montana3102@yahoo.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con824\",\n                    \"first_name\": \"Joe\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"702 820 9523\",\n                    \"username\": \"con825\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Sutton\",\n                    \"sno\": \"807\",\n                    \"email\": \"bianca.sutton9621@gmail.com\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Midwest City\",\n                        \"zip\": \"73130\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"Experienced Apartment Leasing Agent\",\n                    \"id\": \"con825\",\n                    \"first_name\": \"Bianca\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"269-908-4305\",\n                    \"username\": \"con827\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kenyon\",\n                    \"sno\": \"809\",\n                    \"email\": \"gixy@mailinator.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con827\",\n                    \"first_name\": \"Isaac\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"525-578-6572\",\n                    \"username\": \"con828\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Sara\",\n                    \"sno\": \"810\",\n                    \"email\": \"wiqovedeqo@mailinator.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con828\",\n                    \"first_name\": \"George\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"337-332-5284\",\n                    \"username\": \"con829\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Mason\",\n                    \"sno\": \"811\",\n                    \"email\": \"zysega@mailinator.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con829\",\n                    \"first_name\": \"Nyssa\"\n                },\n                {\n                    \"referral_source\": \"Veniam pariatur Fa\",\n                    \"referral_source_id\": \"747\",\n                    \"phone\": \"803-853-6137\",\n                    \"username\": \"con830\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Trevor\",\n                    \"sno\": \"812\",\n                    \"email\": \"tyfylikava@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con830\",\n                    \"first_name\": \"Rae\"\n                },\n                {\n                    \"referral_source\": \"Esse corporis conseq\",\n                    \"referral_source_id\": \"748\",\n                    \"phone\": \"505-205-9233\",\n                    \"username\": \"con831\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Maryam\",\n                    \"sno\": \"813\",\n                    \"email\": \"vofez@mailinator.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fort Collins\",\n                        \"zip\": \"80522\",\n                        \"address1\": \"4515 John F Kennedy Parkway\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con831\",\n                    \"first_name\": \"Portia\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"785-693-3035\",\n                    \"username\": \"con832\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aquila\",\n                    \"sno\": \"814\",\n                    \"email\": \"zumoxe@mailinator.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Florence\",\n                        \"zip\": \"81226\",\n                        \"address1\": \"5880 Needham Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con832\",\n                    \"first_name\": \"Daniel\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"435-964-2526\",\n                    \"username\": \"con833\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Williams\",\n                    \"sno\": \"815\",\n                    \"email\": \"ted.williams@yahoo.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Saint Louis Park\",\n                        \"zip\": \"55416\",\n                        \"address1\": \"3939 Excelsior Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con833\",\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"855-484-7472\",\n                    \"username\": \"con834\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ciaran\",\n                    \"sno\": \"816\",\n                    \"email\": \"votyh@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con834\",\n                    \"first_name\": \"Daryl\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"702 820 9523\",\n                    \"username\": \"con826\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Sutton\",\n                    \"sno\": \"822\",\n                    \"email\": \"bianca.sutton96@gmail.com\",\n                    \"date_added\": \"2024-08-29\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Midwest City\",\n                        \"zip\": \"73130\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"title\": \"Experienced Apartment Leasing Agent\",\n                    \"id\": \"con826\",\n                    \"first_name\": \"Bianca\"\n                },\n                {\n                    \"referral_source\": \"Ullamco neque accusa\",\n                    \"referral_source_id\": \"749\",\n                    \"phone\": \"469-484-1689\",\n                    \"username\": \"con835\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"David\",\n                    \"sno\": \"823\",\n                    \"email\": \"nota@mailinator.com\",\n                    \"date_added\": \"2024-08-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con835\",\n                    \"first_name\": \"Quintessa\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"659-789-7671\",\n                    \"username\": \"con836\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Reece\",\n                    \"sno\": \"824\",\n                    \"email\": \"lenuhyfiv@mailinator.com\",\n                    \"date_added\": \"2024-08-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Memphis\",\n                        \"zip\": \"38104\",\n                        \"address1\": \"335 South Hollywood Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TN\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con836\",\n                    \"first_name\": \"Alan\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"577-391-3406\",\n                    \"username\": \"con837\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ryder\",\n                    \"sno\": \"825\",\n                    \"email\": \"rynamy@mailinator.com\",\n                    \"date_added\": \"2024-09-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con837\",\n                    \"first_name\": \"Risa\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con838\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"826\",\n                    \"email\": \"bianca.sutton96-02@gmail.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con838\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-708-8559\",\n                    \"username\": \"con839\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Colette\",\n                    \"sno\": \"827\",\n                    \"email\": \"gyjinyfa@mailinator.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hayward\",\n                        \"zip\": \"94545\",\n                        \"address1\": \"26574 Corporate Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con839\",\n                    \"first_name\": \"Madaline\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-243-9769\",\n                    \"username\": \"con840\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Casey\",\n                    \"sno\": \"828\",\n                    \"email\": \"jazytiz@mailinator.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"id\": \"con840\",\n                    \"first_name\": \"Claudia\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con841\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"829\",\n                    \"email\": \"bianca.sutton9-02@gmail.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con841\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con842\",\n                    \"last_name\": \"Me See There\",\n                    \"sno\": \"830\",\n                    \"email\": \"wurap@mailinator.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con842\",\n                    \"title\": \"Administrative\",\n                    \"first_name\": \"Let\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"603-357-8823\",\n                    \"username\": \"con843\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ritter\",\n                    \"sno\": \"831\",\n                    \"email\": \"benritter24@yahoo.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con843\",\n                    \"first_name\": \"Benjamin\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"603-357-8823\",\n                    \"username\": \"con844\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ritter\",\n                    \"sno\": \"832\",\n                    \"email\": \"benritter24@yahoo.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con844\",\n                    \"first_name\": \"Benjamin\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"888-494-4717\",\n                    \"username\": \"con845\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Bethany\",\n                    \"sno\": \"833\",\n                    \"email\": \"busesepifi@mailinator.com\",\n                    \"date_added\": \"2024-09-06\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con845\",\n                    \"first_name\": \"Gail\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con846\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"834\",\n                    \"email\": \"wurap-02@mailinator.com\",\n                    \"date_added\": \"2024-09-08\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con846\",\n                    \"title\": \"Not sure\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con847\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"835\",\n                    \"email\": \"cal.ripken@yahoo.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con847\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con847\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"836\",\n                    \"email\": \"cal.ripken@yahoo.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con847\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con821\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"837\",\n                    \"email\": \"arush@gmail.net\",\n                    \"date_added\": \"2024-08-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con821\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con848\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"838\",\n                    \"email\": \"steveg123@yahoo.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con848\",\n                    \"title\": \"Not sure\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con849\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"sno\": \"839\",\n                    \"email\": \"kazabic@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con849\",\n                    \"first_name\": \"Evelyn\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con850\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"sno\": \"840\",\n                    \"email\": \"lazefyc@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"id\": \"con850\",\n                    \"first_name\": \"Fatima\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con851\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Leo\",\n                    \"sno\": \"841\",\n                    \"email\": \"kexiko@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con851\",\n                    \"first_name\": \"Grady\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con852\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"sno\": \"842\",\n                    \"email\": \"zuxolisuz@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con852\",\n                    \"first_name\": \"Lois\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con853\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"sno\": \"843\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con853\",\n                    \"first_name\": \"Phyllis\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con854\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Joan\",\n                    \"sno\": \"844\",\n                    \"email\": \"fotalidaqo@mailinator.com\",\n                    \"date_added\": \"2024-09-09\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"id\": \"con854\",\n                    \"first_name\": \"Ann\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con855\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"845\",\n                    \"email\": \"adamvinatieritesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con855\",\n                    \"title\": \"Administrative\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con856\",\n                    \"last_name\": \"See There\",\n                    \"sno\": \"846\",\n                    \"email\": \"abelincoln@comcast.net\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con856\",\n                    \"title\": \"Administrative\",\n                    \"first_name\": \"Lets\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con857\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"847\",\n                    \"email\": \"camneelytesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con857\",\n                    \"first_name\": \"Another\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"7563214\",\n                    \"username\": \"con858\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Griffey, Jr.\",\n                    \"sno\": \"848\",\n                    \"email\": \"kengriffeytesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"03053\",\n                        \"address1\": \"Londonderry\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con858\",\n                    \"first_name\": \"Ken\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con859\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wilfork\",\n                    \"sno\": \"849\",\n                    \"email\": \"vincewilforktesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"03077\",\n                        \"address1\": \"45 Harriman Hill Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con859\",\n                    \"first_name\": \"Vince\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"603-435-3429\",\n                    \"username\": \"con860\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Constance\",\n                    \"sno\": \"850\",\n                    \"email\": \"sigim@mailinator.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clinton Township\",\n                        \"zip\": \"49236\",\n                        \"address1\": \"6028 Sherdan Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con860\",\n                    \"first_name\": \"Rebecca\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con861\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Rodgers\",\n                    \"sno\": \"851\",\n                    \"email\": \"aaronrodgerstesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-10\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"03053\",\n                        \"address1\": \"Londonderry\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"id\": \"con861\",\n                    \"first_name\": \"Aaron\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con862\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Brendan\",\n                    \"sno\": \"852\",\n                    \"email\": \"qyqe@mailinator.com\",\n                    \"date_added\": \"2024-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60607\",\n                        \"address1\": \"525 South Racine Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con862\",\n                    \"first_name\": \"James\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con863\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Reagan\",\n                    \"sno\": \"853\",\n                    \"email\": \"ronaldreagantesteron@yahoo.com\",\n                    \"date_added\": \"2024-09-12\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"01852\",\n                        \"address1\": \"101 Thorndike Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"id\": \"con863\",\n                    \"first_name\": \"Ronald\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con864\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Gary\",\n                    \"sno\": \"854\",\n                    \"email\": \"t8917825321@gmail.com\",\n                    \"date_added\": \"2024-09-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con864\",\n                    \"first_name\": \"Brenden\"\n                },\n                {\n                    \"referral_source\": \"Fugiat ipsam quia a\",\n                    \"referral_source_id\": \"752\",\n                    \"phone\": \"512-359-1455\",\n                    \"username\": \"con865\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ezra\",\n                    \"sno\": \"855\",\n                    \"email\": \"fomaheqisa@mailinator.com\",\n                    \"date_added\": \"2024-09-17\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Federal Way\",\n                        \"zip\": \"98023\",\n                        \"address1\": \"1602 Southwest Dash Point Road\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con865\",\n                    \"first_name\": \"Hayley\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"phone\": \"999.930.1244\",\n                    \"username\": \"con866\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"sno\": \"856\",\n                    \"email\": \"rjones97yhngy.u89huh9@my.com\",\n                    \"date_added\": \"2024-09-18\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Not sure\",\n                    \"id\": \"con866\",\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"848-559-4517\",\n                    \"username\": \"con867\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ebony\",\n                    \"sno\": \"857\",\n                    \"email\": \"suhecy@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Columbia\",\n                        \"zip\": \"21045\",\n                        \"address1\": \"6100 Dobbin Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con867\",\n                    \"first_name\": \"Joy\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con868\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Hasad\",\n                    \"sno\": \"858\",\n                    \"email\": \"kobiqe@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con868\",\n                    \"first_name\": \"Deacon\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"704-711-6138\",\n                    \"username\": \"con869\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"sno\": \"859\",\n                    \"email\": \"jupulycegu@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Springdale\",\n                        \"zip\": \"84767\",\n                        \"address1\": \"La Quinta Inn &amp;amp;amp; Suites @ Zion Park Springdale\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con869\",\n                    \"first_name\": \"Uriah\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con870\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Shelly\",\n                    \"sno\": \"860\",\n                    \"email\": \"jefukulu@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Brea\",\n                        \"zip\": \"92821\",\n                        \"address1\": \"1130 East Imperial Highway\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con870\",\n                    \"first_name\": \"Stacy\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"529-333-1608\",\n                    \"username\": \"con871\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Rhona\",\n                    \"sno\": \"861\",\n                    \"email\": \"palulaj@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con871\",\n                    \"first_name\": \"Sydney\"\n                },\n                {\n                    \"referral_source\": \"Architecto aut obcae\",\n                    \"referral_source_id\": \"753\",\n                    \"phone\": \"769-974-2409\",\n                    \"username\": \"con872\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Emery\",\n                    \"sno\": \"862\",\n                    \"email\": \"wujorojaxa@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con872\",\n                    \"first_name\": \"Daria\"\n                },\n                {\n                    \"referral_source\": \"Corporis ut similiqu\",\n                    \"referral_source_id\": \"754\",\n                    \"phone\": \"437-429-7951\",\n                    \"username\": \"con873\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"sno\": \"863\",\n                    \"email\": \"beva@mailinator.com\",\n                    \"date_added\": \"2024-09-19\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"East Lyme\",\n                        \"zip\": \"06357\",\n                        \"address1\": \"Nikirk Ministries World Headquarters\",\n                        \"address2\": \"\",\n                        \"state\": \"CT\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con873\",\n                    \"first_name\": \"Audrey\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888-365-3818\",\n                    \"username\": \"con874\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Alfonso\",\n                    \"sno\": \"864\",\n                    \"email\": \"kudygud@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con874\",\n                    \"first_name\": \"Patrick\"\n                },\n                {\n                    \"referral_source\": \"referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-399-9958\",\n                    \"username\": \"con875\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Burke\",\n                    \"sno\": \"865\",\n                    \"email\": \"hegipadyp@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con875\",\n                    \"first_name\": \"Nigel\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"referral_source_id\": \"735\",\n                    \"username\": \"con876\",\n                    \"last_name\": \"Test III\",\n                    \"sno\": \"866\",\n                    \"email\": \"yahoo3893k@yahoo.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con876\",\n                    \"title\": \"Not sure\",\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con877\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kenneth\",\n                    \"sno\": \"867\",\n                    \"email\": \"daquliva@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97210\",\n                        \"address1\": \"522 Northwest 23rd Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con877\",\n                    \"first_name\": \"Alexa\"\n                },\n                {\n                    \"referral_source\": \"Asperiores minim vol\",\n                    \"referral_source_id\": \"755\",\n                    \"phone\": \"564-951-5152\",\n                    \"username\": \"con878\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aladdin\",\n                    \"sno\": \"868\",\n                    \"email\": \"sacezy@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con878\",\n                    \"first_name\": \"Germane\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"referral_source_id\": \"526\",\n                    \"phone\": \"512-424-1553\",\n                    \"username\": \"con879\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Xyla\",\n                    \"sno\": \"869\",\n                    \"email\": \"homeledyba@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con879\",\n                    \"first_name\": \"Shelly\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con880\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Roth\",\n                    \"sno\": \"870\",\n                    \"email\": \"qaxakemy@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Barbara\",\n                        \"zip\": \"91305\",\n                        \"address1\": \"Blenders In The Grass - 5 Points\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con880\",\n                    \"first_name\": \"Daphne\"\n                },\n                {\n                    \"referral_source\": \"Nostrud sit quasi c\",\n                    \"referral_source_id\": \"756\",\n                    \"phone\": \"516-845-8919\",\n                    \"username\": \"con881\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Quentin\",\n                    \"sno\": \"871\",\n                    \"email\": \"duridej@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6026 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con881\",\n                    \"first_name\": \"Dalton\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"857-504-3965\",\n                    \"username\": \"con882\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"sno\": \"872\",\n                    \"email\": \"dase@mailinator.com\",\n                    \"date_added\": \"2024-09-23\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Park City\",\n                        \"zip\": \"84060\",\n                        \"address1\": \"Quinn's Connect\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con882\",\n                    \"first_name\": \"Courtney\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"612-944-3451\",\n                    \"username\": \"con883\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Brendan\",\n                    \"sno\": \"873\",\n                    \"email\": \"namu@mailinator.com\",\n                    \"date_added\": \"2024-09-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp; Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con883\",\n                    \"first_name\": \"Gretchen\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con884\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Walter\",\n                    \"sno\": \"874\",\n                    \"email\": \"vavacevab@mailinator.com\",\n                    \"date_added\": \"2024-09-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp; Testing Cente\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con884\",\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"referral_source\": \"social-media\",\n                    \"referral_source_id\": \"529\",\n                    \"phone\": \"888-392-8829\",\n                    \"username\": \"con885\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tashya\",\n                    \"sno\": \"875\",\n                    \"email\": \"hiquvuwop@mailinator.com\",\n                    \"date_added\": \"2024-09-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp; Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con885\",\n                    \"first_name\": \"Jade\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con886\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"876\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp; Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"con886\",\n                    \"title\": \"Admin Assistant\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con887\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"877\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-24\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp; Testing Cente\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"con887\",\n                    \"title\": \"Admin Assistant\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con888\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"878\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp; Testing C\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"con888\",\n                    \"title\": \"Administrative Assistant\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con889\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"879\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp;amp; Testi\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"con889\",\n                    \"title\": \"Administrative Assistant\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con890\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"880\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp;amp;amp; T\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con890\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con891\",\n                    \"cell_phone\": \"HASH(0x55ad038f9b98)\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"881\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp;amp;amp;am\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con891\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con892\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"882\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp;amp;amp;am\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con892\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con893\",\n                    \"cell_phone\": \"HASH(0x55ad038f9b98)\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"883\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp;amp;amp;amp;am\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con893\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con894\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"884\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con894\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con895\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"885\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con895\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con896\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"886\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con896\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"24371258\",\n                    \"username\": \"con897\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Wright\",\n                    \"sno\": \"887\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con897\",\n                    \"first_name\": \"Cindi\"\n                },\n                {\n                    \"referral_source\": \"web-search\",\n                    \"referral_source_id\": \"528\",\n                    \"phone\": \"888-518-5422\",\n                    \"username\": \"con898\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kirk\",\n                    \"sno\": \"888\",\n                    \"email\": \"cwright@newasd.akken.com\",\n                    \"date_added\": \"2024-09-25\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con898\",\n                    \"first_name\": \"Hector\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con938\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"889\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"date_added\": \"2024-09-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con938\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con939\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"890\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"date_added\": \"2024-09-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con939\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con940\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"891\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"date_added\": \"2024-09-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con940\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"\",\n                    \"username\": \"con941\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"892\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"date_added\": \"2024-09-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con941\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con942\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"API\",\n                    \"sno\": \"893\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"date_added\": \"2024-09-30\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con942\",\n                    \"first_name\": \"Open\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app40\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"TRy\",\n                    \"sno\": \"894\",\n                    \"email\": \"treytester@gmail.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app40\",\n                    \"first_name\": \"Testerttt\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con943\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Only\",\n                    \"sno\": \"895\",\n                    \"email\": \"testeronlytester@gmail.com\",\n                    \"date_added\": \"2024-10-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con943\",\n                    \"first_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888-969-2900\",\n                    \"username\": \"con944\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tester\",\n                    \"sno\": \"896\",\n                    \"email\": \"treytester@gmail.com\",\n                    \"date_added\": \"2024-10-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con944\",\n                    \"first_name\": \"Try\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"89692900\",\n                    \"username\": \"con945\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tester\",\n                    \"sno\": \"897\",\n                    \"email\": \"treytester@gmail.com\",\n                    \"date_added\": \"2024-10-01\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con945\",\n                    \"first_name\": \"Try\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con946\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Tallulah\",\n                    \"sno\": \"898\",\n                    \"email\": \"rigo@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60612\",\n                        \"address1\": \"15 South Wood Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con946\",\n                    \"first_name\": \"Vivian\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con947\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Yeo\",\n                    \"sno\": \"899\",\n                    \"email\": \"natiguqyk@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con947\",\n                    \"first_name\": \"Hedy\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app41\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Phillips\",\n                    \"sno\": \"900\",\n                    \"email\": \"nudoqymo@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app41\",\n                    \"first_name\": \"Oren\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"phone\": \"\",\n                    \"username\": \"app42\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Oneil\",\n                    \"sno\": \"901\",\n                    \"email\": \"jyhatazata@mailinator.com\",\n                    \"date_added\": \"\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"app42\",\n                    \"first_name\": \"Indira\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"272 997 7904\",\n                    \"username\": \"con948\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Raja\",\n                    \"sno\": \"902\",\n                    \"email\": \"jawexyny@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"con948\",\n                    \"first_name\": \"Zeus\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con949\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Julie\",\n                    \"sno\": \"903\",\n                    \"email\": \"puqutityf@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"con949\",\n                    \"first_name\": \"Maia\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"username\": \"con950\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Aileen\",\n                    \"sno\": \"904\",\n                    \"email\": \"ceguwuduro@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con950\",\n                    \"first_name\": \"Maris\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"referral_source_id\": \"168\",\n                    \"phone\": \"888 387 8387\",\n                    \"username\": \"con951\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Iona\",\n                    \"sno\": \"905\",\n                    \"email\": \"lopok@mailinator.com\",\n                    \"date_added\": \"2024-10-02\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolph\",\n                        \"zip\": \"72528\",\n                        \"address1\": \"Quail Way\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con951\",\n                    \"first_name\": \"Aladdin\"\n                },\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"referral_source_id\": \"527\",\n                    \"phone\": \"888-711-9009\",\n                    \"username\": \"con952\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Ursa\",\n                    \"sno\": \"906\",\n                    \"email\": \"muhiva@mailinator.com\",\n                    \"date_added\": \"2024-10-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con952\",\n                    \"first_name\": \"Pascale\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888-571-5536\",\n                    \"username\": \"con953\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Xyla\",\n                    \"sno\": \"907\",\n                    \"email\": \"fefyxyjuda@mailinator.com\",\n                    \"date_added\": \"2024-10-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con953\",\n                    \"first_name\": \"Hasad\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888-411-1857\",\n                    \"username\": \"con954\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Kitra\",\n                    \"sno\": \"908\",\n                    \"email\": \"tukapimi@mailinator.com\",\n                    \"date_added\": \"2024-10-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con954\",\n                    \"first_name\": \"Lisandra\"\n                },\n                {\n                    \"referral_source\": \"newspaper\",\n                    \"referral_source_id\": \"172\",\n                    \"phone\": \"888 695 3029\",\n                    \"username\": \"con955\",\n                    \"cell_phone\": \"\",\n                    \"last_name\": \"Angela\",\n                    \"sno\": \"909\",\n                    \"email\": \"jelikyrata@mailinator.com\",\n                    \"date_added\": \"2024-10-03\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"con955\",\n                    \"first_name\": \"May\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"1\",\n                    \"email\": \"sawidebas@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand744\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand744\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mallory\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T16:29:18\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp16\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 715 8958\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Rosalyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"2\",\n                    \"email\": \"rjones@my.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"HASH(0x5601aa6b73e0)\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand2\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand2\",\n                    \"title\": \"Customer Service\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test III\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T20:57:49\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp8\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Employee\",\n                    \"vcount\": \"12\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"State of California\",\n                    \"sno\": \"3\",\n                    \"email\": \"email@email.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bedford\",\n                        \"zip\": \"01730\",\n                        \"address1\": \"45 Hartford Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand3\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand3\",\n                    \"title\": \"Electronics\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jonas\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T20:58:17\",\n                    \"owner\": \"4\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp2\",\n                    \"parid\": \"\",\n                    \"phone\": \"914-555-1212\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Samantha\",\n                    \"vcount\": \"4\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"4\",\n                    \"email\": \"swilliams@email.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand4\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand4\",\n                    \"title\": \"Sarah williams\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"6\",\n                    \"ctime\": \"2008-07-22T20:58:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp22\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Another\",\n                    \"vcount\": \"13\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"5\",\n                    \"email\": \"cwrigth@newasd.akken.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand5\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"298\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand5\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wright\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T21:09:09\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp3\",\n                    \"parid\": \"\",\n                    \"phone\": \"+18124371258\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Cindi\",\n                    \"vcount\": \"246\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Bates & Willburn\",\n                    \"sno\": \"6\",\n                    \"email\": \"ajenos@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Concord\",\n                        \"zip\": \"03060\",\n                        \"address1\": \"9 Capital Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand6\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"295\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"username\": \"cand6\",\n                    \"title\": \"Legal Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Enos\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T22:09:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp4\",\n                    \"parid\": \"\",\n                    \"phone\": \"555-333-1234\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Jennifer\",\n                    \"vcount\": \"10\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Cyclone Technologies\",\n                    \"sno\": \"7\",\n                    \"email\": \"gansil99@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Billerica\",\n                        \"zip\": \"01730\",\n                        \"address1\": \"45 Concord Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand7\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"username\": \"cand7\",\n                    \"title\": \"Network Administrator\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ansil\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T22:09:39\",\n                    \"owner\": \"4\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp25\",\n                    \"parid\": \"\",\n                    \"phone\": \"555-555-1234\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"George\",\n                    \"vcount\": \"14\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Williams Paper Supplies\",\n                    \"sno\": \"8\",\n                    \"email\": \"Mmonoham@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Albany\",\n                        \"zip\": \"30339\",\n                        \"address1\": \"45 Lax Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand8\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"555-555-1235\",\n                    \"username\": \"cand8\",\n                    \"title\": \"Shipping and Receiving\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Monohan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T22:10:07\",\n                    \"owner\": \"4\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp5\",\n                    \"parid\": \"\",\n                    \"phone\": \"555-555-1234\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Mark\",\n                    \"vcount\": \"5\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"9\",\n                    \"email\": \"atianderson12@gmail.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand814\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"295\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand814\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Anderson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-22T22:10:38\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp6\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-22\",\n                    \"first_name\": \"Tricia\",\n                    \"vcount\": \"5\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"North American Marketing & Sales\",\n                    \"sno\": \"10\",\n                    \"email\": \"jsalis@yahoo.net\",\n                    \"cl_status\": \"162\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Portsmouth\",\n                        \"zip\": \"03801\",\n                        \"address1\": \"2 Adams St\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand10\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand10\",\n                    \"title\": \"Management resume\",\n                    \"referral_source\": \"\",\n                    \"status\": \"162\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Salise\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T09:33:22\",\n                    \"owner\": \"4\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp27\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-890-9834\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Johanna\",\n                    \"vcount\": \"6\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Contoso, Ltd.\",\n                    \"sno\": \"11\",\n                    \"email\": \"tirwin@yahoo.net\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lexington\",\n                        \"zip\": \"01830\",\n                        \"address1\": \"45 Hume Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand11\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand11\",\n                    \"title\": \"Clerk\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Irwin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T09:34:08\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp21\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-890-3456\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Tracey\",\n                    \"vcount\": \"11\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"12\",\n                    \"email\": \"arush@gmail.net\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand843\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand843\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T09:35:53\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con821\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"21\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"13\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand13\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand13\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pitcher\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:41:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp9\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Brandon\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"14\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand14\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand14\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bertrand\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:45:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp10\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Jennipher\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"15\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand15\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand15\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Comeau\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:46:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp11\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Melissa\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"16\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand16\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand16\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bryant\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:47:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp12\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Gary\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"17\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand17\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand17\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:48:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp13\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Carol\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"18\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand18\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand18\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clouart\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T14:49:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp14\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Carol\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"4\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"19\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand19\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"--\",\n                    \"username\": \"cand19\",\n                    \"title\": \"Lyle\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T15:54:32\",\n                    \"owner\": \"4\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp15\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Carol\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"20\",\n                    \"email\": \"testingemployeemail@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rochester\",\n                        \"zip\": \"03967\",\n                        \"address1\": \"288 Blackwater Rd.\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand20\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand20\",\n                    \"title\": \"Lyle\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-24T15:58:30\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp20\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-24\",\n                    \"first_name\": \"Carol\",\n                    \"vcount\": \"18\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"21\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand21\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand21\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bartlett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-25T10:51:57\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp17\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-25\",\n                    \"first_name\": \"Karen\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"22\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand22\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand22\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Campbell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-25T10:53:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp18\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-25\",\n                    \"first_name\": \"Lisa\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Blue Yonder Airlines\",\n                    \"sno\": \"23\",\n                    \"email\": \"kjames@gmail.net\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Springfield\",\n                        \"zip\": \"22150\",\n                        \"address1\": \"400 Craig Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"id\": \"cand23\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand23\",\n                    \"title\": \"System Analyst\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"James\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-25T10:54:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con19\",\n                    \"parid\": \"\",\n                    \"phone\": \"214-980-4433\",\n                    \"date_added\": \"2008-07-25\",\n                    \"first_name\": \"Kyle\",\n                    \"vcount\": \"6\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"24\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand24\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand24\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"O'Connell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-07-25T11:00:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp19\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-07-25\",\n                    \"first_name\": \"Jess\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"25\",\n                    \"email\": \"\",\n                    \"cl_status\": \"162\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand25\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand25\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"162\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gonsalves\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-09-08T16:21:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp23\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-09-08\",\n                    \"first_name\": \"Jimmy\",\n                    \"vcount\": \"13\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"26\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand26\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand26\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Madison\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-09-15T10:43:37\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp26\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-09-15\",\n                    \"first_name\": \"Sue\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"27\",\n                    \"email\": \"steveg123@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand27\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"298\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand27\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-10-21T15:23:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con848\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-10-21\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"17\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Agilent Technologies\",\n                    \"sno\": \"28\",\n                    \"email\": \"steveg123@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Malden\",\n                        \"zip\": \"01880\",\n                        \"address1\": \"200 Minuteman Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand28\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand28\",\n                    \"title\": \"Sally Johnson - Senior Test Engineer\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Johnson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-10-31T14:42:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"617-687-1501\",\n                    \"date_added\": \"2008-10-31\",\n                    \"first_name\": \"Sally\",\n                    \"vcount\": \"2\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Tea Labs Inc.\",\n                    \"sno\": \"29\",\n                    \"email\": \"sethlong@aol1.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"1178 E End Dr\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand29\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand29\",\n                    \"title\": \"Electronics Technician\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Long\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-11-20T11:30:35\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp30\",\n                    \"parid\": \"\",\n                    \"phone\": \"788-999-9930\",\n                    \"date_added\": \"2008-11-20\",\n                    \"first_name\": \"Seth\",\n                    \"vcount\": \"5\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"30\",\n                    \"email\": \"yahoo3893k@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand30\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"295\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand30\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test III\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2008-11-20T15:32:24\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp29\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2008-11-20\",\n                    \"first_name\": \"Employee\",\n                    \"vcount\": \"8\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"31\",\n                    \"email\": \"ram@akkentech.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand31\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand31\",\n                    \"title\": \"Ram\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nayak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-02-18T07:57:22\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp28\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2009-02-18\",\n                    \"first_name\": \"Ram\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"32\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"rochester\",\n                        \"zip\": \"03867\",\n                        \"address1\": \"189 Washington St\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand32\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand32\",\n                    \"title\": \"Clerical\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bertrand\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-07-27T11:28:20\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con10\",\n                    \"parid\": \"\",\n                    \"phone\": \"555-2155\",\n                    \"date_added\": \"2009-07-27\",\n                    \"first_name\": \"Jennipher\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Microsoft\",\n                    \"sno\": \"33\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand33\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand33\",\n                    \"title\": \"Finance - Controller\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Example\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-08-06T10:18:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"508-987-0988\",\n                    \"date_added\": \"2009-08-06\",\n                    \"first_name\": \"Brad\",\n                    \"vcount\": \"2\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Digimarc\",\n                    \"sno\": \"34\",\n                    \"email\": \"quirk_tim@hotmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"01886\",\n                        \"address1\": \"12 Brookside Road Unit 13\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand34\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand34\",\n                    \"title\": \"Resume - Tim Quirk - 2009\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"QUIRK\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-09-08T21:30:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-640-6951\",\n                    \"date_added\": \"2009-09-08\",\n                    \"first_name\": \"TIMOTHY\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"of employment\",\n                    \"sno\": \"35\",\n                    \"email\": \"quirk_tim@hotmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"01886\",\n                        \"address1\": \"12 Brookside Road Unit 13\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand35\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand35\",\n                    \"title\": \"Resume - Tim Quirk - 2009\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"QUIRK\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-11-03T08:12:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-640-6951\",\n                    \"date_added\": \"2009-11-03\",\n                    \"first_name\": \"TIMOTHY\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"36\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand36\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand36\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Tim  Quirk\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Quick\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2009-11-04T12:59:15\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con18\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2009-11-04\",\n                    \"first_name\": \"Tim\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Comcast\",\n                    \"sno\": \"37\",\n                    \"email\": \"happy.mcgee@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03062\",\n                        \"address1\": \"123 Main street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand37\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"295\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand37\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"McGee\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2012-08-30T15:02:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"170\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1234\",\n                    \"date_added\": \"2012-08-30\",\n                    \"first_name\": \"Happy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"38\",\n                    \"email\": \"jtreadmill@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand38\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand38\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Treadmill\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:34:14\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Jon\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"39\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand39\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand39\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Treadmill\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:34:37\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Sally\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"40\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lawrence\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand40\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand40\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jacaraz\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:36:22\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Noel\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"41\",\n                    \"email\": \"dmasterson@queenbee.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand817\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand817\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Masterson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:37:35\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con822\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Diana\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"42\",\n                    \"email\": \"cjace@hotmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tyngsboro\",\n                        \"zip\": \"01879\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand42\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand42\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jace\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:39:18\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Cameron\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"43\",\n                    \"email\": \"kitluvsmakeup@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"01234\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand43\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand43\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pattywhack\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-01-28T08:41:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-01-28\",\n                    \"first_name\": \"Kitkat\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"\",\n                    \"sno\": \"44\",\n                    \"email\": \"\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand44\",\n                    \"owner\": \"1\",\n                    \"ctime\": \"2013-06-03T15:27:34\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand44\",\n                    \"date_added\": \"2013-06-03\",\n                    \"title\": \"\",\n                    \"vcount\": \"1\",\n                    \"first_name\": \"\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"\",\n                    \"sno\": \"45\",\n                    \"email\": \"\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand45\",\n                    \"owner\": \"1\",\n                    \"ctime\": \"2013-06-03T15:27:34\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand45\",\n                    \"date_added\": \"2013-06-03\",\n                    \"title\": \"\",\n                    \"vcount\": \"1\",\n                    \"first_name\": \"\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"162\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"\",\n                    \"sno\": \"46\",\n                    \"email\": \"\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": \"162\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand46\",\n                    \"owner\": \"1\",\n                    \"ctime\": \"2013-06-03T15:27:35\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand46\",\n                    \"date_added\": \"2013-06-03\",\n                    \"title\": \"\",\n                    \"vcount\": \"1\",\n                    \"first_name\": \"\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Akken\",\n                    \"sno\": \"47\",\n                    \"email\": \"jpaquette@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03060\",\n                        \"address1\": \"345 Elm Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand47\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"603-987-8765\",\n                    \"username\": \"cand47\",\n                    \"title\": \"Sales Director\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paquette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-07-23T18:09:03\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp31\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-07-23\",\n                    \"first_name\": \"Jeff\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"COGNOS CORPORATION\",\n                    \"sno\": \"48\",\n                    \"email\": \"steveg123@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03153\",\n                        \"address1\": \"86 King Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand48\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand48\",\n                    \"title\": \"SteveGorman-AEResume\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gorman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-07-25T15:15:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603 999-2701\",\n                    \"date_added\": \"2013-07-25\",\n                    \"first_name\": \"Steve\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"49\",\n                    \"email\": \"abelincoln@comcast.net\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand49\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand49\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-07-28T13:09:35\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con856\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-07-28\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"What Goes Up\",\n                    \"sno\": \"50\",\n                    \"email\": \"wickedsmahtguy@live.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Appletown\",\n                        \"zip\": \"01879\",\n                        \"address1\": \"9876 Apple Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand50\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand50\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Newton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-07-30T12:13:17\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-765-4321\",\n                    \"date_added\": \"2013-07-30\",\n                    \"first_name\": \"Isaac\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"51\",\n                    \"email\": \"benritter24@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand839\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand839\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ritter\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-08-15T13:50:27\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con844\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-08-15\",\n                    \"first_name\": \"Benjamin\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Best Fitness\",\n                    \"sno\": \"52\",\n                    \"email\": \"fournierscott31@hotmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pepperell\",\n                        \"zip\": \"01463\",\n                        \"address1\": \"131 Plainfield Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand52\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand52\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fournier\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-08-15T14:10:26\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con22\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-786-5742\",\n                    \"date_added\": \"2013-08-15\",\n                    \"first_name\": \"Scott\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"53\",\n                    \"email\": \"llinscottlinda23@gmail.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand818\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"295\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand818\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Linscott\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-08-15T14:21:22\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con823\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-08-15\",\n                    \"first_name\": \"Linda\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"54\",\n                    \"email\": \"gailmary671@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03063\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand54\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand54\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chiasson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:40\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mary\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"55\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand55\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand55\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"629\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con568\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"56\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand56\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand56\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Filinow\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Sergi\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"57\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"01810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand57\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand57\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Logue\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Thomas\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"58\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand58\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand58\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fountain\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Michael\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"59\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"03038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand59\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand59\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gaudette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Anthony\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"60\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand60\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand60\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jarek\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tyler\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"61\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand61\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand61\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Berrill\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Trevor\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"62\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"03051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand62\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand62\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Klein\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joshua\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"63\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"01474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand63\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand63\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wrenn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Kristin\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"64\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"3077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand64\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand64\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ribblett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Lee\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"65\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"3053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand65\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand65\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Taft\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Barbara\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"66\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand66\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand66\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Carmichael\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2022-11-07T17:23:42\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2022-11-07\",\n                    \"first_name\": \"Bob\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"67\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand67\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand67\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chase\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ed\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"68\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03104\",\n                        \"address1\": \"100 River Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand68\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand68\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sanderson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-698-9856\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Elizabeth\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"69\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand69\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand69\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"DeToma\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Anthony\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"70\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"3079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand70\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand70\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"LaBarre\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joshua\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"71\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand71\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand71\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Klitgaard\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Miles\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"72\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand72\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand72\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mullan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"James\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"73\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand73\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand73\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Stagnone\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Michael\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"74\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"01852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand74\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand74\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"John Smith\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pitman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"John\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"75\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"03032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand75\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand75\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"John Smith\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ferrari\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Eric\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"76\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand76\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand76\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brown\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jennifer\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"77\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand77\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand77\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bernaby\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Laura\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"78\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand78\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand78\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"McNamara\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tim\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"79\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand79\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand79\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alward\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joshua\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"80\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand80\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand80\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Macintosh\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Kat\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"81\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand81\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand81\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Connell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joeby\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"82\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand82\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand82\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Vempati\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ramesh\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"83\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand83\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand83\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Duris\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jonathan\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"84\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand84\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand84\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Newton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Scott\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"85\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand85\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand85\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Apple\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Adam\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"86\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand86\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand86\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Midnight\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Eve\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"87\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"1474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand87\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand87\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bonds\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Barry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"88\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"03077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand88\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand88\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pedroia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Dustin\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"89\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"3053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand89\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand89\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Napoli\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Michael\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"90\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand90\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand90\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Elsbury\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jacoby\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"91\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand91\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand91\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Middlebrooks\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"William\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"92\",\n                    \"email\": \"ted.williams@yahoo.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Saint Louis Park\",\n                        \"zip\": \"55416\",\n                        \"address1\": \"3939 Excelsior Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"id\": \"cand828\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand828\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con833\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"93\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand93\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand93\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pesky\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Johnny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"94\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand94\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand94\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yaztremski\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Carl\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"95\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand95\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand95\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Greenwell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Michael\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"96\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand96\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand96\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Boggs\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Wade\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"97\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand97\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand97\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Roberts\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"David\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"98\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand98\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand98\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Barrett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Marty\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Cardinals Corp\",\n                    \"sno\": \"99\",\n                    \"email\": \"stan.musial@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"03032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand99\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand99\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Musial\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Stan\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"100\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand100\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand100\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cobb\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ty\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"101\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand101\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand101\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Varitek\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jason\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"102\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand102\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand102\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bessette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tiffany\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"103\",\n                    \"email\": \"gailmary671@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03063\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand103\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand103\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Victorino\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Shane\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"104\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand104\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand104\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Abad\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Andy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"105\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand105\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand105\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aceves\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Alfredo\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"106\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand106\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand106\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adair\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jerry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"107\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand107\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand107\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adams\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Bob\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"108\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand108\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand108\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adams\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Terry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"109\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand109\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand109\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adkins\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Doc\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"110\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand110\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand110\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Agbayani\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Benny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"111\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand111\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand111\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Agganis\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Harry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"112\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"1474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand112\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand112\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Agnew\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Sam\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"113\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"3077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand113\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand113\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Albers\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Matt\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"114\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"3053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand114\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand114\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Almada\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mel\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"115\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand115\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand115\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Almonte\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Hector\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"116\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand116\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand116\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Anderson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Larry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"117\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"100 River Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand117\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand117\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Anderson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-698-9856\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Lars\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"118\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand118\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand118\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Armas\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tony\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"119\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"3079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand119\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand119\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Astacio\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Pedro\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"120\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand120\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand120\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Atchison\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Scott\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"121\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand121\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand121\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Avery\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Steve\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"122\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand122\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand122\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aviles\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mike\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"123\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand123\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand123\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Baldelli\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rocco\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"124\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"3032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand124\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand124\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bard\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Daniel\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"125\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand125\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand125\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Baylor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Don\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"126\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand126\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand126\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bay\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jason\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"127\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand127\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand127\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Beck\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rod\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"128\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand128\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand128\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Beckett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joshua\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"129\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand129\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand129\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bellhorn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mark\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"130\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand130\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand130\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Benzinger\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:43\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Todd\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"131\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand131\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand131\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Boddiker\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mike\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"132\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand132\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand132\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Boyd\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Oil Can\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"133\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand133\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand133\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brunansky\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tom\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"134\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand134\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand134\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Buckner\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Bill\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"135\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand135\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand135\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Burks\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ellis\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"136\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"1474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand136\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand136\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clemens\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Roger\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"137\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"3077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand137\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand137\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Coffey\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jack\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"138\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"3053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand138\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand138\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Colon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Bartolo\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"139\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand139\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand139\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Crawford\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Carl\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"140\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand140\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand140\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Crisp\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Coco\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"141\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"100 River Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand141\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand141\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Damon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-698-9856\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Johnny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"142\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand142\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand142\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Daubach\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Brian\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"143\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"3079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand143\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand143\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"DiMaggio\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Dom\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"144\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand144\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand144\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Drew\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"JD\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"145\",\n                    \"email\": \"me.muy@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"con145\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.930.1234\",\n                    \"username\": \"con145\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"525\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testing Again\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"0001-01-01T00:00:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"concon99\",\n                    \"parid\": \"\",\n                    \"phone\": \"889.930.1234\",\n                    \"date_added\": \"0001-01-01\",\n                    \"first_name\": \"Me\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"146\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand146\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand146\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jim\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2022-11-07T19:27:00\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2022-11-07\",\n                    \"first_name\": \"Jones\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"147\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand147\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand147\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Evans\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Dwight\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"148\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"3032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand148\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand148\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fisk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Carlton\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"149\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand149\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand149\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Floyd\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Cliff\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Red Sox Corp\",\n                    \"sno\": \"150\",\n                    \"email\": \"jimmie.foxx@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand150\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand150\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Foxx\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jimmie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"151\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand151\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand151\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gagne\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Eric\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"152\",\n                    \"email\": \"gailmary671@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3063\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand152\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand152\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Garces\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rich\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"153\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand153\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand153\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Garciaparra\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Nomar\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"154\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand154\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand154\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gedman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rich\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"155\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand155\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand155\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gillespie\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Bobby\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"156\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand156\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand156\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Giambi\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jeremy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"157\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand157\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand157\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gomes\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jonny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"158\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand158\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand158\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gonzales\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Adrian\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"159\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand159\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand159\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gordon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Flash\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"160\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand160\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand160\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gross\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Kip\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"161\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"1474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand161\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand161\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Grove\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Lefty\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"162\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"3077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand162\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand162\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hanrahan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joel\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"163\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"3053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand163\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand163\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Harris\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mickey\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"164\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand164\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand164\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hartley\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Grover\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"165\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand165\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand165\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hatteberg\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Scott\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"3\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Lakey\",\n                    \"sno\": \"166\",\n                    \"email\": \"adam.lakey@daxtratest.com\",\n                    \"muser\": \"3\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand166\",\n                    \"owner\": \"3\",\n                    \"ctime\": \"0001-01-01T00:00:00\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand166\",\n                    \"date_added\": \"0001-01-01\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Adam\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"167\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand167\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand167\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hillenbrand\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Shea\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"168\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"3079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand168\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand168\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hobson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Butch\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"169\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand169\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand169\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kapler\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Gabe\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"170\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand170\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand170\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lackey\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"John\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"171\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand171\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand171\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lester\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jon\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"172\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand172\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand172\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bucholz\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Clay\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"173\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"3032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand173\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand173\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lowe\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Derek\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"174\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand174\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand174\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lowell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mike\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"175\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand175\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand175\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lowrie\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jed\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"176\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand176\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand176\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lugo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Julio\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"177\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand177\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand177\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lynn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Fred\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"178\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand178\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand178\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rice\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Jimmie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"179\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand179\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand179\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wynn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Earl\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"180\",\n                    \"email\": \"cal.ripken@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand842\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand842\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:45\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con847\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Barnaby Mustache Store\",\n                    \"sno\": \"181\",\n                    \"email\": \"bestmustacheever@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"03038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand181\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand181\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fingers\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rollie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"182\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand182\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand182\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gwynn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tony\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"183\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand183\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand183\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Perry\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Gaylord\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"184\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand184\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand184\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Eckersley\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Dennis\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Yankees Corporation\",\n                    \"sno\": \"185\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"01474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand185\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"978-506-9821\",\n                    \"username\": \"cand185\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"Katie Morgan\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jackson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Reggie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"186\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"3077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand186\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand186\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Winfield\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Dave\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"187\",\n                    \"email\": \"kengriffeytesteron@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"03053\",\n                        \"address1\": \"Londonderry\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand187\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand187\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Griffey, Jr.\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con858\",\n                    \"parid\": \"\",\n                    \"phone\": \"+169 7563214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ken\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"188\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand188\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand188\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ott\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mel\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"189\",\n                    \"email\": \"RyanNolanRanger@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand189\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand189\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ryan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Nolan\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"190\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"100 River Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand190\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand190\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Goslin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-698-9856\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Goose\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"191\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand191\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand191\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Maddox\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Greg\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"192\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand192\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand192\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"Career Builder\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Stargell\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"171\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Willie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"193\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand193\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand193\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Robinson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Brooks\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"194\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand194\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand194\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Schmidt\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mike\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"195\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand195\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand195\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Murray\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Eddie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Pitching Experts, Inc.\",\n                    \"sno\": \"196\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"01852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand196\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand196\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Koufax\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Sandy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"197\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"3032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand197\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand197\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rose\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Pete\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"198\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand198\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand198\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Robinson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Frank\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"199\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand199\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand199\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clemente\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Roberto\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"200\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"03824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand200\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand200\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killebrew\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Harmon\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Yankees Corporation\",\n                    \"sno\": \"201\",\n                    \"email\": \"gailmary671@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03063\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand201\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand201\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"referred by John Smi\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mantle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Mickey\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"202\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"01886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand202\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand202\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bench\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"316\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Johnny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"203\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand203\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand203\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wagner\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Honus\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"204\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand204\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand204\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Carew\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rod\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"205\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand205\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand205\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Morgan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joe\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"206\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand206\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand206\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hornsby\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rogers\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Red Sox Corporation\",\n                    \"sno\": \"207\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"01854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand207\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand207\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"Career Builder\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Splinter\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"171\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Splendid\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Kansas City Royals Corporation\",\n                    \"sno\": \"208\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"03051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand208\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand208\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"Cam Jace\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"George\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"209\",\n                    \"email\": \"hankaarontesteron@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"03051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand209\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand209\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"John Smith\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aaron\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Hank\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"210\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"01474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand210\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand210\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ford\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Whitey\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Major League Baseball\",\n                    \"sno\": \"211\",\n                    \"email\": \"williemayshays@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"03077\",\n                        \"address1\": \"454 Governers Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand211\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand211\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mays\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"316\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Willie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"212\",\n                    \"email\": \"aaronrodgerstesteron@yahoo.com\",\n                    \"cl_status\": \"159\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"03053\",\n                        \"address1\": \"Londonderry\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand212\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand212\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"159\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rodgers\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con861\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Aaron\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"213\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand213\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand213\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bruschi\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Teddy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"214\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand214\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand214\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"InDeed\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brady\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"171\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Tom\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"215\",\n                    \"email\": \"camneelytesteron@yahoo.com\",\n                    \"cl_status\": \"159\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand215\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand215\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"159\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con857\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Another\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"216\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand216\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand216\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Oates\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Adam\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Bruins Corporation\",\n                    \"sno\": \"217\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand217\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand217\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Orr\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Bobby\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"218\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand218\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand218\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Moss\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Randy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"219\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Merrimack\",\n                        \"zip\": \"3054\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand219\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand219\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bledsoe\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-986-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Drew\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"220\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"2155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand220\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand220\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Millen\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Hugh\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"221\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1852\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand221\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand221\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Grogan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Steve\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"222\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"3032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand222\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand222\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Esiason\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Boomer\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"223\",\n                    \"email\": \"joe.m.montana3102@yahoo.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand819\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand819\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Montana\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con824\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Joe\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"224\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"3102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand224\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand224\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brees\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Drew\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"225\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"3824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand225\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand225\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Martin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Curtis\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"226\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Westford\",\n                        \"zip\": \"1886\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand226\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand226\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sanders\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-999-8698\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Barry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"227\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3064\",\n                        \"address1\": \"29 Farm House Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand227\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand227\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dillon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Corey\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"228\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Andover\",\n                        \"zip\": \"1810\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand228\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand228\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Moorehead\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-665-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Wes\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"229\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"3062\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand229\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand229\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Woodhead\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-654-9874\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Danny\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"230\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Derry\",\n                        \"zip\": \"3038\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand230\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand230\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Manning\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-845-0740\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Payton\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"231\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"1854\",\n                        \"address1\": \"27 Fitchburg Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand231\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand231\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Manning\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-555-2222\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Archie\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"232\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"34 Water Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand232\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand232\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Young\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-1212\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Steve\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"233\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hudson\",\n                        \"zip\": \"3051\",\n                        \"address1\": \"161 Old Man Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand233\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand233\",\n                    \"title\": \"Sales\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bradshaw\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-555-6325\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Terry\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"234\",\n                    \"email\": \"robgronkowskitesteron@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Townsend\",\n                        \"zip\": \"01474\",\n                        \"address1\": \"35 Mason Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand234\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand234\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gronkowski\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"170\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"978-541-3658\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rob\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"235\",\n                    \"email\": \"vincewilforktesteron@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raymond\",\n                        \"zip\": \"03077\",\n                        \"address1\": \"45 Harriman Hill Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand235\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand235\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wilfork\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con859\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Vince\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"SBC Inc\",\n                    \"sno\": \"236\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Londonderry\",\n                        \"zip\": \"03053\",\n                        \"address1\": \"543 Hardy Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand236\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand236\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gostkowski\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"698-756-3214\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Stephen\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Patriots, Inc.\",\n                    \"sno\": \"237\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"353\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"33179\",\n                        \"address1\": \"1977 N.E. 10th Ave\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand237\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand237\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"353\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Edelman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"170\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"654-987-5236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Julian\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"238\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33625\",\n                        \"address1\": \"847 Williamsburg Way\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand238\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand238\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dobson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"895-325-4569\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Aaron\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Dunkin Donuts\",\n                    \"sno\": \"239\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03104\",\n                        \"address1\": \"100 River Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand239\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"293\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand239\",\n                    \"title\": \"Java Developer\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ninkovich\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"170\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-698-9856\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Rob\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"ABJ Company\",\n                    \"sno\": \"240\",\n                    \"email\": \"stevanridley@yahoo.com\",\n                    \"cl_status\": \"160\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Castleton\",\n                        \"zip\": \"15426\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand240\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand240\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"160\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ridley\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"802-555-6985\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Stevan\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Patriots Corporation\",\n                    \"sno\": \"241\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"2 Olde Village Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand241\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"293\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand241\",\n                    \"title\": \"Java Developer\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Solder\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"316\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-6523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Nate\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"242\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Acton\",\n                        \"zip\": \"1720\",\n                        \"address1\": \"34 Brook Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand242\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand242\",\n                    \"title\": \"Sales - Outside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mankins\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"609-639-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Logan\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"243\",\n                    \"email\": \"adamvinatieritesteron@yahoo.com\",\n                    \"cl_status\": \"159\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand243\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand243\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"159\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con855\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Assistants Are Us\",\n                    \"sno\": \"244\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Medford\",\n                        \"zip\": \"02155\",\n                        \"address1\": \"5432 Bradshaw St\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand244\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"300\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand244\",\n                    \"title\": \"Executive Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ford\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"316\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"781-555-1236\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Gerald\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"245\",\n                    \"email\": \"ronaldreagantesteron@yahoo.com\",\n                    \"cl_status\": \"161\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lowell\",\n                        \"zip\": \"01852\",\n                        \"address1\": \"101 Thorndike Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand245\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"293\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand245\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"161\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Reagan\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con863\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 978-654-9875\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Ronald\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"246\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"03032\",\n                        \"address1\": \"9876 Peachtree Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand246\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand246\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Washington\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-987-4563\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"George\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"247\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03104\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand247\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand247\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rosevelt\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-321-9674\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Teddy\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"248\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Manchester\",\n                        \"zip\": \"03102\",\n                        \"address1\": \"258 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand248\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand248\",\n                    \"title\": \"IT\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cusak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-852-9632\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"John\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Top Dog Sales, Inc.\",\n                    \"sno\": \"249\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"03824\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand249\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand249\",\n                    \"title\": \"Sales - Inside\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clapton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603-741-8523\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"Eric\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"250\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand250\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand250\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"251\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand251\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand251\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"252\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand252\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand252\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"253\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand253\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand253\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"254\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand254\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand254\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"255\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand255\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand255\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"256\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand256\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand256\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"257\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand257\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand257\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"258\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand258\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand258\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"259\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand259\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand259\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"260\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand260\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand260\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"261\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand261\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand261\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"262\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand262\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand262\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"263\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand263\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand263\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"264\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand264\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand264\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"265\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand265\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand265\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"266\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand266\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand266\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"267\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand267\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand267\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"268\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand268\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand268\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"269\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand269\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand269\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2013-11-08T22:45:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2013-11-08\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"5\",\n                    \"sutype\": \"\",\n                    \"department\": \"Contract Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"270\",\n                    \"email\": \"rc.vempati@gmail.com\",\n                    \"cl_status\": \"159\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"NASHUA\",\n                        \"zip\": \"03062\",\n                        \"address1\": \"3 KATIE LN\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand270\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand270\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"159\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Vempati\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2020-01-16T15:40:17\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp32\",\n                    \"parid\": \"\",\n                    \"phone\": \"6037387166\",\n                    \"date_added\": \"2020-01-16\",\n                    \"first_name\": \"Ramesh\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"271\",\n                    \"email\": \"testemailtest@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Eagle Pass\",\n                        \"zip\": \"78852\",\n                        \"address1\": \"2525 East Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand271\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand271\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"API\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2022-04-11T09:01:47\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp33\",\n                    \"parid\": \"\",\n                    \"phone\": \"+18889692900\",\n                    \"date_added\": \"2022-04-11\",\n                    \"first_name\": \"Open\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"272\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand272\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"username\": \"cand272\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killon\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:19:22\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1234\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dome\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"273\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand273\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"username\": \"cand273\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killon\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:19:33\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1234\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dome\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"274\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand274\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"username\": \"cand274\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killon\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:20:43\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1234\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dome\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"275\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand275\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"username\": \"cand275\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killon\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:21:32\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1234\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dome\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"276\",\n                    \"email\": \"haleyjams501@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1210 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand276\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1234\",\n                    \"username\": \"cand276\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killon\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:22:24\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1234\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dome\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"277\",\n                    \"email\": \"haleyjams541@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1215 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand277\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"818.931.1214\",\n                    \"username\": \"cand277\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Killons\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:51:43\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"819.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Domes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"278\",\n                    \"email\": \"haleyjams544@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand278\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand278\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kallons\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T13:57:22\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Demes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"279\",\n                    \"email\": \"haleyjams594@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand279\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand279\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kallop\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T14:02:47\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dema\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"280\",\n                    \"email\": \"haleyjams524@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand280\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand280\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kallom\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T14:06:07\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Demau\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"281\",\n                    \"email\": \"haleyjams528@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand281\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand281\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kallob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T14:07:38\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Demai\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"282\",\n                    \"email\": \"haleyjams526@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand282\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand282\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kalob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T14:12:32\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Demac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"283\",\n                    \"email\": \"haleyjams926@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand283\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand283\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kabob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T15:29:06\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Deyac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"284\",\n                    \"email\": \"haleyjams326@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand284\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand284\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Labob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T15:35:54\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dyac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"285\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand285\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand285\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Larob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T15:52:06\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Diac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"286\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand286\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand286\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Larob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:22:10\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Diac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"287\",\n                    \"email\": \"haleyjams026@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand287\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand287\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Larob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:24:45\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Diac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"288\",\n                    \"email\": \"haleyjams096@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand288\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand288\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lanob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:29:07\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Deac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"289\",\n                    \"email\": \"haleyjams996@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand289\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand289\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Laiob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:31:44\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dekc\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"290\",\n                    \"email\": \"haleyams996@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand290\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand290\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Layob\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:35:54\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dukc\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"291\",\n                    \"email\": \"haleyams906@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand291\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand291\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Layom\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:41:03\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Duck\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"292\",\n                    \"email\": \"haleyams506@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand292\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand292\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Layoms\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:46:31\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Ducks\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"293\",\n                    \"email\": \"haleyams536@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand293\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand293\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyoms\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-22T16:51:31\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-22\",\n                    \"first_name\": \"Dcks\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"294\",\n                    \"email\": \"haleyams586@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand294\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand294\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyems\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:26:29\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwcks\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"295\",\n                    \"email\": \"haleyams586@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand295\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand295\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyems\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:29:54\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwcks\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"296\",\n                    \"email\": \"haleyams086@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand296\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand296\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyem\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:33:36\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwck\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"297\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand297\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand297\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lye\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:40:07\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwc\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"298\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand298\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand298\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lye\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:42:31\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwc\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"299\",\n                    \"email\": \"haleyams786@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand299\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand299\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lye\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:49:11\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwc\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"300\",\n                    \"email\": \"haleyams796@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand300\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand300\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T15:54:56\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dw\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"301\",\n                    \"email\": \"haleyams7906@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand301\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand301\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyu\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T16:01:39\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwl\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"302\",\n                    \"email\": \"haleyams7916@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand302\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand302\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyui\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T16:03:51\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwlm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"303\",\n                    \"email\": \"haleyams7996@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand303\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand303\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyuw\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T16:06:44\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"849.930.1244\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwlr\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"304\",\n                    \"email\": \"haleyams7998@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand304\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand304\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyut\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-24T21:11:05\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con206\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-02-24\",\n                    \"first_name\": \"Dwir\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"305\",\n                    \"email\": \"haleyams7998@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand305\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand305\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyut\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-02-23T21:24:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con207\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-02-23\",\n                    \"first_name\": \"Dwir\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"306\",\n                    \"email\": \"haleyams7198@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand306\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand306\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"527\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Last\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-13T22:19:33\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con209\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2023-03-13\",\n                    \"first_name\": \"First\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"307\",\n                    \"email\": \"tshoemaker031623@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand307\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand307\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T10:58:20\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"308\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand308\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"username\": \"cand308\",\n                    \"title\": \"Thiss\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Haley\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T11:00:58\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"889.932.1234\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"Mest\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"309\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand309\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"username\": \"cand309\",\n                    \"title\": \"Thiss\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Haley\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T11:11:50\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"889.932.1234\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"Mest\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"310\",\n                    \"email\": \"haleyjams2@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand310\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"username\": \"cand310\",\n                    \"title\": \"Thiss\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Haley\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T15:10:11\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"889.939.1234\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"Mesi\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"311\",\n                    \"email\": \"haleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand311\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand311\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T19:25:09\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con216\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"Messi\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"312\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand312\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand312\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-16T19:26:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con217\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-16\",\n                    \"first_name\": \"Jessi\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"313\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand313\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand313\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T14:16:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con218\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"314\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand314\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand314\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T14:36:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con219\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"315\",\n                    \"email\": \"haleyjams@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1026 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"id\": \"cand315\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"898.934.1234\",\n                    \"username\": \"cand315\",\n                    \"title\": \"Thiss\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Haley\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T14:38:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con220\",\n                    \"parid\": \"\",\n                    \"phone\": \"889.932.1234\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"Mest\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"316\",\n                    \"email\": \"kymomy@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand316\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 904-393-9729\",\n                    \"username\": \"cand316\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gail\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T17:39:33\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con222\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"Petra\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"317\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand317\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand317\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T20:10:13\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con223\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"Jessi\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"318\",\n                    \"email\": \"jaleyjams2k2@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand318\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand318\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Halk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-17T20:10:33\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con224\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-17\",\n                    \"first_name\": \"Jessik\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"319\",\n                    \"email\": \"jaleyjams2f2@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand319\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand319\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ha\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-21T18:29:42\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con225\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-21\",\n                    \"first_name\": \"Jes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"120\",\n                    \"sutype\": \"\",\n                    \"department\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"320\",\n                    \"email\": \"jaleyjams2f2@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand320\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand320\",\n                    \"title\": \"That\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ha\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-21T18:38:58\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con226\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-21\",\n                    \"first_name\": \"Jes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"321\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand321\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand321\",\n                    \"title\": \"Thats\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hasf\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-21T18:48:32\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con227\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-21\",\n                    \"first_name\": \"Hess\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"322\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand322\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.1234\",\n                    \"username\": \"cand322\",\n                    \"title\": \"Thats\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hasf\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-21T18:56:34\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con228\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.1234\",\n                    \"date_added\": \"2023-03-21\",\n                    \"first_name\": \"Hess\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"323\",\n                    \"email\": \"jaleyjams22@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand323\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand323\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"job\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hasem\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-21T19:00:26\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"531\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con229\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.3234\",\n                    \"date_added\": \"2023-03-21\",\n                    \"first_name\": \"Hester\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"324\",\n                    \"email\": \"tshoemaker032323@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand324\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand324\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-23T14:12:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con230\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-23\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"325\",\n                    \"email\": \"tshoemaker032323-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand325\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand325\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"McGuire\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-23T14:37:50\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con231\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-03-23\",\n                    \"first_name\": \"Toby\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"326\",\n                    \"email\": \"tshoemaker032323-2@haleymarketing.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand326\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand326\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-23T14:58:57\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con232\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"date_added\": \"2023-03-23\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"327\",\n                    \"email\": \"sukuzykem@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Riverside\",\n                        \"zip\": \"87533\",\n                        \"address1\": \"NM Office Supplies\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand327\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand327\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hunter\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-25T18:23:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con233\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 928-261-9048\",\n                    \"date_added\": \"2023-03-25\",\n                    \"first_name\": \"Kelly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"328\",\n                    \"email\": \"jaleyjams123311imkk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand328\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand328\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"social plotter\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Priseafaf\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-26T20:19:49\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"539\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con253\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.3234\",\n                    \"date_added\": \"2023-03-26\",\n                    \"first_name\": \"Hesterso\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"329\",\n                    \"email\": \"jaleyjams121imkk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand329\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand329\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"social plotter\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Priseafaf\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-26T20:20:35\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"539\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con254\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.3234\",\n                    \"date_added\": \"2023-03-26\",\n                    \"first_name\": \"Hesterso\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"330\",\n                    \"email\": \"jaleyjam00921imkk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand330\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand330\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"social plotter\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Priseaff\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-26T20:20:58\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"539\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con255\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.939.3234\",\n                    \"date_added\": \"2023-03-26\",\n                    \"first_name\": \"Hestso\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"331\",\n                    \"email\": \"tshoemaker032923@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand331\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand331\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-29T13:41:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con259\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"date_added\": \"2023-03-29\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"332\",\n                    \"email\": \"tshoemaker032923-2@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand332\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand332\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-03-29T14:08:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con261\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"date_added\": \"2023-03-29\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Yetta\",\n                    \"sno\": \"333\",\n                    \"email\": \"mivoziji@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nisi ipsa quos sint\",\n                        \"zip\": \"49440\",\n                        \"address1\": \"Qui ut possimus dol\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand333\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-03-30T21:41:06\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"549\",\n                    \"candid\": \"con263\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 906-511-6935\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand333\",\n                    \"date_added\": \"2023-03-30\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Demetria\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Odette\",\n                    \"sno\": \"334\",\n                    \"email\": \"hahy@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agagag\",\n                        \"zip\": \"12321\",\n                        \"address1\": \"agagag\",\n                        \"address2\": \"\",\n                        \"state\": \"Ohio\"\n                    },\n                    \"id\": \"cand334\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-03-31T19:18:58\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"549\",\n                    \"candid\": \"con264\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 512-208-4724\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand334\",\n                    \"date_added\": \"2023-03-31\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Lacota\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Nigel\",\n                    \"sno\": \"335\",\n                    \"email\": \"wira@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Et iure eius vel eni\",\n                        \"zip\": \"20447\",\n                        \"address1\": {\n                            \"content\": \"Eiusmod suscipit ab \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Ohio\"\n                    },\n                    \"id\": \"cand335\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-03-31T21:20:22\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"549\",\n                    \"candid\": \"con266\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 878-266-9436\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand335\",\n                    \"date_added\": \"2023-03-31\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Mason\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"336\",\n                    \"email\": \"citebuho@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"atjkhjtk\",\n                        \"zip\": \"11235\",\n                        \"address1\": \"augugh\",\n                        \"address2\": \"\",\n                        \"state\": \"VT\"\n                    },\n                    \"id\": \"cand336\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand336\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Eaque consequatur al\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ryan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-05T15:58:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"551\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con267\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 903-927-7318\",\n                    \"date_added\": \"2023-04-05\",\n                    \"first_name\": \"Lacy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Tamekah\",\n                    \"sno\": \"337\",\n                    \"email\": \"nosyxecy@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60637\",\n                        \"address1\": \"255 East 63rd Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand337\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-04-06T20:06:33\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"553\",\n                    \"candid\": \"con268\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 972-435-9585\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand337\",\n                    \"date_added\": \"2023-04-06\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Vaughan\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Paul\",\n                    \"sno\": \"338\",\n                    \"email\": \"gapezom@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fugate\",\n                        \"zip\": \"\",\n                        \"address1\": \"Fugate\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand338\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-04-06T20:15:47\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"553\",\n                    \"candid\": \"con269\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 539-332-3341\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand338\",\n                    \"date_added\": \"2023-04-06\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Jarrod\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"339\",\n                    \"email\": \"jaleyam1kk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand339\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand339\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"social\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paffa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-06T20:49:00\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"555\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con271\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-06\",\n                    \"first_name\": \"Hsoa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"340\",\n                    \"email\": \"jocytu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Fe\",\n                        \"zip\": \"87501\",\n                        \"address1\": \"179C Paseo de Peralta\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand340\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand340\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Susan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-06T20:50:36\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con272\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 402-217-2805\",\n                    \"date_added\": \"2023-04-06\",\n                    \"first_name\": \"Yuli\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"341\",\n                    \"email\": \"mojuxasoz@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dighton\",\n                        \"zip\": \"\",\n                        \"address1\": \"Dighton, MA\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand341\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand341\",\n                    \"title\": \"\",\n                    \"referral_source\": \"referral\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sara\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-06T20:53:12\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con273\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 712-486-8154\",\n                    \"date_added\": \"2023-04-06\",\n                    \"first_name\": \"Nash\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"342\",\n                    \"email\": \"tshoemaker040723@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand342\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand342\",\n                    \"title\": \"\",\n                    \"referral_source\": \"referral\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T13:38:11\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con274\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"343\",\n                    \"email\": \"tshoemaker040723-3@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand343\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand343\",\n                    \"title\": \"\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T14:08:31\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con276\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-555-2121\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"344\",\n                    \"email\": \"tshoemaker040723-5@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand344\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-631-8981\",\n                    \"username\": \"cand344\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T15:04:14\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con277\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"345\",\n                    \"email\": \"tshoemaker040723-6@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand345\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-631-8981\",\n                    \"username\": \"cand345\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T15:04:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con278\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"346\",\n                    \"email\": \"jaleya11m1kk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand346\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand346\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"who\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paffaa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T18:26:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"557\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con280\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Hso1a\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"347\",\n                    \"email\": \"jalea11m1kk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand347\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand347\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"whose\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pafaa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T18:27:26\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"559\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con281\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Ho1a\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"348\",\n                    \"email\": \"jalea11mk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand348\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand348\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"whoseor\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T18:41:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"561\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con282\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Ho1\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"349\",\n                    \"email\": \"jale31mk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": \"cand349\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand349\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"whoseoro\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T19:04:13\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"563\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con285\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Ho1\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"350\",\n                    \"email\": \"jale319u89hmk@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand350\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand350\",\n                    \"title\": \"Thats It\",\n                    \"referral_source\": \"whoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pklj8k\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T19:37:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"565\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con286\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Hoihjuij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"351\",\n                    \"email\": \"dyrypod@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"ghfh\",\n                        \"zip\": \"00000\",\n                        \"address1\": \"5577\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand351\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 507-248-4531\",\n                    \"username\": \"cand351\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Eric\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T19:58:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con287\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Alfonso\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"352\",\n                    \"email\": \"cuxodoja@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Qui autem in eveniet\",\n                        \"zip\": \"71103\",\n                        \"address1\": \"Iusto minim omnis ex\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand352\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 731-699-4432\",\n                    \"username\": \"cand352\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nerea\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T20:23:25\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con288\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Randall\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"353\",\n                    \"email\": \"jikyniq@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Iure et deserunt mai\",\n                        \"zip\": \"59776\",\n                        \"address1\": {\n                            \"content\": \"Non sit quia dolor \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand353\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 717-569-8679\",\n                    \"username\": \"cand353\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Harper\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T20:26:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con289\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Joelle\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"354\",\n                    \"email\": \"xaridivaty@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Omnis doloribus quia\",\n                        \"zip\": \"74468\",\n                        \"address1\": \"Voluptate Nam qui ad\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand354\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 585-946-5724\",\n                    \"username\": \"cand354\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Flavia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T20:37:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con290\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Kasper\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"355\",\n                    \"email\": \"wuzipa@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Sed quisquam labore \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"93413\",\n                        \"address1\": \"Laboriosam omnis et\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand355\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 522-303-3455\",\n                    \"username\": \"cand355\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ina\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T20:38:31\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con291\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"Declan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"356\",\n                    \"email\": \"gag@ho.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ingham Township\",\n                        \"zip\": \"48819\",\n                        \"address1\": \"Ingham Township, MI 48819\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand356\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-523-1211\",\n                    \"username\": \"cand356\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"agag\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-07T20:41:26\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con292\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-07\",\n                    \"first_name\": \"jhjk\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"357\",\n                    \"email\": \"cehovizu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"aguhag\",\n                        \"zip\": \"12121\",\n                        \"address1\": \"gahgu\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand357\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 416-891-2407\",\n                    \"username\": \"cand357\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ross\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T19:17:17\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con293\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Ori\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"358\",\n                    \"email\": \"rydyxanat@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkhakgah\",\n                        \"zip\": \"001212\",\n                        \"address1\": \"ahauhkgah\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand358\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 817-894-2802\",\n                    \"username\": \"cand358\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kevyn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T20:06:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con294\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Blythe\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"359\",\n                    \"email\": \"jarane@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkahgjkag\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agjhajgk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand359\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 646-513-9624\",\n                    \"username\": \"cand359\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jamalia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T22:11:36\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con295\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Kathleen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"360\",\n                    \"email\": \"gafady@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nostrum assumenda qu\",\n                        \"zip\": \"88466\",\n                        \"address1\": \"Sit et cumque in ac\",\n                        \"address2\": \"\",\n                        \"state\": \"Veniam magna praese\"\n                    },\n                    \"id\": \"cand360\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 478-527-5708\",\n                    \"username\": \"cand360\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yvette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T22:18:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con296\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Aileen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"361\",\n                    \"email\": \"duze@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Doloremque odio eos \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"14386\",\n                        \"address1\": {\n                            \"content\": \"Ex debitis fuga Ut \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Nostrud doloremque o\"\n                    },\n                    \"id\": \"cand361\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 458-839-2233\",\n                    \"username\": \"cand361\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Veda\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T22:37:09\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con297\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Ryan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"362\",\n                    \"email\": \"duzefafa@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": {\n                            \"content\": \"Doloremque odio eos \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"zip\": \"14386\",\n                        \"address1\": {\n                            \"content\": \"Ex debitis fuga Ut \",\n                            \"xml:space\": \"preserve\"\n                        },\n                        \"address2\": \"\",\n                        \"state\": \"Nostrud doloremque o\"\n                    },\n                    \"id\": \"cand362\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 458-839-2233\",\n                    \"username\": \"cand362\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Illo quaerat eligend\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Veda\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T22:44:21\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"567\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con298\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Ryan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"363\",\n                    \"email\": \"qukuhysu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"ajgkhajkg\",\n                        \"zip\": \"12311\",\n                        \"address1\": \"aglaghk\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand363\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 262-691-8918\",\n                    \"username\": \"cand363\",\n                    \"title\": \"\",\n                    \"referral_source\": \"referral\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Marvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-10T22:47:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con299\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-10\",\n                    \"first_name\": \"Ralph\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"364\",\n                    \"email\": \"jopyryt@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"gakjhgjka\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agjhajgk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand364\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-337-9248\",\n                    \"username\": \"cand364\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Melvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-12T18:29:57\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con300\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-12\",\n                    \"first_name\": \"Kathleen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"365\",\n                    \"email\": \"sicunaqity@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ina\",\n                        \"zip\": \"62846\",\n                        \"address1\": \"Ina, IL 62846\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand365\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 504-557-8299\",\n                    \"username\": \"cand365\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dylan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-12T18:48:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con301\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-12\",\n                    \"first_name\": \"Wanda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"366\",\n                    \"email\": \"saweriraxo@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sitka\",\n                        \"zip\": \"99835\",\n                        \"address1\": \"Sitka\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"id\": \"cand366\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 804-472-8097\",\n                    \"username\": \"cand366\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chadwick\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-12T18:56:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con302\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 804-472-8097\",\n                    \"date_added\": \"2023-04-12\",\n                    \"first_name\": \"Amena\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"367\",\n                    \"email\": \"saquto@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Oconto\",\n                        \"zip\": \"54153\",\n                        \"address1\": \"Oconto, WI 54153\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"id\": \"cand367\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 803-627-5218\",\n                    \"username\": \"cand367\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Norman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-12T19:14:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con303\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 803-627-5218\",\n                    \"date_added\": \"2023-04-12\",\n                    \"first_name\": \"Daryl\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"368\",\n                    \"email\": \"gola@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sonoma\",\n                        \"zip\": \"95476\",\n                        \"address1\": \"650 2nd Street West\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand368\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 262-709-7078\",\n                    \"username\": \"cand368\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bert\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-12T19:24:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con304\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-12\",\n                    \"first_name\": \"Quinn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"369\",\n                    \"email\": \"tshoemaker041323@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand369\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand369\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T12:17:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con305\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"370\",\n                    \"email\": \"tshoemaker041323-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand370\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand370\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T12:21:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con306\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"371\",\n                    \"email\": \"tshoemaker041323-2@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand371\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand371\",\n                    \"title\": \"\",\n                    \"referral_source\": \"test\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T12:27:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"568\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con308\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"372\",\n                    \"email\": \"hegozu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agkhakg\",\n                        \"zip\": \"12312\",\n                        \"address1\": \"agfhagk\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand372\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 441-326-8307\",\n                    \"username\": \"cand372\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nicholas\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T20:35:05\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con309\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Zenia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"373\",\n                    \"email\": \"dukajyvyvo@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"gakhkag\",\n                        \"zip\": \"12455\",\n                        \"address1\": \"ghakjgka\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand373\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 443-992-6128\",\n                    \"username\": \"cand373\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cheryl\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T20:40:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con310\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 443-992-6128\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Remedios\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"374\",\n                    \"email\": \"ruvoci@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agkjhkg\",\n                        \"zip\": \"12345\",\n                        \"address1\": \"agjhkg\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand374\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 804-563-3909\",\n                    \"username\": \"cand374\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Todd\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T20:45:26\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con311\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 804-563-3909\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Alice\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"375\",\n                    \"email\": \"kigyw@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Voluptatem alias qui\",\n                        \"zip\": \"91116\",\n                        \"address1\": \"Sunt similique conse\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand375\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 405-356-8657\",\n                    \"username\": \"cand375\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lila\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T21:20:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con312\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 405-356-8657\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Bradley\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"376\",\n                    \"email\": \"gohele@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Id minus tempor dele\",\n                        \"zip\": \"75410\",\n                        \"address1\": \"Animi est cum dicta\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand376\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 402-358-4789\",\n                    \"username\": \"cand376\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Forrest\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T21:27:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con313\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Marny\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"377\",\n                    \"email\": \"AGAG@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"agjkag\",\n                        \"zip\": \"12345\",\n                        \"address1\": \"agajghk\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand377\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 502-523-9999\",\n                    \"username\": \"cand377\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"agagag\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T21:46:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con314\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"glakghajg\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"378\",\n                    \"email\": \"tuzad@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Absecon\",\n                        \"zip\": \"08201\",\n                        \"address1\": \"Absecon, NJ 08201\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"id\": \"cand378\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-835-6761\",\n                    \"username\": \"cand378\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Eve\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T22:32:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con315\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Cheyenne\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"379\",\n                    \"email\": \"jozaqy@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"35022\",\n                        \"address1\": \"Dolonah Quarry\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"id\": \"cand379\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 812-262-2117\",\n                    \"username\": \"cand379\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jacob\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T22:38:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con316\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Kelsey\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"380\",\n                    \"email\": \"doqi@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Clarita\",\n                        \"zip\": \"01387\",\n                        \"address1\": \"Eos Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand380\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 405-472-2422\",\n                    \"username\": \"cand380\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sonya\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T22:40:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con317\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 405-472-2422\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Barclay\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"381\",\n                    \"email\": \"wogymun@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rector\",\n                        \"zip\": \"72461\",\n                        \"address1\": \"Rector, AR 72461\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand381\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"username\": \"cand381\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Xena\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-13T23:55:53\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con318\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-13\",\n                    \"first_name\": \"Bernard\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"382\",\n                    \"email\": \"widaheh@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chester\",\n                        \"zip\": \"19013\",\n                        \"address1\": \"Commodore Barry Bridge\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"id\": \"cand382\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 203-649-1455\",\n                    \"username\": \"cand382\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sade\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-14T00:03:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con319\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-14\",\n                    \"first_name\": \"Bethany\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"383\",\n                    \"email\": \"masol@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"State College\",\n                        \"zip\": \"16803\",\n                        \"address1\": \"385 Science Park Road\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"id\": \"cand383\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"username\": \"cand383\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gannon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-14T00:16:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con320\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-14\",\n                    \"first_name\": \"Aladdin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"384\",\n                    \"email\": \"xojypeci@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"id\": \"cand384\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-464-6875\",\n                    \"username\": \"cand384\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ora\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-14T02:51:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con321\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 805-464-6875\",\n                    \"date_added\": \"2023-04-14\",\n                    \"first_name\": \"Evangeline\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"385\",\n                    \"email\": \"madusotu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand385\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 909-471-4896\",\n                    \"username\": \"cand385\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lambert\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T17:24:57\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con323\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Jordan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"386\",\n                    \"email\": \"ficad@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand386\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 571-356-9012\",\n                    \"username\": \"cand386\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Patterson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T17:35:05\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con324\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Keiko\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"387\",\n                    \"email\": \"gonikyqo@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Shoshoni\",\n                        \"zip\": \"82649\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"WY\"\n                    },\n                    \"id\": \"cand387\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-512-1988\",\n                    \"username\": \"cand387\",\n                    \"title\": \"\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Myra\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T18:19:14\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con325\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Isabelle\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"388\",\n                    \"email\": \"dinop@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Shoshoni\",\n                        \"zip\": \"82649\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"WY\"\n                    },\n                    \"id\": \"cand388\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-489-4425\",\n                    \"username\": \"cand388\",\n                    \"title\": \"\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cassady\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T18:26:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con326\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 716-489-4425\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Guinevere\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"389\",\n                    \"email\": \"selu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand389\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 973-424-2879\",\n                    \"username\": \"cand389\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wheeler\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T18:28:53\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con327\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Harrison\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"390\",\n                    \"email\": \"bucodevan@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand390\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 806-319-4339\",\n                    \"username\": \"cand390\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Figueroa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T18:55:55\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con328\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Madonna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"391\",\n                    \"email\": \"daze@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand391\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 747-914-3389\",\n                    \"username\": \"cand391\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Conner\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-15T18:58:16\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con329\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-15\",\n                    \"first_name\": \"Sage\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"392\",\n                    \"email\": \"qitesezisa@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sparks\",\n                        \"zip\": \"74869\",\n                        \"address1\": \"Quapaw Creek Site 1 Dam\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand392\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 724-909-6894\",\n                    \"username\": \"cand392\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Marsh\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-17T21:07:49\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con330\",\n                    \"parid\": \"\",\n                    \"phone\": \"+17373866533\",\n                    \"date_added\": \"2023-04-17\",\n                    \"first_name\": \"Martena\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"393\",\n                    \"email\": \"tshoemaker041823@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand393\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand393\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shoemaker\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-18T18:01:44\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con331\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-18\",\n                    \"first_name\": \"Tiffany\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"394\",\n                    \"email\": \"tshoemaker041823-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand394\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand394\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shoemaker\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-18T18:06:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con332\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-18\",\n                    \"first_name\": \"Tiffany\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"395\",\n                    \"email\": \"tiffany0419@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand395\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-631-5555\",\n                    \"username\": \"cand395\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-19T19:22:20\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con333\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-19\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"396\",\n                    \"email\": \"tiffany0419-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand396\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 716-555-2212\",\n                    \"username\": \"cand396\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-19T19:26:40\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con334\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-19\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"397\",\n                    \"email\": \"\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand397\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand397\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Open API\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"agag\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-04-20T17:34:05\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con335\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-04-20\",\n                    \"first_name\": \"atgkla\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"398\",\n                    \"email\": \"jalaf133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12313\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand398\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand398\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Polk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-02T17:53:30\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con339\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-02\",\n                    \"first_name\": \"Aauij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"399\",\n                    \"email\": \"tshoemaker050223@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand399\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand399\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-02T18:06:50\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con340\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-02\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"400\",\n                    \"email\": \"tshoemaker050523@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand400\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand400\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-05T14:20:41\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con341\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-05\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"5\",\n                    \"sutype\": \"\",\n                    \"department\": \"Contract Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"401\",\n                    \"email\": \"jaalaf133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand401\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand401\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Akkencloud.com\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pelk\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-05T15:01:20\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-05\",\n                    \"first_name\": \"Abuij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"5\",\n                    \"sutype\": \"\",\n                    \"department\": \"Contract Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"402\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand402\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand402\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-05T19:06:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con344\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-05\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"5\",\n                    \"sutype\": \"\",\n                    \"department\": \"Contract Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"403\",\n                    \"email\": \"kizuhehaz@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cedar Hills\",\n                        \"zip\": \"84004\",\n                        \"address1\": \"North La Quinta\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand403\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 813-651-7023\",\n                    \"username\": \"cand403\",\n                    \"title\": \"\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Courtney\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-05T19:09:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con345\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-05\",\n                    \"first_name\": \"Juliet\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"404\",\n                    \"email\": \"tshoemaker0509@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand404\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand404\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-09T12:13:05\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con346\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-09\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"405\",\n                    \"email\": \"tshoemaker0509-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand405\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand405\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-09T12:21:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con347\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-09\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"406\",\n                    \"email\": \"tshoemaker0509-2@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand406\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand406\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-09T17:02:05\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con348\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-09\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"407\",\n                    \"email\": \"tshoemaker0510@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand407\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand407\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-10T12:04:07\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con349\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-10\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"408\",\n                    \"email\": \"tshoemaker0510-1@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand408\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand408\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-10T13:35:42\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con350\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-10\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"409\",\n                    \"email\": \"tshoemaker0510-3@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand409\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand409\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-10T14:15:36\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con351\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-10\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"410\",\n                    \"email\": \"tshoemaker0510-4@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand410\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand410\",\n                    \"title\": \"\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-10T15:02:21\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con352\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-10\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"411\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand411\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand411\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:00:06\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con355\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"412\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand412\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand412\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:08:32\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con356\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"413\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand413\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand413\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:11:28\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con357\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"414\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand414\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand414\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:20:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con358\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"415\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand415\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand415\",\n                    \"title\": \"\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:26:38\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con359\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"416\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand416\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand416\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Akkencloud.com\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T17:29:01\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"417\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand417\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand417\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Akkencloud.com\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T17:32:11\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"418\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand418\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand418\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Akkencloud.com\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T17:34:17\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"169\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"419\",\n                    \"email\": \"jaalafs133k@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12113\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand419\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"998.934.7234\",\n                    \"username\": \"cand419\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"whasoseorp0\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pdelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-11T21:36:07\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"569\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con363\",\n                    \"parid\": \"\",\n                    \"phone\": \"989.139.3234\",\n                    \"date_added\": \"2023-05-11\",\n                    \"first_name\": \"Abusij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"420\",\n                    \"email\": \"tego@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand420\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 364-564-8274\",\n                    \"username\": \"cand420\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Priscilla\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-12T17:59:44\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con364\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-12\",\n                    \"first_name\": \"Lee\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"421\",\n                    \"email\": \"vahy@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Underhill\",\n                        \"zip\": \"54176\",\n                        \"address1\": \"Underhill, WI 54176\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"id\": \"cand421\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 808-891-2527\",\n                    \"username\": \"cand421\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Perry\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-12T18:41:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con365\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-12\",\n                    \"first_name\": \"Judith\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"422\",\n                    \"email\": \"tshoemaker0515@haleymarketing.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand422\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"username\": \"cand422\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-15T09:43:26\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-15\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"423\",\n                    \"email\": \"vihil@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10025\",\n                        \"address1\": \"West End Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand423\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 828-444-9918\",\n                    \"username\": \"cand423\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Athena\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-15T19:50:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con367\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 828-444-9918\",\n                    \"date_added\": \"2023-05-15\",\n                    \"first_name\": \"Bruno\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"424\",\n                    \"email\": \"syfyhize@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Quasqueton\",\n                        \"zip\": \"52326\",\n                        \"address1\": \"Quasqueton, IA 52326\",\n                        \"address2\": \"\",\n                        \"state\": \"IA\"\n                    },\n                    \"id\": \"cand424\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"65\",\n                    \"cell_phone\": \"+1 365-877-7992\",\n                    \"username\": \"cand424\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Phelan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-15T21:44:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con368\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-05-15\",\n                    \"first_name\": \"Lee\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Zia\",\n                    \"sno\": \"425\",\n                    \"email\": \"gafu@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10034\",\n                        \"address1\": \"Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand425\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-05-25T13:05:30\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 334-282-1605\",\n                    \"username\": \"cand425\",\n                    \"date_added\": \"2023-05-25\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Reuben\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Kylynn\",\n                    \"sno\": \"426\",\n                    \"email\": \"furi@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Town of Glenville\",\n                        \"zip\": \"12325\",\n                        \"address1\": \"East Glenville (Glenville), NY 12325\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand426\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-05-25T13:15:42\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 256-333-7498\",\n                    \"username\": \"cand426\",\n                    \"date_added\": \"2023-05-25\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Nigel\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Judith\",\n                    \"sno\": \"427\",\n                    \"email\": \"zyvepiv@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98199\",\n                        \"address1\": \"Quarters B\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"id\": \"cand427\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-05-25T13:52:02\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 331-781-4462\",\n                    \"username\": \"cand427\",\n                    \"date_added\": \"2023-05-25\",\n                    \"title\": \"National Account Manager\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Alvin\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": null,\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Tyrone\",\n                    \"sno\": \"428\",\n                    \"email\": \"bicadafexi@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": null,\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"Etna Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"id\": \"cand428\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-05-25T14:02:54\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 805-477-6025\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 805-477-6025\",\n                    \"username\": \"cand428\",\n                    \"date_added\": \"2023-05-25\",\n                    \"title\": \"\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Camilla\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"429\",\n                    \"email\": \"jexox@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand429\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 239-764-1751\",\n                    \"username\": \"cand429\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rooney\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-05-26T18:40:14\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con373\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 239-764-1751\",\n                    \"date_added\": \"2023-05-26\",\n                    \"first_name\": \"Gregory\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"430\",\n                    \"email\": \"jizotysen@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33620\",\n                        \"address1\": \"Natural and Environmental Sciences\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand430\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 989-397-9366\",\n                    \"username\": \"cand430\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Maile\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-09T17:30:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con374\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-09\",\n                    \"first_name\": \"Kimberley\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"431\",\n                    \"email\": \"zynudupy@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Nondalton\",\n                        \"zip\": \"99640\",\n                        \"address1\": \"Nondalton, AK 99640\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"id\": \"cand431\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 831-952-3775\",\n                    \"username\": \"cand431\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jordan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-09T17:44:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con375\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-09\",\n                    \"first_name\": \"Seth\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"432\",\n                    \"email\": \"duvywo@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sunnyvale\",\n                        \"zip\": \"95051\",\n                        \"address1\": \"Eton Way\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand432\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 212-664-4544\",\n                    \"username\": \"cand432\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"Reprehenderit est a\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Neville\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-13T02:30:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"573\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con386\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-13\",\n                    \"first_name\": \"Chaney\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"433\",\n                    \"email\": \"karthikr@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand433\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand433\",\n                    \"title\": \"Marketing Manager\",\n                    \"referral_source\": \"Website\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ramanujan\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-13T05:53:12\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-13\",\n                    \"first_name\": \"Karthik\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"434\",\n                    \"email\": \"duvywo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Sunnyvale\",\n                        \"zip\": \"95051\",\n                        \"address1\": \"Eton Way\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand434\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 212-664-4544\",\n                    \"username\": \"cand434\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"Reprehenderit est a\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-13T08:31:26\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-13\",\n                    \"first_name\": \"Akken\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"435\",\n                    \"email\": \"duvywo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Sunnyvale\",\n                        \"zip\": \"95051\",\n                        \"address1\": \"Eton Way\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand435\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 212-664-4544\",\n                    \"username\": \"cand435\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"Reprehenderit est a\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test1\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-13T08:32:29\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-13\",\n                    \"first_name\": \"Akken\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"436\",\n                    \"email\": \"fuced@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"West Alexandria\",\n                        \"zip\": \"45381\",\n                        \"address1\": \"385 Quinn Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand436\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 304-225-5695\",\n                    \"username\": \"cand436\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nayda\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-15T20:43:14\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"574\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con387\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-15\",\n                    \"first_name\": \"Eliana\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"437\",\n                    \"email\": \"qigypazoty@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cold Bay\",\n                        \"zip\": \"99571\",\n                        \"address1\": \"Veniamov Circle\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"id\": \"cand437\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"+1 646-206-3851\",\n                    \"username\": \"cand437\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Michael\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-15T20:59:52\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"574\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con388\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 646-206-3851\",\n                    \"date_added\": \"2023-06-15\",\n                    \"first_name\": \"Kadeem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"438\",\n                    \"email\": \"kipoto@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Liberty\",\n                        \"zip\": \"77575\",\n                        \"address1\": \"Liberty, TX 77575\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand438\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 514-385-9018\",\n                    \"username\": \"cand438\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Piper\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-15T21:08:22\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"574\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con389\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 514-385-9018\",\n                    \"date_added\": \"2023-06-15\",\n                    \"first_name\": \"Sawyer\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"439\",\n                    \"email\": \"heweloxo@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sonoma\",\n                        \"zip\": \"95476\",\n                        \"address1\": \"Sonoma, CA 95476\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand439\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 407-715-7528\",\n                    \"username\": \"cand439\",\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brian\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-15T21:28:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"574\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con390\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 407-715-7528\",\n                    \"date_added\": \"2023-06-15\",\n                    \"first_name\": \"Eaton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"0\",\n                    \"sutype\": \"\",\n                    \"department\": \"\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"440\",\n                    \"email\": \"pexinaz@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cumberland\",\n                        \"zip\": \"21502\",\n                        \"address1\": \"Cumberland, MD 21502\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand440\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 254-792-6557\",\n                    \"username\": \"cand440\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"Porro et veniam odi\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hall\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-15T21:42:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"574\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con391\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-15\",\n                    \"first_name\": \"Deborah\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"441\",\n                    \"email\": \"jas@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12115\",\n                        \"address1\": \"1126 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand441\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"918.934.7234\",\n                    \"username\": \"cand441\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"other\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pelk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T18:02:41\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"202\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con392\",\n                    \"parid\": \"\",\n                    \"phone\": \"919.139.3234\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Musij\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"442\",\n                    \"email\": \"muss@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12105\",\n                        \"address1\": \"1124 Zony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand442\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"918.934.7234\",\n                    \"username\": \"cand442\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pelle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T18:18:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con394\",\n                    \"parid\": \"\",\n                    \"phone\": \"919.139.3234\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Muss\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"443\",\n                    \"email\": \"musse@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hollywood\",\n                        \"zip\": \"12145\",\n                        \"address1\": \"1128 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand443\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"918.134.7234\",\n                    \"username\": \"cand443\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pellem\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T18:35:41\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con395\",\n                    \"parid\": \"\",\n                    \"phone\": \"919.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Musse\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"444\",\n                    \"email\": \"mass@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92145\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand444\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand444\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pall\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T20:20:31\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con396\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Mas\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"445\",\n                    \"email\": \"mass@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92145\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand445\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand445\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pall\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T16:27:36\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Mas\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"446\",\n                    \"email\": \"mes@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"12145\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand446\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand446\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refere\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pell\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T16:31:37\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Mes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"447\",\n                    \"email\": \"moss@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand447\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand447\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Poll\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T20:44:00\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con397\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Moss\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"448\",\n                    \"email\": \"pill@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand448\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand448\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pill\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-16T16:49:43\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-16\",\n                    \"first_name\": \"Me\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"449\",\n                    \"email\": \"buguqyju@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand449\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 347-952-5531\",\n                    \"username\": \"cand449\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Blaine\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-19T16:31:23\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 347-952-5531\",\n                    \"date_added\": \"2023-06-19\",\n                    \"first_name\": \"Maisie\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"450\",\n                    \"email\": \"cutovakiso@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand450\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 559-924-1083\",\n                    \"username\": \"cand450\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Malcolm\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-19T16:35:47\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 559-924-1083\",\n                    \"date_added\": \"2023-06-19\",\n                    \"first_name\": \"Thaddeus\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"451\",\n                    \"email\": \"hire@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Burlingame\",\n                        \"zip\": \"94030\",\n                        \"address1\": \"1616 Rollins Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand451\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 737-276-3794\",\n                    \"username\": \"cand451\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Abbot\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-19T20:42:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con401\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 737-276-3794\",\n                    \"date_added\": \"2023-06-19\",\n                    \"first_name\": \"Kirestin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"452\",\n                    \"email\": \"cyhypijof@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10013\",\n                        \"address1\": \"770 Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand452\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 778-818-9283\",\n                    \"username\": \"cand452\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bree\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-19T21:41:48\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con402\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-19\",\n                    \"first_name\": \"Igor\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"453\",\n                    \"email\": \"gelu@mailinator.com\",\n                    \"cl_status\": null,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand453\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 228-602-1974\",\n                    \"username\": \"cand453\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": null,\n                    \"areacode\": \"\",\n                    \"last_name\": \"Serina\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-19T21:47:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con403\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-19\",\n                    \"first_name\": \"Kameko\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"454\",\n                    \"email\": \"xicizag@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand454\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 984-954-2865\",\n                    \"username\": \"cand454\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ira\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T15:22:36\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con404\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Kellie\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"455\",\n                    \"email\": \"qovyfabovu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand455\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 937-983-6435\",\n                    \"username\": \"cand455\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Veronica\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T11:36:45\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Angela\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"456\",\n                    \"email\": \"qovyfabovu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand456\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 937-983-6435\",\n                    \"username\": \"cand456\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Veronica\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T11:36:49\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Angela\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"457\",\n                    \"email\": \"qojelaz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand457\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 564-862-6134\",\n                    \"username\": \"cand457\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sade\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T11:41:28\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Cecilia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"458\",\n                    \"email\": \"xyrexehu@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Carlsbad\",\n                        \"zip\": \"92009\",\n                        \"address1\": \"2100 Costa del Mar Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand458\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 516-482-7052\",\n                    \"username\": \"cand458\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kadeem\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T15:44:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con408\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Harriet\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"459\",\n                    \"email\": \"hegibukab@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Oviedo\",\n                        \"zip\": \"32765\",\n                        \"address1\": \"Mad Science Laboratory\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand459\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 228-456-3911\",\n                    \"username\": \"cand459\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aaron\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-20T15:59:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con409\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-20\",\n                    \"first_name\": \"Levi\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"460\",\n                    \"email\": \"pillo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand460\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand460\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pill\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-28T22:17:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con410\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-28\",\n                    \"first_name\": \"Mel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"461\",\n                    \"email\": \"pillow@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand461\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand461\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mill\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-28T22:45:21\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con413\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-28\",\n                    \"first_name\": \"Mall\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"462\",\n                    \"email\": \"helixir@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Earle\",\n                        \"zip\": \"72331\",\n                        \"address1\": \"Earle, AR 72331\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand462\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 909-352-5591\",\n                    \"username\": \"cand462\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paki\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-28T22:47:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con414\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-28\",\n                    \"first_name\": \"Lucas\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"463\",\n                    \"email\": \"jaja@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11040\",\n                        \"address1\": \"259-17 Hillside Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand463\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"67\",\n                    \"cell_phone\": \"+1 681-666-8981\",\n                    \"username\": \"cand463\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Urielle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T17:03:16\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con415\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 681-666-8981\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Kelsey\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"464\",\n                    \"email\": \"pilloaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand464\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.134.7234\",\n                    \"username\": \"cand464\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mall\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T17:56:54\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con420\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Moll\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"465\",\n                    \"email\": \"peqehok@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Lyman\",\n                        \"zip\": \"04002\",\n                        \"address1\": \"Sand Pit (used for shooting, 4 wheeling, etc)\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand465\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 236-794-6533\",\n                    \"username\": \"cand465\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"List\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T16:16:28\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Fast\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"466\",\n                    \"email\": \"lilapukof@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Akron\",\n                        \"zip\": \"44320\",\n                        \"address1\": \"Family Dollar\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand466\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 231-551-2569\",\n                    \"username\": \"cand466\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Labore qui dolore vo\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tanek\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T18:15:34\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"576\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con422\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Nicole\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"467\",\n                    \"email\": \"gyren@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand467\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 602-476-1993\",\n                    \"username\": \"cand467\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"Labore qui dolore vo\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Audra\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T18:20:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"576\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con423\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 602-476-1993\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Jada\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"468\",\n                    \"email\": \"pefobyky@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Albuquerque\",\n                        \"zip\": \"87117\",\n                        \"address1\": \"3550 Aberdeen Drive Southeast\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand468\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 719-851-3256\",\n                    \"username\": \"cand468\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Non quaerat cum aspe\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rinah\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T18:30:03\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"577\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con424\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 719-851-3256\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Zachary\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"469\",\n                    \"email\": \"pilplojiaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand469\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"133\",\n                    \"cell_phone\": \"910.104.7234\",\n                    \"username\": \"cand469\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-06-30T18:34:54\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con425\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-06-30\",\n                    \"first_name\": \"Mull\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"470\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand470\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand470\",\n                    \"title\": \"\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-11T17:17:38\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con426\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-11\",\n                    \"first_name\": \"Mell\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"471\",\n                    \"email\": \"hobyl@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand471\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 702-268-8994\",\n                    \"username\": \"cand471\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Germaine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-11T17:48:12\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con427\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 702-268-8994\",\n                    \"date_added\": \"2023-07-11\",\n                    \"first_name\": \"Tanek\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"472\",\n                    \"email\": \"gizixuhulo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Velma\",\n                        \"zip\": \"73491\",\n                        \"address1\": \"Velma, OK 73491\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand472\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 747-341-1033\",\n                    \"username\": \"cand472\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Daphne\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-11T17:55:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con428\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-11\",\n                    \"first_name\": \"Denton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"473\",\n                    \"email\": \"qiloj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Franklin\",\n                        \"zip\": \"08867\",\n                        \"address1\": \"321 Pittstown Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"id\": \"cand473\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 521-864-9787\",\n                    \"username\": \"cand473\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kelly\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-12T17:03:53\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con429\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 521-864-9787\",\n                    \"date_added\": \"2023-07-12\",\n                    \"first_name\": \"Kadeem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"474\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand474\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand474\",\n                    \"title\": \"\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-12T17:17:21\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con430\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-12\",\n                    \"first_name\": \"Mell\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"475\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand475\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand475\",\n                    \"title\": \"\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-12T17:19:25\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con431\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-12\",\n                    \"first_name\": \"Mell\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"476\",\n                    \"email\": \"vezo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Tempe\",\n                        \"zip\": \"85283\",\n                        \"address1\": \"4666 South Ash Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"AZ\"\n                    },\n                    \"id\": \"cand476\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 908-553-4478\",\n                    \"username\": \"cand476\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jordan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-12T17:38:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con432\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-12\",\n                    \"first_name\": \"Tanisha\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"477\",\n                    \"email\": \"bihofa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lyman\",\n                        \"zip\": \"04002\",\n                        \"address1\": \"Sand Pit (used for shooting, 4 wheeling, etc)\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand477\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 606-476-4235\",\n                    \"username\": \"cand477\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Barclay\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-13T12:16:34\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con433\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-13\",\n                    \"first_name\": \"Plato\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"478\",\n                    \"email\": \"bycyteka@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11251\",\n                        \"address1\": \"61 Little Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand478\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 978-259-7355\",\n                    \"username\": \"cand478\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fredericka\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-13T13:01:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con434\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 978-259-7355\",\n                    \"date_added\": \"2023-07-13\",\n                    \"first_name\": \"Dahlia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"479\",\n                    \"email\": \"jyrirodix@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Mount Sinai\",\n                        \"zip\": \"36067\",\n                        \"address1\": \"Autauga County 6\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"id\": \"cand479\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 231-898-1028\",\n                    \"username\": \"cand479\",\n                    \"title\": \"\",\n                    \"referral_source\": \"agjkhajgkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bruno\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-13T13:13:58\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"578\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con435\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-13\",\n                    \"first_name\": \"Aileen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"480\",\n                    \"email\": \"gudawumew@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orange City\",\n                        \"zip\": \"32763\",\n                        \"address1\": \"Quality Inn\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand480\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 859-202-8932\",\n                    \"username\": \"cand480\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lewis\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-13T14:03:55\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con436\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-13\",\n                    \"first_name\": \"Jack\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"481\",\n                    \"email\": \"pijiaaaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay City\",\n                        \"zip\": \"92141\",\n                        \"address1\": \"1029 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand481\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand481\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mal\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-14T13:26:49\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con438\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-14\",\n                    \"first_name\": \"Mell\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"482\",\n                    \"email\": \"qupuraqiv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Town of Underhill\",\n                        \"zip\": \"54176\",\n                        \"address1\": \"Underhill, WI 54176\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"id\": \"cand482\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 719-703-5234\",\n                    \"username\": \"cand482\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Dolorem non nihil se\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Drew\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-14T14:28:50\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-14\",\n                    \"first_name\": \"Dakota\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"483\",\n                    \"email\": \"zitavagem@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"id\": \"cand483\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 902-385-5966\",\n                    \"username\": \"cand483\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Dolorem non nihil se\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Riley\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-14T15:10:30\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 902-385-5966\",\n                    \"date_added\": \"2023-07-14\",\n                    \"first_name\": \"Ina\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"484\",\n                    \"email\": \"pijiaaaw100002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand484\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand484\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mlo\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T18:22:58\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Mllo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"485\",\n                    \"email\": \"aijiaaaw100002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand485\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand485\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Malo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T18:39:23\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con447\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Millo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"486\",\n                    \"email\": \"fufukod@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98105\",\n                        \"address1\": \"3946 West Stevens Way Northeast\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"id\": \"cand486\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 872-908-7627\",\n                    \"username\": \"cand486\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"kjlljnk\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Thor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T18:44:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con448\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Abigail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"487\",\n                    \"email\": \"lamodemyre@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Carters\",\n                        \"zip\": \"30732\",\n                        \"address1\": \"Carters Reregulation Dam\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"cand487\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 443-865-4365\",\n                    \"username\": \"cand487\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ryder\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T19:27:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con449\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 443-865-4365\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Carla\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"488\",\n                    \"email\": \"aijiiaaw100002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand488\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand488\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Malo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T19:37:05\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con450\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Mullo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"489\",\n                    \"email\": \"husigozoku@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Enid\",\n                        \"zip\": \"73703\",\n                        \"address1\": \"4914 West Owen K Garriott Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand489\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 913-856-4279\",\n                    \"username\": \"cand489\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ronan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-17T19:44:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con451\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-17\",\n                    \"first_name\": \"Quintessa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"490\",\n                    \"email\": \"aijiiaaw100002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92140\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand490\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand490\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Malo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T16:43:48\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con454\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Mullo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"491\",\n                    \"email\": \"wulok@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Sitka\",\n                        \"zip\": \"99835\",\n                        \"address1\": \"Sitka\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"id\": \"cand491\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 857-638-6781\",\n                    \"username\": \"cand491\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Vel quas ex ad neque\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cameron\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T16:50:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con455\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 857-638-6781\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Kessie\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"492\",\n                    \"email\": \"kyvo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Simpson\",\n                        \"zip\": \"71474\",\n                        \"address1\": \"Odie Jackson Road\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand492\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 351-734-9892\",\n                    \"username\": \"cand492\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chastity\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T17:22:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con456\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Kylan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"493\",\n                    \"email\": \"vipefepiv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Port Orange\",\n                        \"zip\": \"32127\",\n                        \"address1\": \"3863 South Nova Road\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand493\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 714-957-2596\",\n                    \"username\": \"cand493\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fletcher\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T17:41:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con457\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 714-957-2596\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Maia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"494\",\n                    \"email\": \"zivapo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand494\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 564-463-5948\",\n                    \"username\": \"cand494\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"test\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jakeem\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T17:46:51\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Hiram\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"495\",\n                    \"email\": \"rafuduxiwa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Enterprise\",\n                        \"zip\": \"36330\",\n                        \"address1\": \"867 Aviation Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"id\": \"cand495\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 902-209-5058\",\n                    \"username\": \"cand495\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hayden\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T18:04:22\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 902-209-5058\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Jerry\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"496\",\n                    \"email\": \"huseci@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nondalton\",\n                        \"zip\": \"99640\",\n                        \"address1\": \"Nondalton, AK 99640\",\n                        \"address2\": \"\",\n                        \"state\": \"AK\"\n                    },\n                    \"id\": \"cand496\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 256-229-3901\",\n                    \"username\": \"cand496\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"aagagag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leilani\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T18:09:27\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Lenore\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"497\",\n                    \"email\": \"zylowyhyv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Auburn\",\n                        \"zip\": \"04210\",\n                        \"address1\": \"Dolores Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand497\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 506-311-8722\",\n                    \"username\": \"cand497\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adrienne\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-18T18:14:34\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-18\",\n                    \"first_name\": \"Colorado\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"498\",\n                    \"email\": \"aijiiaaw400002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Caty\",\n                        \"zip\": \"92149\",\n                        \"address1\": \"1129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand498\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"919.104.7234\",\n                    \"username\": \"cand498\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lost\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T10:03:55\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Fost\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"499\",\n                    \"email\": \"baaw400002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand499\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand499\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mqo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T10:09:09\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con463\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Mill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"500\",\n                    \"email\": \"baa400002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand500\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand500\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T10:12:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con464\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Lill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"501\",\n                    \"email\": \"baap00002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand501\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand501\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Po\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T10:46:31\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"575\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con465\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Mill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"502\",\n                    \"email\": \"wyhoxyd@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Nebo\",\n                        \"zip\": \"28761\",\n                        \"address1\": \"148 Nebo School Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NC\"\n                    },\n                    \"id\": \"cand502\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 706-761-5147\",\n                    \"username\": \"cand502\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Eiusmod illum eveni\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Branden\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T10:52:50\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 706-761-5147\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Chase\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"503\",\n                    \"email\": \"hupif@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"28306\",\n                        \"address1\": \"3831 Queen Anne Loop\",\n                        \"address2\": \"\",\n                        \"state\": \"NC\"\n                    },\n                    \"id\": \"cand503\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 253-623-7595\",\n                    \"username\": \"cand503\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Eiusmod illum eveni\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Paul\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T11:23:28\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Urielle\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Wang\",\n                    \"sno\": \"504\",\n                    \"email\": \"zoqezota@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Venus\",\n                        \"zip\": \"76084\",\n                        \"address1\": \"Venus, TX 76084\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand504\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-07-19T11:58:07\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 877-279-8577\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 877-279-8577\",\n                    \"username\": \"cand504\",\n                    \"date_added\": \"2023-07-19\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Chiquita\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Xyla\",\n                    \"sno\": \"505\",\n                    \"email\": \"jeny@mailinator.com\",\n                    \"muser\": \"22\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand505\",\n                    \"owner\": \"22\",\n                    \"ctime\": \"2023-07-19T12:19:46\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 815-252-2499\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 815-252-2499\",\n                    \"username\": \"cand505\",\n                    \"date_added\": \"2023-07-19\",\n                    \"title\": \"Assistant\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Darius\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"506\",\n                    \"email\": \"kozaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Reedley\",\n                        \"zip\": \"93654\",\n                        \"address1\": \"327 West Cypress Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand506\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 639-273-3119\",\n                    \"username\": \"cand506\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"Ex numquam tenetur p\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"MacKensie\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T12:33:40\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Ashton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"507\",\n                    \"email\": \"neqel@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Culpeper\",\n                        \"zip\": \"22701\",\n                        \"address1\": \"Liberatore Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"id\": \"cand507\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 308-573-1029\",\n                    \"username\": \"cand507\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Irene\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T12:50:44\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Ayanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"508\",\n                    \"email\": \"neqel@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Culpeper\",\n                        \"zip\": \"22701\",\n                        \"address1\": \"Liberatore Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"id\": \"cand508\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 308-573-1029\",\n                    \"username\": \"cand508\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Irene\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T12:50:49\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Ayanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"509\",\n                    \"email\": \"hewunivaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Amarillo\",\n                        \"zip\": \"79104\",\n                        \"address1\": \"2601 East Interstate Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand509\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 704-732-4923\",\n                    \"username\": \"cand509\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"Itaque delectus ven\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Daria\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-19T13:21:21\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 704-732-4923\",\n                    \"date_added\": \"2023-07-19\",\n                    \"first_name\": \"Edan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"510\",\n                    \"email\": \"aap00002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand510\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand510\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ao\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T10:29:26\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Aill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"511\",\n                    \"email\": \"aap00009@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"id\": \"cand511\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand511\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refere\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"A\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T10:52:10\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"010.139.3334\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"512\",\n                    \"email\": \"aarp00009@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"id\": \"cand512\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand512\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referes\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Q\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T11:17:46\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"010.139.3334\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Arl\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"513\",\n                    \"email\": \"arp00009@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Cety\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"629 Teny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"SD\"\n                    },\n                    \"id\": \"cand513\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand513\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refered\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"K\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T11:42:13\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"588\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con477\",\n                    \"parid\": \"\",\n                    \"phone\": \"010.139.3334\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Url\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"514\",\n                    \"email\": \"jibukyl@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Elyria\",\n                        \"zip\": \"44035\",\n                        \"address1\": \"1005 North Abbe Road\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand514\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 901-356-5317\",\n                    \"username\": \"cand514\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Quis excepteur amet\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mollie\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T11:49:29\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 901-356-5317\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Aurora\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"515\",\n                    \"email\": \"sote@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98105\",\n                        \"address1\": \"3946 West Stevens Way Northeast\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"id\": \"cand515\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 931-369-9218\",\n                    \"username\": \"cand515\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tyrone\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:00:22\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 931-369-9218\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Melissa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"516\",\n                    \"email\": \"tibe@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"The Woodlands\",\n                        \"zip\": \"77381\",\n                        \"address1\": \"Quiet Peace Place\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand516\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 617-278-6202\",\n                    \"username\": \"cand516\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Galena\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:06:06\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Rudyard\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"517\",\n                    \"email\": \"tacimi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Fuget\",\n                        \"zip\": \"41219\",\n                        \"address1\": \"Fuget\",\n                        \"address2\": \"\",\n                        \"state\": \"KY\"\n                    },\n                    \"id\": \"cand517\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 445-206-3463\",\n                    \"username\": \"cand517\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Susan\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:17:13\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Yen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"518\",\n                    \"email\": \"tshoemaker0720@haleymarketing.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand518\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 888-525-6989\",\n                    \"username\": \"cand518\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"test1\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:47:42\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"519\",\n                    \"email\": \"wohome@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97204\",\n                        \"address1\": \"Animals in Pools\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"id\": \"cand519\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 204-898-7567\",\n                    \"username\": \"cand519\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ila\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:33:48\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 204-898-7567\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Ivy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"520\",\n                    \"email\": \"gorahame@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"San Diego\",\n                        \"zip\": \"92101\",\n                        \"address1\": \"435 6th Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand520\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 659-918-8004\",\n                    \"username\": \"cand520\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hilary\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:39:43\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Vincent\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"521\",\n                    \"email\": \"holuhule@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Venus\",\n                        \"zip\": \"76084\",\n                        \"address1\": \"Venus, TX 76084\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand521\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 443-679-4515\",\n                    \"username\": \"cand521\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Veronica\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T13:48:52\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"September\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"522\",\n                    \"email\": \"lutobofo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02903\",\n                        \"address1\": \"First Baptist Church in America\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"id\": \"cand522\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 269-643-8843\",\n                    \"username\": \"cand522\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lee\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T14:18:39\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 269-643-8843\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Oliver\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"523\",\n                    \"email\": \"zirywu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Odessa\",\n                        \"zip\": \"79765\",\n                        \"address1\": \"4122 Faudree Road\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand523\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 418-611-9688\",\n                    \"username\": \"cand523\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hannah\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T14:39:37\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 418-611-9688\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Reed\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"524\",\n                    \"email\": \"vehuqewyf@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10002\",\n                        \"address1\": \"Lower East Side\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand524\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 521-978-6896\",\n                    \"username\": \"cand524\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nita\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T15:17:12\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 521-978-6896\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Josephine\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"525\",\n                    \"email\": \"zycajacah@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Asian Exhibits\",\n                        \"zip\": \"33177\",\n                        \"address1\": \"Asian Exhibits\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand525\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 908-636-1278\",\n                    \"username\": \"cand525\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Halla\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T15:30:13\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con490\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Wyoming\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"526\",\n                    \"email\": \"bunegu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand526\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 352-333-9338\",\n                    \"username\": \"cand526\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Declan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T16:02:56\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con491\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 352-333-9338\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Veronica\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"527\",\n                    \"email\": \"xepigipez@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"94536\",\n                        \"address1\": \"Sequoia Common\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand527\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 517-932-5895\",\n                    \"username\": \"cand527\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Caleb\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T16:20:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con492\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Molly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"528\",\n                    \"email\": \"rejuxac@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Isabela\",\n                        \"zip\": \"00665\",\n                        \"address1\": \"Calle Lorenzo Cabrera de JesÃ\\u0083Âºs\",\n                        \"address2\": \"\",\n                        \"state\": \"PR\"\n                    },\n                    \"id\": \"cand528\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 913-772-7138\",\n                    \"username\": \"cand528\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jordan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T16:35:16\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con493\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 913-772-7138\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Oleg\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"529\",\n                    \"email\": \"cufac@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20540\",\n                        \"address1\": \"United States House of Representatives\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"id\": \"cand529\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 618-918-4238\",\n                    \"username\": \"cand529\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Evangeline\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T16:46:23\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con494\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 618-918-4238\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Blake\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"530\",\n                    \"email\": \"xaji@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75212\",\n                        \"address1\": \"4025 Singleton Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand530\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 469-903-2886\",\n                    \"username\": \"cand530\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Camilla\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T16:52:19\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con495\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Amery\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"531\",\n                    \"email\": \"wocamebo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand531\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 715-935-4504\",\n                    \"username\": \"cand531\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Philip\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T17:10:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con496\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Lesley\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"532\",\n                    \"email\": \"dosypo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Roseville\",\n                        \"zip\": \"95747\",\n                        \"address1\": \"1501 Pleasant Grove Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand532\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 956-222-8872\",\n                    \"username\": \"cand532\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wendy\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-20T17:23:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con497\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-20\",\n                    \"first_name\": \"Zephania\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Aristotle\",\n                    \"sno\": \"533\",\n                    \"email\": \"xijicehe@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33142\",\n                        \"address1\": \"3501 Northwest 42nd Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand533\",\n                    \"owner\": \"\",\n                    \"ctime\": \"2023-07-20T17:27:19\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"590\",\n                    \"candid\": \"con498\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 613-549-9063\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 613-549-9063\",\n                    \"username\": \"cand533\",\n                    \"date_added\": \"2023-07-20\",\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Lucius\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"areacode\": \"\",\n                    \"status\": \"158\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"last_name\": \"Shad\",\n                    \"sno\": \"534\",\n                    \"email\": \"wefocafuco@mailinator.com\",\n                    \"muser\": \"1\",\n                    \"group\": null,\n                    \"cl_status\": \"158\",\n                    \"contact_id\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Beavercreek\",\n                        \"zip\": \"45431\",\n                        \"address1\": \"2601 Park Overlook Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand534\",\n                    \"owner\": \"1\",\n                    \"ctime\": \"2023-07-20T18:04:13\",\n                    \"supid\": \"0\",\n                    \"referral_source_id\": \"591\",\n                    \"candid\": \"con503\",\n                    \"parid\": \"\",\n                    \"hareacode\": \"\",\n                    \"phone\": \"+1 201-437-3146\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 201-437-3146\",\n                    \"username\": \"cand534\",\n                    \"date_added\": \"2023-07-20\",\n                    \"title\": \"Assistant\",\n                    \"vcount\": \"0\",\n                    \"first_name\": \"Deirdre\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"535\",\n                    \"email\": \"ropirovote@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fort Jones\",\n                        \"zip\": \"96032\",\n                        \"address1\": \"NAPA Auto Parts\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand535\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 269-306-4711\",\n                    \"username\": \"cand535\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chloe\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T15:24:24\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con504\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 269-306-4711\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Samantha\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"536\",\n                    \"email\": \"futemy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Duchesne\",\n                        \"zip\": \"84021\",\n                        \"address1\": \"Duchesne, UT 84021\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand536\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 523-497-2587\",\n                    \"username\": \"cand536\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Beatrice\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T15:33:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con505\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 523-497-2587\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Robin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"537\",\n                    \"email\": \"sofy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Jersey City\",\n                        \"zip\": \"07307\",\n                        \"address1\": \"U.S. Postal Facility at Bulk Door\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"id\": \"cand537\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 544-845-7388\",\n                    \"username\": \"cand537\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fritz\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T16:18:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con506\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Nayda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"538\",\n                    \"email\": \"fujijovo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand538\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 636-668-6468\",\n                    \"username\": \"cand538\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Carson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T16:26:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con507\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 636-668-6468\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Indigo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"539\",\n                    \"email\": \"mopi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Odin\",\n                        \"zip\": \"62870\",\n                        \"address1\": \"Odin, IL 62870\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand539\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 561-901-2669\",\n                    \"username\": \"cand539\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aquila\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T16:47:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con508\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 561-901-2669\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Ralph\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"540\",\n                    \"email\": \"tysoqodo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bonney Lake\",\n                        \"zip\": \"98391\",\n                        \"address1\": \"14708 198th Avenue East\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"id\": \"cand540\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 228-629-3945\",\n                    \"username\": \"cand540\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Laith\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T17:14:59\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con509\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Kennedy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"541\",\n                    \"email\": \"bekicyde@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Raton\",\n                        \"zip\": \"87740\",\n                        \"address1\": \"Raton, NM 87740\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand541\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 306-229-1464\",\n                    \"username\": \"cand541\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Thane\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T17:37:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con510\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Lee\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"542\",\n                    \"email\": \"gexinocix@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ocean Township\",\n                        \"zip\": \"07712\",\n                        \"address1\": \"Mahoras Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"id\": \"cand542\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 909-576-9526\",\n                    \"username\": \"cand542\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Simon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T17:38:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con511\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Abraham\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"543\",\n                    \"email\": \"buna@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Milwaukee\",\n                        \"zip\": \"53207\",\n                        \"address1\": \"4940 South Howell Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"id\": \"cand543\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 229-644-8077\",\n                    \"username\": \"cand543\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jennifer\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T17:40:57\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con512\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Plato\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"544\",\n                    \"email\": \"berype@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salem\",\n                        \"zip\": \"03079\",\n                        \"address1\": \"16 Pelham Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"id\": \"cand544\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 562-613-1134\",\n                    \"username\": \"cand544\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Xanthus\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T17:52:01\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con513\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Sopoline\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"545\",\n                    \"email\": \"lazoqywofe@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Bessemer\",\n                        \"zip\": \"49911\",\n                        \"address1\": \"Ethnic Commons Park\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand545\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 518-941-3672\",\n                    \"username\": \"cand545\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shea\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T18:00:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con514\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Shannon\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"546\",\n                    \"email\": \"lupisev@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10013\",\n                        \"address1\": \"770 Broadway\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand546\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 225-247-7947\",\n                    \"username\": \"cand546\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"jkhkk\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lucius\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T18:17:34\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"592\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con515\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Bo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"547\",\n                    \"email\": \"bumyzusem@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Vernon\",\n                        \"zip\": \"35592\",\n                        \"address1\": \"Vernon, AL 35592\",\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"id\": \"cand547\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 303-373-6638\",\n                    \"username\": \"cand547\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"jkhkk\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Emerson\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T18:18:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"592\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con516\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 303-373-6638\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Martha\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"548\",\n                    \"email\": \"hoha@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Exeter\",\n                        \"zip\": \"93221\",\n                        \"address1\": \"Exeter, CA 93221\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand548\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 902-674-4452\",\n                    \"username\": \"cand548\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"lhjljhk\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bernard\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-26T18:39:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"593\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con517\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 902-674-4452\",\n                    \"date_added\": \"2023-07-26\",\n                    \"first_name\": \"Anthony\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"549\",\n                    \"email\": \"gehok@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20003\",\n                        \"address1\": \"John Quincy Adams\",\n                        \"address2\": \"\",\n                        \"state\": \"DC\"\n                    },\n                    \"id\": \"cand549\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 215-472-8022\",\n                    \"username\": \"cand549\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"MacKensie\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-27T14:22:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con518\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 215-472-8022\",\n                    \"date_added\": \"2023-07-27\",\n                    \"first_name\": \"Lois\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"550\",\n                    \"email\": \"likafitov@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Wallops Flight Facility Main Base\",\n                        \"zip\": \"23337\",\n                        \"address1\": \"Wallops Flight Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"id\": \"cand550\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 734-654-2301\",\n                    \"username\": \"cand550\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Steven\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-27T14:26:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con519\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 734-654-2301\",\n                    \"date_added\": \"2023-07-27\",\n                    \"first_name\": \"Aladdin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"551\",\n                    \"email\": \"cirucuzy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Las Vegas\",\n                        \"zip\": \"87701\",\n                        \"address1\": \"Dolores Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand551\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 561-782-9406\",\n                    \"username\": \"cand551\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aristotle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-27T15:37:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con520\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-27\",\n                    \"first_name\": \"Mona\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"552\",\n                    \"email\": \"matujowol@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Round Rock\",\n                        \"zip\": \"78681\",\n                        \"address1\": \"1100 West Louis Henna Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand552\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 829-657-5559\",\n                    \"username\": \"cand552\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bianca\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-31T15:31:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con521\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-07-31\",\n                    \"first_name\": \"August\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"553\",\n                    \"email\": \"gelejig@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sunrise Heights\",\n                        \"zip\": \"95945\",\n                        \"address1\": \"Dolores Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand553\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 855-924-3793\",\n                    \"username\": \"cand553\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Haviva\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-07-31T15:33:30\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con522\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 855-924-3793\",\n                    \"date_added\": \"2023-07-31\",\n                    \"first_name\": \"Kiayada\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"554\",\n                    \"email\": \"lixaka@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Offerman\",\n                        \"zip\": \"31556\",\n                        \"address1\": \"Offerman, GA 31556\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"id\": \"cand554\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"+1 813-215-7722\",\n                    \"username\": \"cand554\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Quos laborum Aute o\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gage\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-08-09T14:03:32\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"594\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con523\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-08-09\",\n                    \"first_name\": \"Tucker\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"555\",\n                    \"email\": \"katy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Sumter\",\n                        \"zip\": \"29150\",\n                        \"address1\": \"Temple Sinai\",\n                        \"address2\": \"\",\n                        \"state\": \"SC\"\n                    },\n                    \"id\": \"cand555\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 813-521-2851\",\n                    \"username\": \"cand555\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Quos laborum Aute o\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kathleen\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-08-09T14:06:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"594\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con524\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 813-521-2851\",\n                    \"date_added\": \"2023-08-09\",\n                    \"first_name\": \"Gabriel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"556\",\n                    \"email\": \"mequqa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cortez\",\n                        \"zip\": \"81321\",\n                        \"address1\": \"Cortez, CO 81321\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand556\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 623-596-3799\",\n                    \"username\": \"cand556\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Patience\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-08T13:05:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con526\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 623-596-3799\",\n                    \"date_added\": \"2023-09-08\",\n                    \"first_name\": \"Gary\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"557\",\n                    \"email\": \"fefybuzegy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Cumberland\",\n                        \"zip\": \"21502\",\n                        \"address1\": \"Cumberland, MD 21502\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand557\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 228-315-9338\",\n                    \"username\": \"cand557\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Catherine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-08T13:12:33\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con527\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 228-315-9338\",\n                    \"date_added\": \"2023-09-08\",\n                    \"first_name\": \"Nevada\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"558\",\n                    \"email\": \"sykigin@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Ripon\",\n                        \"zip\": \"95366\",\n                        \"address1\": \"Ripon, CA 95366\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand558\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"+1 445-898-8579\",\n                    \"username\": \"cand558\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Imogene\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-11T21:36:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"596\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con528\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-09-11\",\n                    \"first_name\": \"Abra\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"559\",\n                    \"email\": \"dunyvuqys@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Daytona Beach\",\n                        \"zip\": \"32114\",\n                        \"address1\": \"299 Bill France Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand559\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 888-716-1241\",\n                    \"username\": \"cand559\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-12T16:02:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"596\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con529\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1 888-716-1241\",\n                    \"date_added\": \"2023-09-12\",\n                    \"first_name\": \"Valentine\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"560\",\n                    \"email\": \"kowofil@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Indianapolis\",\n                        \"zip\": \"46241\",\n                        \"address1\": \"Elite Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"IN\"\n                    },\n                    \"id\": \"cand560\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 707-937-5153\",\n                    \"username\": \"cand560\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"Aut sit quo aliquid\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Graiden\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-12T16:06:34\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"596\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con530\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-09-12\",\n                    \"first_name\": \"Yvonne\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"561\",\n                    \"email\": \"nicawebob@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Attleboro\",\n                        \"zip\": \"02703\",\n                        \"address1\": \"Attleboro, MA 02703\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand561\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"+1 614-645-8527\",\n                    \"username\": \"cand561\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Keely\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-12T16:21:32\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con531\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-09-12\",\n                    \"first_name\": \"Ava\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"562\",\n                    \"email\": \"mehafiqo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Natchitoches\",\n                        \"zip\": \"71457\",\n                        \"address1\": \"Natchitoches, LA 71457\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand562\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"775-949-5567\",\n                    \"username\": \"cand562\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gray\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-12T16:33:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con532\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-09-12\",\n                    \"first_name\": \"Ima\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"563\",\n                    \"email\": \"mebyjufa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Glen Ullin\",\n                        \"zip\": \"58631\",\n                        \"address1\": \"Glen Ullin, ND 58631\",\n                        \"address2\": \"\",\n                        \"state\": \"ND\"\n                    },\n                    \"id\": \"cand563\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"354-204-2509\",\n                    \"username\": \"cand563\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Elton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-09-15T14:13:38\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con533\",\n                    \"parid\": \"\",\n                    \"phone\": \"354-204-2509\",\n                    \"date_added\": \"2023-09-15\",\n                    \"first_name\": \"Vernon\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"564\",\n                    \"email\": \"aap00012@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Main Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand564\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7232\",\n                    \"username\": \"cand564\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alli\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-10-04T11:41:26\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con534\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3337\",\n                    \"date_added\": \"2023-10-04\",\n                    \"first_name\": \"Akken\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"565\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand565\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand565\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-10-04T11:50:14\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con535\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-10-04\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"566\",\n                    \"email\": \"aap00011@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Up Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand566\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"119.104.7233\",\n                    \"username\": \"cand566\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Akken\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-10-04T11:50:15\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con536\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3336\",\n                    \"date_added\": \"2023-10-04\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"567\",\n                    \"email\": \"gigul@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97225\",\n                        \"address1\": \"CapulÃ\\u00adn Park\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"id\": \"cand567\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand567\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Evelyn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-08T16:21:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con538\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-11-08\",\n                    \"first_name\": \"Austin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"568\",\n                    \"email\": \"fudecav@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75202\",\n                        \"address1\": \"555 South Lamar Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand568\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand568\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kasimir\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-08T16:30:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con539\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-11-08\",\n                    \"first_name\": \"Kaseem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"569\",\n                    \"email\": \"gacymulo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11208\",\n                        \"address1\": \"Morris Park Facility\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand569\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand569\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-08T17:30:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con540\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-11-08\",\n                    \"first_name\": \"Brianna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"570\",\n                    \"email\": \"suwizerem@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Poca\",\n                        \"zip\": \"25159\",\n                        \"address1\": \"Etta Street\",\n                        \"address2\": \"\",\n                        \"state\": \"WV\"\n                    },\n                    \"id\": \"cand570\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand570\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"hvgjhv\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fatima\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-08T17:36:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"598\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con541\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-11-08\",\n                    \"first_name\": \"Leo\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"571\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand571\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand571\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-09T11:51:24\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con542\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-09\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"572\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand572\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand572\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-09T11:51:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con543\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-09\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"573\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand573\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand573\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-09T11:52:15\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con544\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-09\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"574\",\n                    \"email\": \"temamoq@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Totowa\",\n                        \"zip\": \"07512\",\n                        \"address1\": \"Totowa, NJ 07512\",\n                        \"address2\": \"\",\n                        \"state\": \"NJ\"\n                    },\n                    \"id\": \"cand574\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand574\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Deirdre\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-10T13:10:25\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con545\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2023-11-10\",\n                    \"first_name\": \"Keely\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"575\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand575\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand575\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-27T13:48:24\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-27\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"576\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand576\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand576\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-27T13:48:38\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-27\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"577\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand577\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand577\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-27T14:03:56\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-27\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"578\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand578\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand578\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-27T14:09:59\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-27\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"579\",\n                    \"email\": \"aap00010@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand579\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand579\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2023-11-27T14:19:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"610\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con557\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2023-11-27\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"580\",\n                    \"email\": \"sodotubu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Madison\",\n                        \"zip\": \"53716\",\n                        \"address1\": \"Dolores Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"id\": \"cand580\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand580\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"agagaga\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Angelica\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-16T18:29:38\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"620\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con560\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-16\",\n                    \"first_name\": \"Leandra\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"581\",\n                    \"email\": \"nyheruvy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Corvallis\",\n                        \"zip\": \"97331\",\n                        \"address1\": \"3151 Southwest Washington Way\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"id\": \"cand581\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand581\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"97y7h99h9p\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Indigo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-17T15:48:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con561\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-17\",\n                    \"first_name\": \"Summer\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"582\",\n                    \"email\": \"vihaguseb@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Perrysburg\",\n                        \"zip\": \"43551\",\n                        \"address1\": \"6165 Levis Commons Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"id\": \"cand582\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand582\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"jilj0j9unl\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Donovan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-17T15:59:38\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con562\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-17\",\n                    \"first_name\": \"Joel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"583\",\n                    \"email\": \"cylozytoba@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boca Raton\",\n                        \"zip\": \"33432\",\n                        \"address1\": \"7920 Glades Road\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand583\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand583\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Randall\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-17T16:11:17\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con563\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-17\",\n                    \"first_name\": \"Salvador\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"584\",\n                    \"email\": \"risomahumu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fayetteville\",\n                        \"zip\": \"72701\",\n                        \"address1\": \"459 Campus Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand584\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand584\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leigh\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-17T16:28:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con564\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-17\",\n                    \"first_name\": \"Sage\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"585\",\n                    \"email\": \"mewa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolgeville\",\n                        \"zip\": \"13329\",\n                        \"address1\": \"Village of Dolgeville\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand585\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand585\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Allegra\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-17T18:12:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con565\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-17\",\n                    \"first_name\": \"Charissa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"586\",\n                    \"email\": \"hoqaqoloz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11432\",\n                        \"address1\": \"175-35 Hillside Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand586\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand586\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kaye\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-18T15:27:15\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con566\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-18\",\n                    \"first_name\": \"Veda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"587\",\n                    \"email\": \"kuwodevopi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Gene Autry\",\n                        \"zip\": \"73436\",\n                        \"address1\": \"Gene Autry, OK 73436\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand587\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"225-616-7495\",\n                    \"username\": \"cand587\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ramona\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-18T16:42:20\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con567\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-18\",\n                    \"first_name\": \"Dacey\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"588\",\n                    \"email\": \"fakeemail@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand588\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand588\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-23T15:13:55\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"628\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con568\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-01-23\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"589\",\n                    \"email\": \"jlachica@haleymarketing.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand589\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand589\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-23T17:30:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con537\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-23\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"590\",\n                    \"email\": \"jlachica123@haleymarketing.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand590\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand590\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-23T17:52:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"632\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con569\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-01-23\",\n                    \"first_name\": \"Jyryll\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"591\",\n                    \"email\": \"jlachicaTest@haleymarketing.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Arlington\",\n                        \"zip\": \"76010\",\n                        \"address1\": \"4979 Sardis Sta\",\n                        \"address2\": \"\",\n                        \"state\": \"Texas\"\n                    },\n                    \"id\": \"cand591\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"817-863-7393\",\n                    \"username\": \"cand591\",\n                    \"title\": \"QA\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lachica\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-23T18:01:38\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"817-676-4398\",\n                    \"date_added\": \"2024-01-23\",\n                    \"first_name\": \"Jyryll\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"592\",\n                    \"email\": \"testing01242024.2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand592\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand592\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-24T14:27:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"654\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con571\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-01-24\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"5\",\n                    \"sutype\": \"\",\n                    \"department\": \"Contract Staff\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"593\",\n                    \"email\": \"jabba.hut@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32806\",\n                        \"address1\": \"1400 Sligh Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"FL\"\n                    },\n                    \"id\": \"cand593\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand593\",\n                    \"title\": \"Jabba the Hut\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hut\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-24T14:40:47\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp34\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-24\",\n                    \"first_name\": \"Jabba\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"594\",\n                    \"email\": \"stars0124@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32806\",\n                        \"address1\": \"1400 Test Boulevard\",\n                        \"address2\": \"This\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand594\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand594\",\n                    \"title\": \"This or That\",\n                    \"referral_source\": \"Open API\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"I think so\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-24T14:48:15\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"317\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con572\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-01-24\",\n                    \"first_name\": \"Will it Work\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"595\",\n                    \"email\": \"testerton@email.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Oakwood\",\n                        \"zip\": \"75855\",\n                        \"address1\": \"2898 Florence Street\",\n                        \"address2\": \"\",\n                        \"state\": \"Texas\"\n                    },\n                    \"id\": \"cand595\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand595\",\n                    \"title\": \"QA Analyst\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Try\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-26T11:43:57\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"+1  903-545-8076\",\n                    \"date_added\": \"2024-01-26\",\n                    \"first_name\": \"Testerton\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"596\",\n                    \"email\": \"testertonCRMHRM@email.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand596\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand596\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"CRMHRMMM\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-26T12:27:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"643\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con573\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-01-26\",\n                    \"first_name\": \"TestertronChanged23\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"597\",\n                    \"email\": \"qatester@email.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand597\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand597\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"CHANGE\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-01-26T12:49:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"648\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con575\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-01-26\",\n                    \"first_name\": \"QA Change\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"598\",\n                    \"email\": \"duplicatetest@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand598\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand598\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Change\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-01T15:20:50\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"651\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con577\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-02-01\",\n                    \"first_name\": \"Duplicate\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"599\",\n                    \"email\": \"testingagain@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94039\",\n                        \"address1\": \"629 Slide Rd\",\n                        \"address2\": \"State Route 3\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand599\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand599\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tests\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-01T16:54:37\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"652\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con578\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-02-01\",\n                    \"first_name\": \"All\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"600\",\n                    \"email\": \"testingagain2024-02-01@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clarence\",\n                        \"zip\": \"14031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"State Road 23\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand600\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand600\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tests\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-01T17:02:33\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"653\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con579\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-02-01\",\n                    \"first_name\": \"All\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"601\",\n                    \"email\": \"testing01242024.3@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand601\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand601\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-01T17:14:19\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"655\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con580\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-02-01\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"602\",\n                    \"email\": \"testing01242024.4@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"94031\",\n                        \"address1\": \"629 Side Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand602\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand602\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Testnation\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-01T20:25:42\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"676\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con581\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3335\",\n                    \"date_added\": \"2024-02-01\",\n                    \"first_name\": \"Ail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"603\",\n                    \"email\": \"haleyams7198.0134@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand603\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand603\",\n                    \"title\": \"This That\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leut\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-02T13:48:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"688\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con585\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-02-02\",\n                    \"first_name\": \"Diir\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"604\",\n                    \"email\": \"baa400002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand604\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand604\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-02T13:55:35\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con586\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2024-02-02\",\n                    \"first_name\": \"Lill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"605\",\n                    \"email\": \"1234567890@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand605\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand605\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Okay\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-02T13:58:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"690\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con587\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-02-02\",\n                    \"first_name\": \"Hmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"606\",\n                    \"email\": \"1234567890.97@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand606\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand606\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Okay\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-16T16:40:45\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"691\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con588\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-02-16\",\n                    \"first_name\": \"Hmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"607\",\n                    \"email\": \"12345267890.97@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand607\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand607\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ok\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-02-22T19:21:21\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"692\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con589\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-02-22\",\n                    \"first_name\": \"Hmmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"608\",\n                    \"email\": \"12345267890.98@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand608\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand608\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ok\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T11:45:06\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"700\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con597\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Hmmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"609\",\n                    \"email\": \"testonly123321@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand609\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand609\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ok\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T15:59:07\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"701\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con598\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Hmmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"610\",\n                    \"email\": \"testonly123321@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand610\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand610\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ok\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T15:59:38\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"702\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con599\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Hmmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"611\",\n                    \"email\": \"testonlyaccount1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand611\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand611\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Only\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T16:02:06\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"703\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con600\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Test\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"612\",\n                    \"email\": \"testonlyaccount1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand612\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand612\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Change\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T16:05:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"704\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con601\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"613\",\n                    \"email\": \"12345267890.99@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"10061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand613\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand613\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cool\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-04T17:46:59\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"705\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con602\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-04\",\n                    \"first_name\": \"Hummmmm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"614\",\n                    \"email\": \"retestonlyaccount@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand614\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand614\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Change\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-07T11:08:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"707\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con603\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-07\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"615\",\n                    \"email\": \"12345267890.91119@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand615\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand615\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-25T21:01:26\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-25\",\n                    \"first_name\": \"Ammm\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"616\",\n                    \"email\": \"02345267890.91119@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand616\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand616\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Stop\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-25T21:04:20\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"709\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con605\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-25\",\n                    \"first_name\": \"Ammem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"617\",\n                    \"email\": \"ma12131r@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand617\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand617\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Stop\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-25T22:30:14\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con606\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-03-25\",\n                    \"first_name\": \"Go\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"618\",\n                    \"email\": \"duplicatetesteron@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand618\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand618\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-03-26T11:28:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"712\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con607\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-03-26\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"619\",\n                    \"email\": \"johntesterfu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand619\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand619\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-05T14:16:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con608\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-05\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"620\",\n                    \"email\": \"johntesterfileupload@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand620\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand620\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-05T14:33:00\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con609\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-05\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"621\",\n                    \"email\": \"johntesterfileupload1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand621\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand621\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-05T14:38:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con610\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-05\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"622\",\n                    \"email\": \"johntesterfileupload2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand622\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand622\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-05T14:51:35\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con611\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-05\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"623\",\n                    \"email\": \"baa400002@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Bay Coty\",\n                        \"zip\": \"12149\",\n                        \"address1\": \"129 Tiny Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand623\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"119.104.7234\",\n                    \"username\": \"cand623\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"refer\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T16:27:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con612\",\n                    \"parid\": \"\",\n                    \"phone\": \"910.139.3334\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Lill\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"624\",\n                    \"email\": \"today-2024-02@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand624\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand624\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T16:56:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con613\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"625\",\n                    \"email\": \"pude@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton Highlands\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand625\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"297\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand625\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chanda\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T17:00:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con614\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Gloria\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"626\",\n                    \"email\": \"notsure01@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand626\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand626\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T18:17:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con615\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"627\",\n                    \"email\": \"notsure02@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand627\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand627\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ma Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T19:28:29\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con616\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Mats\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"628\",\n                    \"email\": \"notsure03@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand628\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand628\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ma Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-11T19:41:45\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"726\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con617\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-11\",\n                    \"first_name\": \"Mats\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"629\",\n                    \"email\": \"johntesterfileupload22@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"2245 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"LA\"\n                    },\n                    \"id\": \"cand629\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"username\": \"cand629\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ak\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-12T11:42:35\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con618\",\n                    \"parid\": \"\",\n                    \"phone\": \"842.930.1244\",\n                    \"date_added\": \"2024-04-12\",\n                    \"first_name\": \"Change\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"630\",\n                    \"email\": \"notsure04@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand630\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand630\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T09:00:52\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"727\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con619\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Mets\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"631\",\n                    \"email\": \"notsure05@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand631\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand631\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mo Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T09:02:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"728\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con620\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Mots\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"632\",\n                    \"email\": \"notsure06@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand632\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand632\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mu Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T09:06:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"729\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con621\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Muts\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"633\",\n                    \"email\": \"notsure07@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand633\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand633\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"My Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T09:14:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con622\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Go\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"634\",\n                    \"email\": \"notsure09@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand634\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand634\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Indeed\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"My Sa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T09:36:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"730\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con623\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Myts\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"635\",\n                    \"email\": \"sourcetypetest1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand635\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand635\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T10:29:29\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"732\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con624\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"636\",\n                    \"email\": \"sourcetypetest2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand636\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand636\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T10:36:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con625\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"637\",\n                    \"email\": \"sourcetypetest3@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand637\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand637\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T10:38:57\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con626\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"638\",\n                    \"email\": \"sourcetypetest5@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand638\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand638\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T10:40:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con627\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"639\",\n                    \"email\": \"sourcetypetest6@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand639\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand639\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T12:13:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con628\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"640\",\n                    \"email\": \"sourcetypetest7@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand640\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand640\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T12:16:20\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con629\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"641\",\n                    \"email\": \"sourcetypetest8@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand641\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand641\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-04-17T12:18:11\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con630\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-04-17\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"642\",\n                    \"email\": \"monday@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand642\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand642\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-20T10:33:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con631\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-20\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"643\",\n                    \"email\": \"monday-01@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand643\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand643\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-20T10:53:11\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con632\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-20\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"644\",\n                    \"email\": \"tuesday-02@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand644\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand644\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T14:22:34\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con633\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"645\",\n                    \"email\": \"sourcetyperetestonly1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand645\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand645\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T15:01:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con634\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"646\",\n                    \"email\": \"sourcetyperetestonly123321@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand646\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand646\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Indeed\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T15:06:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"730\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con635\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"647\",\n                    \"email\": \"sourcetyperetestonly123322@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand647\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand647\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T15:08:13\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con636\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"648\",\n                    \"email\": \"sourcetyperetestonly123323@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand648\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand648\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T17:16:38\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con637\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"649\",\n                    \"email\": \"sourcetyperetestonly123325@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand649\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand649\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-21T17:18:00\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con638\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-21\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"650\",\n                    \"email\": \"sourcetyperetestonly123326@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand650\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand650\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-22T07:54:15\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con639\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-22\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"651\",\n                    \"email\": \"sourcetyperetestonly123327@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand651\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand651\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-22T07:55:24\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con640\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-22\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"652\",\n                    \"email\": \"sourcetyperetestonlyprod@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand652\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand652\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-05-22T11:47:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con641\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-05-22\",\n                    \"first_name\": \"Let Update\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"653\",\n                    \"email\": \"sourcetyperetestonlyprod1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand653\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand653\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Too\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-07T17:11:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con642\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-07\",\n                    \"first_name\": \"Go\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"654\",\n                    \"email\": \"pigewylek@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand654\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand654\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Minerva\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-10T14:58:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con643\",\n                    \"parid\": \"\",\n                    \"phone\": \"+18495969972\",\n                    \"date_added\": \"2024-06-10\",\n                    \"first_name\": \"Josephine\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"655\",\n                    \"email\": \"hynaf@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand655\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand655\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Arden\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-10T15:27:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con644\",\n                    \"parid\": \"\",\n                    \"phone\": \"+16832373806\",\n                    \"date_added\": \"2024-06-10\",\n                    \"first_name\": \"Kelly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"656\",\n                    \"email\": \"pamoha@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lubec\",\n                        \"zip\": \"04652\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand656\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand656\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Blaine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-10T19:25:54\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con645\",\n                    \"parid\": \"\",\n                    \"phone\": \"+17167066094\",\n                    \"date_added\": \"2024-06-10\",\n                    \"first_name\": \"Alana\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"657\",\n                    \"email\": \"testerontest500badrequest1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand657\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand657\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Test\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T13:47:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"568\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con650\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"658\",\n                    \"email\": \"testerontest500badrequest2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand658\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand658\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Test\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T13:50:44\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"568\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con651\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"659\",\n                    \"email\": \"friday-01@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand659\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand659\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T14:04:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con652\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"660\",\n                    \"email\": \"friday-02@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand660\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand660\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T14:47:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con656\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"661\",\n                    \"email\": \"friday-03@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand661\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand661\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T14:58:05\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con657\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"662\",\n                    \"email\": \"RetestAkkenPleaseWork2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand662\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888.000.1214\",\n                    \"username\": \"cand662\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-14T15:16:35\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con659\",\n                    \"parid\": \"\",\n                    \"phone\": \"999.930.1244\",\n                    \"date_added\": \"2024-06-14\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"663\",\n                    \"email\": \"qasudusip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand663\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand663\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Keefe\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T19:53:01\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con660\",\n                    \"parid\": \"\",\n                    \"phone\": \"647-933-2695\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Athena\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"664\",\n                    \"email\": \"qasudusip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand664\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand664\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Keefe\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T19:53:20\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con661\",\n                    \"parid\": \"\",\n                    \"phone\": \"79332695\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Athena\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"665\",\n                    \"email\": \"zudyfo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand665\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand665\",\n                    \"title\": \"\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T20:32:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con662\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-322-6011\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Garth\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"666\",\n                    \"email\": \"zudyfo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand666\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand666\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T20:32:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con663\",\n                    \"parid\": \"\",\n                    \"phone\": \"83226011\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Garth\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"667\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand667\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand667\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:42:09\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con664\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-674-2802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"668\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand668\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand668\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:42:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con665\",\n                    \"parid\": \"\",\n                    \"phone\": \"86742802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"669\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand669\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand669\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:45:24\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con666\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"670\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand670\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand670\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:45:27\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con667\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"671\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand671\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand671\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:49:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con668\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"672\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand672\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand672\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T21:49:59\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con669\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"673\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand673\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand673\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T22:00:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con670\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"674\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand674\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand674\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T22:00:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con671\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"675\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand675\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand675\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T18:02:19\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con672\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-674-2802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"676\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand676\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand676\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T18:02:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con673\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-674-2802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"677\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand677\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand677\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T18:09:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con674\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-674-2802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"678\",\n                    \"email\": \"zuhebi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand678\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand678\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Medge\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-17T18:09:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con675\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-674-2802\",\n                    \"date_added\": \"2024-06-17\",\n                    \"first_name\": \"Hanna\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"679\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand679\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand679\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"test\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-18T14:36:52\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"568\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con676\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-219-9681\",\n                    \"date_added\": \"2024-06-18\",\n                    \"first_name\": \"Preston\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"680\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand680\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand680\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-18T14:37:03\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con677\",\n                    \"parid\": \"\",\n                    \"phone\": \"82199681\",\n                    \"date_added\": \"2024-06-18\",\n                    \"first_name\": \"Preston\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"681\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand681\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand681\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-18T14:48:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con678\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-219-9681\",\n                    \"date_added\": \"2024-06-18\",\n                    \"first_name\": \"Preston\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"682\",\n                    \"email\": \"ficojuraj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand682\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand682\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-18T14:48:11\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con679\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-219-9681\",\n                    \"date_added\": \"2024-06-18\",\n                    \"first_name\": \"Preston\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"683\",\n                    \"email\": \"TestOnlyTesteronakkentest@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand683\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand683\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T07:08:45\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con680\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-969-2900\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"684\",\n                    \"email\": \"TestOnlyTesteronakkentest@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand684\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand684\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T07:08:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con681\",\n                    \"parid\": \"\",\n                    \"phone\": \"89692900\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"685\",\n                    \"email\": \"AkkenTest123@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand685\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand685\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T08:52:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con682\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-969-2900\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"686\",\n                    \"email\": \"AkkenTest123@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand686\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand686\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T08:52:32\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con683\",\n                    \"parid\": \"\",\n                    \"phone\": \"89692900\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"687\",\n                    \"email\": \"nypyvam@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand687\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand687\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yuli\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:32:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con684\",\n                    \"parid\": \"\",\n                    \"phone\": \"434-451-3052\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Ella\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"688\",\n                    \"email\": \"nypyvam@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand688\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand688\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yuli\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:32:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con685\",\n                    \"parid\": \"\",\n                    \"phone\": \"44513052\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Ella\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"689\",\n                    \"email\": \"vijoqiv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand689\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand689\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Karyn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:35:59\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con686\",\n                    \"parid\": \"\",\n                    \"phone\": \"901-253-7699\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Brenda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"690\",\n                    \"email\": \"vijoqiv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand690\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand690\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Karyn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:36:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con687\",\n                    \"parid\": \"\",\n                    \"phone\": \"12537699\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Brenda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"691\",\n                    \"email\": \"qovikip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand691\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand691\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"April\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:52:34\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con688\",\n                    \"parid\": \"\",\n                    \"phone\": \"318-567-4653\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Madeson\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"692\",\n                    \"email\": \"qovikip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand692\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand692\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"April\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-19T16:52:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con689\",\n                    \"parid\": \"\",\n                    \"phone\": \"85674653\",\n                    \"date_added\": \"2024-06-19\",\n                    \"first_name\": \"Madeson\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"693\",\n                    \"email\": \"zode@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand693\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand693\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T10:21:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con690\",\n                    \"parid\": \"\",\n                    \"phone\": \"857-697-9594\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Wynter\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"694\",\n                    \"email\": \"zode@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand694\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand694\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T10:21:53\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con691\",\n                    \"parid\": \"\",\n                    \"phone\": \"76979594\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Wynter\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"695\",\n                    \"email\": \"sezaj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand695\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand695\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dillon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T11:28:04\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con692\",\n                    \"parid\": \"\",\n                    \"phone\": \"+15053434942\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Maxwell\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"696\",\n                    \"email\": \"qutuqir@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand696\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand696\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dahlia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T12:05:37\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con693\",\n                    \"parid\": \"\",\n                    \"phone\": \"+18882254499\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Callum\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"697\",\n                    \"email\": \"nopirevaza@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand697\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand697\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Erin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T12:24:25\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con694\",\n                    \"parid\": \"\",\n                    \"phone\": \"+17372667858\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Elvis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"698\",\n                    \"email\": \"wunusu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand698\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand698\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ariel\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T12:39:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con695\",\n                    \"parid\": \"\",\n                    \"phone\": \"53691909\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Samantha\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"699\",\n                    \"email\": \"vevixo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand699\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand699\",\n                    \"title\": \"IT Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jemima\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T12:55:53\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con696\",\n                    \"parid\": \"\",\n                    \"phone\": \"89258854\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Xantha\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"700\",\n                    \"email\": \"deja@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand700\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand700\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Abdul\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:11:28\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con697\",\n                    \"parid\": \"\",\n                    \"phone\": \"83961638\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Steel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"701\",\n                    \"email\": \"xuvevatoxi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand701\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand701\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Forrest\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:14:55\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con698\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Quinn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"702\",\n                    \"email\": \"bizetite@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand702\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand702\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Avram\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:21:26\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con699\",\n                    \"parid\": \"\",\n                    \"phone\": \"84517543\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Inga\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"703\",\n                    \"email\": \"tihela@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dexter\",\n                        \"zip\": \"04930\",\n                        \"address1\": \"209 Line Road\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand703\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand703\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:28:31\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con700\",\n                    \"parid\": \"\",\n                    \"phone\": \"56075025\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Hedy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"704\",\n                    \"email\": \"nadehinufo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dexter\",\n                        \"zip\": \"04930\",\n                        \"address1\": \"209 Line Road\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand704\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand704\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bertha\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:29:49\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con701\",\n                    \"parid\": \"\",\n                    \"phone\": \"58947419\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Solomon\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"705\",\n                    \"email\": \"xequ@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand705\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand705\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adria\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T13:48:30\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con702\",\n                    \"parid\": \"\",\n                    \"phone\": \"782-991-1462\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Yoshio\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"706\",\n                    \"email\": \"nagyxu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand706\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand706\",\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kenyon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T14:03:00\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con703\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-444-1494\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Byron\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"707\",\n                    \"email\": \"qurynigo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand707\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand707\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Quail\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T15:06:44\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con704\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-515-9182\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Raven\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"708\",\n                    \"email\": \"barinawy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lisbon\",\n                        \"zip\": \"04250\",\n                        \"address1\": \"209 Lisbon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand708\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand708\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alyssa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T15:41:22\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con705\",\n                    \"parid\": \"\",\n                    \"phone\": \"463-673-2699\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Leilani\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"709\",\n                    \"email\": \"jumijonilu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand709\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand709\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ruth\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T16:05:26\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con706\",\n                    \"parid\": \"\",\n                    \"phone\": \"931-953-7149\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Laurel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"710\",\n                    \"email\": \"vagemute@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand710\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand710\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Naida\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T16:14:30\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con707\",\n                    \"parid\": \"\",\n                    \"phone\": \"828-969-7084\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Pearl\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"711\",\n                    \"email\": \"duxywojyn@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Town of Moreau\",\n                        \"zip\": \"12831\",\n                        \"address1\": \"209 Lisa Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand711\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand711\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Cadman\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T16:18:29\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con708\",\n                    \"parid\": \"\",\n                    \"phone\": \"832-672-4369\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Owen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"712\",\n                    \"email\": \"hyzipyfi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand712\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand712\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hermione\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T19:14:50\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con709\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-515-7409\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Kadeem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"713\",\n                    \"email\": \"jybyka@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand713\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand713\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clementine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-21T19:23:28\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con710\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-523-2711\",\n                    \"date_added\": \"2024-06-21\",\n                    \"first_name\": \"Neville\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"714\",\n                    \"email\": \"TryingTest@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand714\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand714\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-24T06:12:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con711\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-969-2900\",\n                    \"date_added\": \"2024-06-24\",\n                    \"first_name\": \"Trying\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"715\",\n                    \"email\": \"tryingtest123654@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand715\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand715\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-24T11:34:06\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con712\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-969-2900\",\n                    \"date_added\": \"2024-06-24\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"716\",\n                    \"email\": \"zaxif@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand716\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand716\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-24T13:20:05\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con713\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-722-9772\",\n                    \"date_added\": \"2024-06-24\",\n                    \"first_name\": \"Flynn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"717\",\n                    \"email\": \"sagisihy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand717\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand717\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fatima\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-25T07:40:59\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con714\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-25\",\n                    \"first_name\": \"Benedict\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"718\",\n                    \"email\": \"resumetestroon@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand718\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand718\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-27T14:34:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con715\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-969-2900\",\n                    \"date_added\": \"2024-06-27\",\n                    \"first_name\": \"TestOnly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"719\",\n                    \"email\": \"pude@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton Highlands\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand719\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand719\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chanda\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-28T16:27:31\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con716\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-28\",\n                    \"first_name\": \"Gloria\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"720\",\n                    \"email\": \"sakaky@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand720\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand720\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Velma\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-06-30T16:29:31\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"183\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con717\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-06-30\",\n                    \"first_name\": \"Castor\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"721\",\n                    \"email\": \"lyxer@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"94114\",\n                        \"address1\": \"Mission Dolores Park\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand721\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand721\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Justine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-02T17:47:18\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con718\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-02\",\n                    \"first_name\": \"Leonard\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"722\",\n                    \"email\": \"tufit@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand722\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand722\",\n                    \"title\": \"Administrative Position\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tamekah\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-02T17:59:41\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con719\",\n                    \"parid\": \"\",\n                    \"phone\": \"85924162\",\n                    \"date_added\": \"2024-07-02\",\n                    \"first_name\": \"Renee\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"723\",\n                    \"email\": \"gidatejeri@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand723\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand723\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Quin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-02T18:30:01\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con720\",\n                    \"parid\": \"\",\n                    \"phone\": \"87742557\",\n                    \"date_added\": \"2024-07-02\",\n                    \"first_name\": \"August\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"724\",\n                    \"email\": \"lucyroha@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand724\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand724\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jacob\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-03T10:54:32\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con721\",\n                    \"parid\": \"\",\n                    \"phone\": \"82989963\",\n                    \"date_added\": \"2024-07-03\",\n                    \"first_name\": \"Zachery\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"725\",\n                    \"email\": \"xawito@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand725\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand725\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Briar\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-03T11:24:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con722\",\n                    \"parid\": \"\",\n                    \"phone\": \"79429269\",\n                    \"date_added\": \"2024-07-03\",\n                    \"first_name\": \"Declan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"Barclay Professional Accounting Services, Inc.\",\n                    \"sno\": \"726\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand726\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"888 696-2900\",\n                    \"username\": \"cand726\",\n                    \"title\": \"Practice Manager\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shoemaker\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-09T17:53:11\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con723\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-213-6069\",\n                    \"date_added\": \"2024-07-09\",\n                    \"first_name\": \"Tiffany\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"727\",\n                    \"email\": \"tuesday-021@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand727\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand727\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T09:30:18\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con724\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"728\",\n                    \"email\": \"tuesday-02122@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand728\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand728\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T09:33:11\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con725\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"729\",\n                    \"email\": \"nuvexyvuti@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand729\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand729\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Zenia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T10:16:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con726\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 301 7657\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Branden\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"730\",\n                    \"email\": \"kesaf@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand730\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand730\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wesley\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T11:17:29\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con727\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 836 4619\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Wang\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"731\",\n                    \"email\": \"zypabu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand731\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand731\",\n                    \"title\": \"Marketing Contract\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Amethyst\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T11:26:03\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con728\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 573 5042\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Burton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"732\",\n                    \"email\": \"cekygon@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand732\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand732\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pearl\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T11:37:08\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con729\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 415 3757\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Boris\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"733\",\n                    \"email\": \"tuesday2546859@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand733\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand733\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T14:35:52\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con730\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"734\",\n                    \"email\": \"wowagewez@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand734\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand734\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Angela\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T16:31:08\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con731\",\n                    \"parid\": \"\",\n                    \"phone\": \"505 699 7281\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Colton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"735\",\n                    \"email\": \"jufofoco@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand735\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand735\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Inez\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-10T17:04:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con732\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 502 2981\",\n                    \"date_added\": \"2024-07-10\",\n                    \"first_name\": \"Mannix\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"736\",\n                    \"email\": \"tuesday2546859514@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand736\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand736\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See Three\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-11T10:48:27\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con733\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-11\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"737\",\n                    \"email\": \"nuvibici@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand737\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand737\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aubrey\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-11T11:45:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con734\",\n                    \"parid\": \"\",\n                    \"phone\": \"512 623 3868\",\n                    \"date_added\": \"2024-07-11\",\n                    \"first_name\": \"Gretchen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"738\",\n                    \"email\": \"THISisaSAMPE@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand738\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand738\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"This Be Duplicate\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-11T11:46:49\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con735\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-11\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"739\",\n                    \"email\": \"kyrinix@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand739\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand739\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Samantha\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-11T11:50:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con736\",\n                    \"parid\": \"\",\n                    \"phone\": \"281 867 3573\",\n                    \"date_added\": \"2024-07-11\",\n                    \"first_name\": \"Jaden\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"740\",\n                    \"email\": \"tebuceti@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand740\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand740\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alana\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T12:46:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con741\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 654 7881\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Inga\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"741\",\n                    \"email\": \"nocihebo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand741\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand741\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"abracadabra-hocus-po\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Derek\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T13:37:33\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"734\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con742\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 561 5488\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Xena\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"742\",\n                    \"email\": \"dolohet@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand742\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand742\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nicole\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T18:39:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con743\",\n                    \"parid\": \"\",\n                    \"phone\": \"219 534 9534\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Paula\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"743\",\n                    \"email\": \"cisy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand743\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand743\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Idola\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T14:51:34\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con744\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 923 2579\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Patrick\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"744\",\n                    \"email\": \"sawidebas@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand744\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand744\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mallory\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T16:29:18\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 715 8958\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Rosalyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"745\",\n                    \"email\": \"cimudi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand745\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand745\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lee\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T17:18:33\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 401 6029\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Hermione\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"746\",\n                    \"email\": \"dacywim@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand746\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand746\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Marsden\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-13T17:30:10\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"517 243 4682\",\n                    \"date_added\": \"2024-07-13\",\n                    \"first_name\": \"Herrod\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"747\",\n                    \"email\": \"sasep@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand747\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand747\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gretchen\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-14T09:30:35\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 596 2562\",\n                    \"date_added\": \"2024-07-14\",\n                    \"first_name\": \"Christine\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"748\",\n                    \"email\": \"fyteqyv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand748\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand748\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Harlan\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-14T13:57:59\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 273 8031\",\n                    \"date_added\": \"2024-07-14\",\n                    \"first_name\": \"Rafael\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"749\",\n                    \"email\": \"wito@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand749\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand749\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chelsea\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-14T14:21:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con750\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 929 2354\",\n                    \"date_added\": \"2024-07-14\",\n                    \"first_name\": \"Clio\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"750\",\n                    \"email\": \"doxiboxahu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand750\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand750\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Abdul\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T10:50:19\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con751\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 717 4764\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Stone\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"751\",\n                    \"email\": \"majo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand751\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand751\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Finn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T10:54:59\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con752\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 568 6379\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Ginger\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"752\",\n                    \"email\": \"ryquxihymi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand752\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand752\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Linus\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:05:05\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con753\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 699 8547\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Dalton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"753\",\n                    \"email\": \"micyf@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand753\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand753\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Christopher\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:17:29\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con754\",\n                    \"parid\": \"\",\n                    \"phone\": \"519 684 6978\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Scarlett\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"754\",\n                    \"email\": \"pevila@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60610\",\n                        \"address1\": \"1065 North Orleans Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand754\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand754\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ciaran\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:17:35\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con755\",\n                    \"parid\": \"\",\n                    \"phone\": \"252 214 9179\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Sigourney\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"755\",\n                    \"email\": \"kolakah@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Lewis\",\n                        \"zip\": \"81327\",\n                        \"address1\": \"20755 Lebanon Road\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand755\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand755\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aiko\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:18:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con756\",\n                    \"parid\": \"\",\n                    \"phone\": \"408 883 4482\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Camilla\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"756\",\n                    \"email\": \"pipuhy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand756\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand756\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"other\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Wing\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:21:58\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"202\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con757\",\n                    \"parid\": \"\",\n                    \"phone\": \"829 836 3541\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Stephen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"757\",\n                    \"email\": \"lajidol@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84108\",\n                        \"address1\": \"Administration Building\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand757\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand757\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Ut est explicabo Pa\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Charlotte\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T11:59:13\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"736\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con758\",\n                    \"parid\": \"\",\n                    \"phone\": \"872 239 8505\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Whilemina\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"758\",\n                    \"email\": \"suhuxileza@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Atascadero\",\n                        \"zip\": \"93422\",\n                        \"address1\": \"Dolores Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand758\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand758\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Steel\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T12:13:40\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con759\",\n                    \"parid\": \"\",\n                    \"phone\": \"786 444 8167\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Azalia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"759\",\n                    \"email\": \"wifucyjevo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37914\",\n                        \"address1\": \"TDOT Region 1 Incident Management\",\n                        \"address2\": \"\",\n                        \"state\": \"TN\"\n                    },\n                    \"id\": \"cand759\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand759\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Jermaine\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T12:17:06\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con760\",\n                    \"parid\": \"\",\n                    \"phone\": \"337 499 1563\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Leila\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"760\",\n                    \"email\": \"fydamiwoxu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand760\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand760\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Boone\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T12:23:07\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con761\",\n                    \"parid\": \"\",\n                    \"phone\": \"742 443 1424\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Piper\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"761\",\n                    \"email\": \"hujikin@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand761\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand761\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hayden\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-15T12:43:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con762\",\n                    \"parid\": \"\",\n                    \"phone\": \"404 931 9067\",\n                    \"date_added\": \"2024-07-15\",\n                    \"first_name\": \"Hayfa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"762\",\n                    \"email\": \"lyryxu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand762\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand762\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yoshio\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T10:25:36\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con763\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 381 5507\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Jocelyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"763\",\n                    \"email\": \"fokizen@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand763\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand763\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T10:49:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con764\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 591 8589\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Regan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"764\",\n                    \"email\": \"fowo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11435\",\n                        \"address1\": \"144-01 Liberty Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand764\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand764\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Joy\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T11:00:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con765\",\n                    \"parid\": \"\",\n                    \"phone\": \"636 526 9475\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Kadeem\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"765\",\n                    \"email\": \"fokizenkhjkhkkj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand765\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand765\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T11:37:52\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con766\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 591 8589\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Regan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"766\",\n                    \"email\": \"moxezuvaw@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand766\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand766\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bolton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T11:44:02\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con767\",\n                    \"parid\": \"\",\n                    \"phone\": \"218 586 1386\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Mercedes\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"767\",\n                    \"email\": \"vyfiforogo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand767\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand767\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kirk\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T11:47:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con768\",\n                    \"parid\": \"\",\n                    \"phone\": \"577 406 5894\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Jack\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"768\",\n                    \"email\": \"fokizenkhjk878678hkkj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand768\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand768\",\n                    \"title\": \"test job\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Berg\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T12:00:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con769\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Regan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"769\",\n                    \"email\": \"fijujipeh@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"id\": \"cand769\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand769\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Sequi animi nisi id\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nina\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T12:38:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"737\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con770\",\n                    \"parid\": \"\",\n                    \"phone\": \"572 836 8315\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Grady\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"770\",\n                    \"email\": \"viwogazo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"108 Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"id\": \"cand770\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand770\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Sequi animi nisi id\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gisela\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T12:42:46\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"737\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con771\",\n                    \"parid\": \"\",\n                    \"phone\": \"367 289 6604\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Ferris\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"771\",\n                    \"email\": \"dabijusem@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Providence\",\n                        \"zip\": \"02909\",\n                        \"address1\": \"108 Magnolia Street\",\n                        \"address2\": \"\",\n                        \"state\": \"RI\"\n                    },\n                    \"id\": \"cand771\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand771\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Other\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dahlia\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T12:46:47\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"202\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con772\",\n                    \"parid\": \"\",\n                    \"phone\": \"835 373 2277\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Leroy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"772\",\n                    \"email\": \"kixy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand772\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand772\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shaffer\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T13:55:25\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con773\",\n                    \"parid\": \"\",\n                    \"phone\": \"478 698 3381\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Rogan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"773\",\n                    \"email\": \"recowu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand773\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand773\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tobias\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T13:57:36\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con774\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 435 2681\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Jessica\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"774\",\n                    \"email\": \"jijali@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand774\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand774\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mathews\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T16:33:01\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con775\",\n                    \"parid\": \"\",\n                    \"phone\": \"517 258 3598\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Barry\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"775\",\n                    \"email\": \"cinat@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand775\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand775\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sargent\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T16:37:36\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con776\",\n                    \"parid\": \"\",\n                    \"phone\": \"507 447 8584\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Raymond\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"776\",\n                    \"email\": \"desuxolu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand776\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand776\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Moses\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T16:44:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con777\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Basil\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"777\",\n                    \"email\": \"niwimi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand777\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand777\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Eliana\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T16:53:27\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con778\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Slade\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"778\",\n                    \"email\": \"ruhamut@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand778\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand778\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Johnston\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T17:05:57\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con779\",\n                    \"parid\": \"\",\n                    \"phone\": \"952 745 1526\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Danielle\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"779\",\n                    \"email\": \"giheri@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"South Salt Lake\",\n                        \"zip\": \"84190\",\n                        \"address1\": \"Eugene Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand779\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand779\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"OTHER DESCRIPTION\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Serena\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-16T17:14:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"739\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con780\",\n                    \"parid\": \"\",\n                    \"phone\": \"844 318 5769\",\n                    \"date_added\": \"2024-07-16\",\n                    \"first_name\": \"Odysseus\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"780\",\n                    \"email\": \"kigoxygy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand780\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand780\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T14:30:19\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con781\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 813 9999\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Rachel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"781\",\n                    \"email\": \"monday-04@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand781\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand781\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T14:32:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con782\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"782\",\n                    \"email\": \"monday-04-07-22-2024@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"cand782\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand782\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T14:32:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con783\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"783\",\n                    \"email\": \"monday-07-07-22-2024@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand783\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand783\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T14:48:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con787\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"784\",\n                    \"email\": \"testeronquest1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"321211\",\n                        \"address1\": \"20 festus chukwueku street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand784\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand784\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"online:-zip recruite\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Fix\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T16:57:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"740\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con788\",\n                    \"parid\": \"\",\n                    \"phone\": \"803 633 4807\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"785\",\n                    \"email\": \"lyjareb@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand785\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand785\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Nicole\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T17:06:32\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con789\",\n                    \"parid\": \"\",\n                    \"phone\": \"954 748 6022\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Olga\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"786\",\n                    \"email\": \"pubab@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand786\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand786\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Carissa\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T17:07:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con790\",\n                    \"parid\": \"\",\n                    \"phone\": \"713 633 5867\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Octavius\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"787\",\n                    \"email\": \"juvifypeta@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Asperiores aliquam n\",\n                        \"zip\": \"63837\",\n                        \"address1\": \"Dolorem tempora expe\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand787\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand787\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chava\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-22T17:14:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con791\",\n                    \"parid\": \"\",\n                    \"phone\": \"304 321 4754\",\n                    \"date_added\": \"2024-07-22\",\n                    \"first_name\": \"Wylie\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"788\",\n                    \"email\": \"tuesday-01-07-23-2024@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand788\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand788\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-23T17:19:11\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con792\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-23\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"789\",\n                    \"email\": \"tuesday-03-07-23-2024@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand789\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand789\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-23T17:24:53\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con794\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-23\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"790\",\n                    \"email\": \"tuesday-04-07-23-2024@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand790\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand790\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-23T17:28:22\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con795\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-23\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"791\",\n                    \"email\": \"gavyroxemu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand791\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand791\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mary\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-23T17:37:58\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con796\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 792 2633\",\n                    \"date_added\": \"2024-07-23\",\n                    \"first_name\": \"Griffith\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"792\",\n                    \"email\": \"vuhujutesa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77003\",\n                        \"address1\": \"18 Estelle Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand792\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand792\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Repellendus Sit off\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Colt\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-24T09:03:25\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"741\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con797\",\n                    \"parid\": \"\",\n                    \"phone\": \"912 682 4271\",\n                    \"date_added\": \"2024-07-24\",\n                    \"first_name\": \"Winter\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"793\",\n                    \"email\": \"humul@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Enid\",\n                        \"zip\": \"73701\",\n                        \"address1\": \"South 66th Street\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand793\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand793\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brynn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-24T09:15:39\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con798\",\n                    \"parid\": \"\",\n                    \"phone\": \"928 655 9225\",\n                    \"date_added\": \"2024-07-24\",\n                    \"first_name\": \"Basia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"794\",\n                    \"email\": \"romecuj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Palatine Township\",\n                        \"zip\": \"60074\",\n                        \"address1\": \"Einstein Bros. Bagels\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand794\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand794\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Test\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Caryn\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-24T11:54:10\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"568\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con799\",\n                    \"parid\": \"\",\n                    \"phone\": \"361 972 9726\",\n                    \"date_added\": \"2024-07-24\",\n                    \"first_name\": \"Raja\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"795\",\n                    \"email\": \"zivanyzuqe@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand795\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand795\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Melvin\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-24T11:54:12\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con800\",\n                    \"parid\": \"\",\n                    \"phone\": \"719 459 1611\",\n                    \"date_added\": \"2024-07-24\",\n                    \"first_name\": \"Isaiah\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"796\",\n                    \"email\": \"kybizeje@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Austin\",\n                        \"zip\": \"78742\",\n                        \"address1\": \"Quality Inn &amp;amp; Suites\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand796\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand796\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ifeoma\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-26T14:43:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con801\",\n                    \"parid\": \"\",\n                    \"phone\": \"682 699 8306\",\n                    \"date_added\": \"2024-07-26\",\n                    \"first_name\": \"Violet\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"797\",\n                    \"email\": \"gytyko@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand797\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand797\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Aliquam cupidatat iu\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Teegan\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-26T16:45:23\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"742\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con802\",\n                    \"parid\": \"\",\n                    \"phone\": \"216 328 4223\",\n                    \"date_added\": \"2024-07-26\",\n                    \"first_name\": \"Brenda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"798\",\n                    \"email\": \"xikun@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"94143\",\n                        \"address1\": \"California Volunteers Memorial\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand798\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand798\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aubrey\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-26T16:47:02\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con803\",\n                    \"parid\": \"\",\n                    \"phone\": \"205 318 6168\",\n                    \"date_added\": \"2024-07-26\",\n                    \"first_name\": \"Erica\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"799\",\n                    \"email\": \"jucosybev@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand799\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand799\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mona\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-26T17:00:37\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con804\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-26\",\n                    \"first_name\": \"Gail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"800\",\n                    \"email\": \"wamonusep@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand800\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand800\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Pearl\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T09:47:04\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con805\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 538 7413\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Elton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"801\",\n                    \"email\": \"buki@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand801\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand801\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brittany\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T10:01:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con806\",\n                    \"parid\": \"\",\n                    \"phone\": \"402 505 1146\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Gary\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"802\",\n                    \"email\": \"simotudat@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand802\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand802\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hammett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T10:08:58\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con807\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 965 8714\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Hayley\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"803\",\n                    \"email\": \"netasyn@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand803\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand803\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Adam\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T11:31:14\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con808\",\n                    \"parid\": \"\",\n                    \"phone\": \"878 513 1303\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Blake\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"804\",\n                    \"email\": \"tuesday321test1@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand804\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand804\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T12:28:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con809\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"805\",\n                    \"email\": \"tuesday321test2@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand805\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand805\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"Indeed\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T12:31:29\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"730\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con810\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Le\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"806\",\n                    \"email\": \"nehaxaku@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand806\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand806\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Magee\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T14:37:15\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con811\",\n                    \"parid\": \"\",\n                    \"phone\": \"566 599 5235\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Quinlan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"807\",\n                    \"email\": \"tufev@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Braddock\",\n                        \"zip\": \"15104\",\n                        \"address1\": \"Fugitive Bag House EDC\",\n                        \"address2\": \"\",\n                        \"state\": \"PA\"\n                    },\n                    \"id\": \"cand807\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand807\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Joelle\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T14:39:18\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con812\",\n                    \"parid\": \"\",\n                    \"phone\": \"502 667 7199\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Maya\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"808\",\n                    \"email\": \"tydifu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hyattsville\",\n                        \"zip\": \"20737\",\n                        \"address1\": \"6018 Sheridan Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand808\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand808\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Odette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-07-29T14:41:30\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con813\",\n                    \"parid\": \"\",\n                    \"phone\": \"588 948 5065\",\n                    \"date_added\": \"2024-07-29\",\n                    \"first_name\": \"Aaron\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"809\",\n                    \"email\": \"wavuhip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rancho Cucamonga\",\n                        \"zip\": \"92336\",\n                        \"address1\": \"CHP Officer John Bailey Memorial Freeway\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand809\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand809\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Deanna\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-05T08:42:21\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con814\",\n                    \"parid\": \"\",\n                    \"phone\": \"707 437 4346\",\n                    \"date_added\": \"2024-08-05\",\n                    \"first_name\": \"Zelda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"810\",\n                    \"email\": \"daputekev@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand810\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand810\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Clinton\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-05T08:45:23\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con815\",\n                    \"parid\": \"\",\n                    \"phone\": \"816 507 6859\",\n                    \"date_added\": \"2024-08-05\",\n                    \"first_name\": \"Mary\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"811\",\n                    \"email\": \"catawofoz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand811\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand811\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Linus\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-15T09:30:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con816\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-15\",\n                    \"first_name\": \"Imelda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"812\",\n                    \"email\": \"wefume@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Rio Rancho\",\n                        \"zip\": \"87124\",\n                        \"address1\": \"Dolores Hidalgo Drive Southeast\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"cand812\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand812\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Piper\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-19T12:05:36\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con817\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-19\",\n                    \"first_name\": \"Darrel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"813\",\n                    \"email\": \"gidavobip@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand813\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand813\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"jjkjhkh\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Barrett\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-26T13:47:55\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"745\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con818\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 946 7702\",\n                    \"date_added\": \"2024-08-26\",\n                    \"first_name\": \"Stacy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"814\",\n                    \"email\": \"atianderson12@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand814\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand814\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Anderson\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T16:36:48\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Tricia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"815\",\n                    \"email\": \"duzuqiheca@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand815\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand815\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Dolorum explicabo P\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Helen\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T17:08:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"746\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con820\",\n                    \"parid\": \"\",\n                    \"phone\": \"715 727 1733\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Reece\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"816\",\n                    \"email\": \"arush@gmail.net\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand816\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand816\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rush\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T17:42:54\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Ann\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"817\",\n                    \"email\": \"dmasterson@queenbee.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand817\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand817\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Masterson\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T17:47:29\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Diana\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"818\",\n                    \"email\": \"llinscottlinda23@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand818\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand818\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Linscott\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T17:55:12\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Linda\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"819\",\n                    \"email\": \"joe.m.montana3102@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand819\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand819\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Montana\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T18:08:34\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Joe\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"820\",\n                    \"email\": \"bianca.sutton9621@gmail.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Midwest City\",\n                        \"zip\": \"73130\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand820\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand820\",\n                    \"title\": \"Experienced Apartment Leasing Agent\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sutton\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-27T18:25:52\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con825\",\n                    \"parid\": \"\",\n                    \"phone\": \"702 820 9523\",\n                    \"date_added\": \"2024-08-27\",\n                    \"first_name\": \"Bianca\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"821\",\n                    \"email\": \"bianca.sutton96@gmail.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Midwest City\",\n                        \"zip\": \"73130\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"OK\"\n                    },\n                    \"id\": \"cand821\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand821\",\n                    \"title\": \"Experienced Apartment Leasing Agent\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sutton\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:02:51\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con826\",\n                    \"parid\": \"\",\n                    \"phone\": \"702 820 9523\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"Bianca\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"822\",\n                    \"email\": \"gixy@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand822\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand822\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kenyon\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:30:11\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con827\",\n                    \"parid\": \"\",\n                    \"phone\": \"269 908 4305\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"Isaac\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"823\",\n                    \"email\": \"wiqovedeqo@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand823\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand823\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Sara\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:30:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con828\",\n                    \"parid\": \"\",\n                    \"phone\": \"525 578 6572\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"George\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"824\",\n                    \"email\": \"zysega@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand824\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand824\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Mason\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:34:08\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con829\",\n                    \"parid\": \"\",\n                    \"phone\": \"337 332 5284\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"Nyssa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"825\",\n                    \"email\": \"tyfylikava@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand825\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand825\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Veniam pariatur Fa\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Trevor\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:34:09\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"747\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con830\",\n                    \"parid\": \"\",\n                    \"phone\": \"803 853 6137\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"Rae\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"826\",\n                    \"email\": \"vofez@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Fort Collins\",\n                        \"zip\": \"80522\",\n                        \"address1\": \"4515 John F Kennedy Parkway\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand826\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand826\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:37:03\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con831\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"827\",\n                    \"email\": \"zumoxe@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Florence\",\n                        \"zip\": \"81226\",\n                        \"address1\": \"5880 Needham Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"id\": \"cand827\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand827\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T13:37:14\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con832\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"828\",\n                    \"email\": \"ted.williams@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Saint Louis Park\",\n                        \"zip\": \"55416\",\n                        \"address1\": \"3939 Excelsior Boulevard\",\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"id\": \"cand828\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand828\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T14:25:19\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"829\",\n                    \"email\": \"votyh@mailinator.com\",\n                    \"cl_status\": \"0\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand829\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand829\",\n                    \"title\": \"\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"0\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-29T14:32:12\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con834\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-08-29\",\n                    \"first_name\": \"\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"830\",\n                    \"email\": \"nota@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand830\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand830\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Ullamco neque accusa\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"David\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-30T15:07:42\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"749\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con835\",\n                    \"parid\": \"\",\n                    \"phone\": \"469 484 1689\",\n                    \"date_added\": \"2024-08-30\",\n                    \"first_name\": \"Quintessa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"831\",\n                    \"email\": \"lenuhyfiv@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Memphis\",\n                        \"zip\": \"38104\",\n                        \"address1\": \"335 South Hollywood Street\",\n                        \"address2\": \"\",\n                        \"state\": \"TN\"\n                    },\n                    \"id\": \"cand831\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand831\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Reece\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-08-30T15:09:10\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con836\",\n                    \"parid\": \"\",\n                    \"phone\": \"659 789 7671\",\n                    \"date_added\": \"2024-08-30\",\n                    \"first_name\": \"Alan\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"832\",\n                    \"email\": \"rynamy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand832\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand832\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ryder\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-03T10:52:53\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con837\",\n                    \"parid\": \"\",\n                    \"phone\": \"577 391 3406\",\n                    \"date_added\": \"2024-09-03\",\n                    \"first_name\": \"Risa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"833\",\n                    \"email\": \"bianca.sutton96-02@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand833\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand833\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T15:47:38\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con838\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"834\",\n                    \"email\": \"gyjinyfa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Hayward\",\n                        \"zip\": \"94545\",\n                        \"address1\": \"26574 Corporate Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand834\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand834\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Colette\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T15:51:19\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"527\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con839\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 708 8559\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Madaline\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"835\",\n                    \"email\": \"jazytiz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand835\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand835\",\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Casey\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T16:14:37\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con840\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 243 9769\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Claudia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"836\",\n                    \"email\": \"bianca.sutton9-02@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand836\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand836\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T16:20:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con841\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"837\",\n                    \"email\": \"wurap@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand837\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand837\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Me See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T16:47:56\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con842\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Let\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"838\",\n                    \"email\": \"benritter24@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand838\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand838\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ritter\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T17:11:18\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"603 357 8823\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Benjamin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"839\",\n                    \"email\": \"benritter24@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand839\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand839\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ritter\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T17:11:31\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Benjamin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"840\",\n                    \"email\": \"busesepifi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand840\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand840\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Bethany\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-06T17:37:54\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"529\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con845\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 494 4717\",\n                    \"date_added\": \"2024-09-06\",\n                    \"first_name\": \"Gail\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"841\",\n                    \"email\": \"wurap-02@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand841\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand841\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-08T16:39:16\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con846\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-08\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"842\",\n                    \"email\": \"cal.ripken@yahoo.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand842\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand842\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T12:40:27\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"843\",\n                    \"email\": \"arush@gmail.net\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand843\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand843\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"See There\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T12:41:47\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Lets\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"844\",\n                    \"email\": \"kazabic@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand846\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand846\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:07:26\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con849\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Evelyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"845\",\n                    \"email\": \"kazabic@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand845\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand845\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:11:30\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Evelyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"846\",\n                    \"email\": \"kazabic@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand846\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand846\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Dale\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:11:39\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Evelyn\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"847\",\n                    \"email\": \"lazefyc@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand849\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand849\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:55:44\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con850\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Fatima\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"848\",\n                    \"email\": \"lazefyc@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand848\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand848\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:57:43\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Fatima\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"849\",\n                    \"email\": \"lazefyc@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand849\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand849\",\n                    \"title\": \"Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kerry\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T13:57:53\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Fatima\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"1\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"850\",\n                    \"email\": \"kexiko@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand852\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand852\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leo\",\n                    \"group\": null,\n                    \"muser\": \"1\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T14:32:19\",\n                    \"owner\": \"1\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con851\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Grady\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"851\",\n                    \"email\": \"kexiko@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand851\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand851\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leo\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T14:34:57\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Grady\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"852\",\n                    \"email\": \"kexiko@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand852\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand852\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Leo\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T14:35:05\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Grady\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"853\",\n                    \"email\": \"zuxolisuz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand855\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand855\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:30:21\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con852\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Lois\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"854\",\n                    \"email\": \"zuxolisuz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand854\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand854\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:32:52\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Lois\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"855\",\n                    \"email\": \"zuxolisuz@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand855\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand855\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:33:01\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Lois\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"856\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand862\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand862\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:35:34\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con853\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"857\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand857\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand857\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:38:01\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"858\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand858\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand858\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:38:10\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"859\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand859\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand859\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:49:18\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"860\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand860\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand860\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:49:27\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"861\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand861\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"571\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand861\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:58:40\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"862\",\n                    \"email\": \"sykocato-test@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand862\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"350\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand862\",\n                    \"title\": \"National Account Manager\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kimberly\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T17:58:49\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Phyllis\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"863\",\n                    \"email\": \"fotalidaqo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand863\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand863\",\n                    \"title\": \"TEchnician\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Joan\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-09T18:25:19\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con854\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-09\",\n                    \"first_name\": \"Ann\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"864\",\n                    \"email\": \"sigim@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Clinton Township\",\n                        \"zip\": \"49236\",\n                        \"address1\": \"6028 Sherdan Lane\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand864\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand864\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Constance\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-10T19:40:10\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con860\",\n                    \"parid\": \"\",\n                    \"phone\": \"603 435 3429\",\n                    \"date_added\": \"2024-09-10\",\n                    \"first_name\": \"Rebecca\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"865\",\n                    \"email\": \"qyqe@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60607\",\n                        \"address1\": \"525 South Racine Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand865\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand865\",\n                    \"title\": \"Administrative\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brendan\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-12T14:32:43\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con862\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-12\",\n                    \"first_name\": \"James\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"866\",\n                    \"email\": \"t8917825321@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand866\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand866\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Gary\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-17T14:23:22\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"526\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con864\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 969 2900\",\n                    \"date_added\": \"2024-09-17\",\n                    \"first_name\": \"Brenden\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"867\",\n                    \"email\": \"fomaheqisa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Federal Way\",\n                        \"zip\": \"98023\",\n                        \"address1\": \"1602 Southwest Dash Point Road\",\n                        \"address2\": \"\",\n                        \"state\": \"WA\"\n                    },\n                    \"id\": \"cand867\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand867\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Fugiat ipsam quia a\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ezra\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-17T16:13:31\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"752\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con865\",\n                    \"parid\": \"\",\n                    \"phone\": \"512 359 1455\",\n                    \"date_added\": \"2024-09-17\",\n                    \"first_name\": \"Hayley\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"4\",\n                    \"sutype\": \"\",\n                    \"department\": \"Temp Staff\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"868\",\n                    \"email\": \"rjones97yhngy.u89huh9@my.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"459 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"cand868\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand868\",\n                    \"title\": \"Not sure\",\n                    \"referral_source\": \"akglhakjgaiogjkagkag\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Test\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-18T17:59:19\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"735\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con866\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-18\",\n                    \"first_name\": \"Employee\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"869\",\n                    \"email\": \"suhecy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Columbia\",\n                        \"zip\": \"21045\",\n                        \"address1\": \"6100 Dobbin Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"cand869\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand869\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ebony\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T13:15:24\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"848 559 4517\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Joy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"870\",\n                    \"email\": \"kobiqe@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand870\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand870\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Hasad\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T13:17:17\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con868\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Deacon\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"871\",\n                    \"email\": \"jupulycegu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Springdale\",\n                        \"zip\": \"84767\",\n                        \"address1\": \"La Quinta Inn &amp;amp;amp; Suites @ Zion Park Springdale\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand871\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand871\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Chancellor\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T13:35:37\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"704 711 6138\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Uriah\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"872\",\n                    \"email\": \"jefukulu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Brea\",\n                        \"zip\": \"92821\",\n                        \"address1\": \"1130 East Imperial Highway\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand872\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand872\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Shelly\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T13:37:53\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con870\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Stacy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"873\",\n                    \"email\": \"palulaj@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand873\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand873\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Rhona\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T14:00:14\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"529 333 1608\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Sydney\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"874\",\n                    \"email\": \"wujorojaxa@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand874\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand874\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Architecto aut obcae\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Emery\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T14:03:22\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"753\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con872\",\n                    \"parid\": \"\",\n                    \"phone\": \"769 974 2409\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Daria\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"875\",\n                    \"email\": \"beva@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"East Lyme\",\n                        \"zip\": \"06357\",\n                        \"address1\": \"Nikirk Ministries World Headquarters\",\n                        \"address2\": \"\",\n                        \"state\": \"CT\"\n                    },\n                    \"id\": \"cand875\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand875\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Corporis ut similiqu\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Lyle\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-19T14:04:28\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"437 429 7951\",\n                    \"date_added\": \"2024-09-19\",\n                    \"first_name\": \"Audrey\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"876\",\n                    \"email\": \"kudygud@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand876\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand876\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Alfonso\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T13:27:23\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con874\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 365 3818\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Patrick\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"877\",\n                    \"email\": \"hegipadyp@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand877\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand877\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Burke\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T13:32:16\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con875\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 399 9958\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Nigel\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"878\",\n                    \"email\": \"daquliva@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97210\",\n                        \"address1\": \"522 Northwest 23rd Avenue\",\n                        \"address2\": \"\",\n                        \"state\": \"OR\"\n                    },\n                    \"id\": \"cand878\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand878\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kenneth\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T15:45:40\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con877\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Alexa\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"879\",\n                    \"email\": \"sacezy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand879\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand879\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Asperiores minim vol\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aladdin\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T15:55:11\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"755\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con878\",\n                    \"parid\": \"\",\n                    \"phone\": \"564 951 5152\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Germane\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"880\",\n                    \"email\": \"homeledyba@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand880\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand880\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"job-board\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Xyla\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T16:01:24\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"512 424 1553\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Shelly\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"881\",\n                    \"email\": \"qaxakemy@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Santa Barbara\",\n                        \"zip\": \"91305\",\n                        \"address1\": \"Blenders In The Grass - 5 Points\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"cand881\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand881\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Roth\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T16:06:39\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con880\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Daphne\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"882\",\n                    \"email\": \"duridej@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6026 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand882\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand882\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Nostrud sit quasi c\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Quentin\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T16:15:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"756\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con881\",\n                    \"parid\": \"\",\n                    \"phone\": \"516 845 8919\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Dalton\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"883\",\n                    \"email\": \"dase@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Park City\",\n                        \"zip\": \"84060\",\n                        \"address1\": \"Quinn's Connect\",\n                        \"address2\": \"\",\n                        \"state\": \"UT\"\n                    },\n                    \"id\": \"cand883\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand883\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Martina\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-23T16:19:54\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"857 504 3965\",\n                    \"date_added\": \"2024-09-23\",\n                    \"first_name\": \"Courtney\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"884\",\n                    \"email\": \"namu@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp; Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand884\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand884\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Brendan\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-24T16:22:26\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"612 944 3451\",\n                    \"date_added\": \"2024-09-24\",\n                    \"first_name\": \"Gretchen\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"885\",\n                    \"email\": \"vavacevab@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp;amp;amp; Testing Cente\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand885\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand885\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Walter\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-24T16:31:03\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con884\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-09-24\",\n                    \"first_name\": \"Richard\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"886\",\n                    \"email\": \"hiquvuwop@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Pecos Research &amp;amp;amp; Testing Center\",\n                        \"zip\": \"79772\",\n                        \"address1\": \"High Speed Test Track\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"id\": \"cand886\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand886\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"social-media\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tashya\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-24T16:40:53\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"530\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 392 8829\",\n                    \"date_added\": \"2024-09-24\",\n                    \"first_name\": \"Jade\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"887\",\n                    \"email\": \"cwright@newasd.akken.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand887\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand887\",\n                    \"title\": \"\",\n                    \"referral_source\": \"web-search\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kirk\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-09-25T17:24:58\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"528\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con898\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 518 5422\",\n                    \"date_added\": \"2024-09-25\",\n                    \"first_name\": \"Hector\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"888\",\n                    \"email\": \"testeronlytester@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand888\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"293\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand888\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Only\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-01T19:09:55\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con943\",\n                    \"parid\": \"\",\n                    \"phone\": \"89692900\",\n                    \"date_added\": \"2024-10-01\",\n                    \"first_name\": \"Test\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"889\",\n                    \"email\": \"treytester@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand890\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand890\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tester\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-01T19:41:44\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con945\",\n                    \"parid\": \"\",\n                    \"phone\": \"89692900\",\n                    \"date_added\": \"2024-10-01\",\n                    \"first_name\": \"Try\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"890\",\n                    \"email\": \"treytester@gmail.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand890\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand890\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tester\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-01T19:41:52\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"89692900\",\n                    \"date_added\": \"2024-10-01\",\n                    \"first_name\": \"Try\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"891\",\n                    \"email\": \"rigo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60612\",\n                        \"address1\": \"15 South Wood Street\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"cand891\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand891\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Tallulah\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:19:56\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con946\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Vivian\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"892\",\n                    \"email\": \"natiguqyk@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand892\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand892\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Yeo\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:27:46\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con947\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Hedy\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"893\",\n                    \"email\": \"nudoqymo@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand893\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand893\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Phillips\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:34:48\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp35\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Oren\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"894\",\n                    \"email\": \"jyhatazata@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": \"cand894\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand894\",\n                    \"title\": \"\",\n                    \"referral_source\": \"\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Oneil\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:35:53\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"emp36\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Indira\",\n                    \"vcount\": \"1\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"895\",\n                    \"email\": \"jawexyny@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Southfield Township\",\n                        \"zip\": \"48025\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"cand895\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand895\",\n                    \"title\": \"Admin Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Raja\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:46:53\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con948\",\n                    \"parid\": \"\",\n                    \"phone\": \"272 997 7904\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Zeus\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"896\",\n                    \"email\": \"puqutityf@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand896\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand896\",\n                    \"title\": \"\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Julie\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T15:52:27\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con949\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Maia\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"897\",\n                    \"email\": \"ceguwuduro@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand897\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand897\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Aileen\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T16:05:51\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con950\",\n                    \"parid\": \"\",\n                    \"phone\": \"\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Maris\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"898\",\n                    \"email\": \"lopok@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dolph\",\n                        \"zip\": \"72528\",\n                        \"address1\": \"Quail Way\",\n                        \"address2\": \"\",\n                        \"state\": \"AR\"\n                    },\n                    \"id\": \"cand898\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand898\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"Referral\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Iona\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-02T16:42:18\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"168\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con951\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 387 8387\",\n                    \"date_added\": \"2024-10-02\",\n                    \"first_name\": \"Aladdin\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"899\",\n                    \"email\": \"muhiva@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand899\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand899\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"job-fair\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Ursa\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-03T11:37:44\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"0\",\n                    \"supid\": \"0\",\n                    \"candid\": \"\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 711 9009\",\n                    \"date_added\": \"2024-10-03\",\n                    \"first_name\": \"Pascale\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"900\",\n                    \"email\": \"fefyxyjuda@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand900\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand900\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Xyla\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-03T12:05:41\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con953\",\n                    \"parid\": \"\",\n                    \"phone\": \"888-571-5536\",\n                    \"date_added\": \"2024-10-03\",\n                    \"first_name\": \"Hasad\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"22\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"901\",\n                    \"email\": \"tukapimi@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand901\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand901\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Kitra\",\n                    \"group\": null,\n                    \"muser\": \"22\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-03T12:12:40\",\n                    \"owner\": \"22\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con954\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 411 1857\",\n                    \"date_added\": \"2024-10-03\",\n                    \"first_name\": \"Lisandra\",\n                    \"vcount\": \"0\"\n                },\n                {\n                    \"deptid\": \"1\",\n                    \"sutype\": \"\",\n                    \"department\": \"Administration\",\n                    \"cuser\": \"\",\n                    \"recentemp\": \"\",\n                    \"sno\": \"902\",\n                    \"email\": \"jelikyrata@mailinator.com\",\n                    \"cl_status\": \"158\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Newton\",\n                        \"zip\": \"02461\",\n                        \"address1\": \"1172 Beacon Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"cand902\",\n                    \"hareacode\": \"\",\n                    \"jobcatid\": \"0\",\n                    \"cell_phone\": \"\",\n                    \"username\": \"cand902\",\n                    \"title\": \"Administrative Assistant\",\n                    \"referral_source\": \"newspaper\",\n                    \"status\": \"158\",\n                    \"areacode\": \"\",\n                    \"last_name\": \"Angela\",\n                    \"group\": null,\n                    \"muser\": \"\",\n                    \"contact_id\": \"0\",\n                    \"ctime\": \"2024-10-03T12:23:52\",\n                    \"owner\": \"\",\n                    \"referral_source_id\": \"172\",\n                    \"supid\": \"0\",\n                    \"candid\": \"con955\",\n                    \"parid\": \"\",\n                    \"phone\": \"888 695 3029\",\n                    \"date_added\": \"2024-10-03\",\n                    \"first_name\": \"May\",\n                    \"vcount\": \"0\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate CRM GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.17117\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-10-03T16:43:17\",\n            \"APIKEY\": \"b3BlbmFwaTpneF1tS1I5QEg4MnVrR1U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1773 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateList/?app_grant=openapi&access_token=Ps2Zs2oDUdJKYAHf9qnEwrBEEh49YgC7KosxVA531iXJxv3yOvvH1pZUMUckrWRgkVyEvb2KSnyriDCnJwqE1T60_dDlPEDoRlmiLww_-W3gdC0G3tetcBoIYmMZGf5wyaNU3I3T2Pba7f1mPHIVd71rH_Dwec-MI71uRUi29Gdr8m3DDPQq2wlvnXt1cjUt0FrtkF_63tvL10jUXc-23_9D39cMRWeB_UmQksAcQrQcW1AaRG-wxf5jJVL3rC146TvPXH6sY1LA5kqaKfIQYQKrVUcDZAAjmzZ23nBF_9IZALIR8kSyyejwzARkNOk4c9G-pGMGSKk5ZuPojWQByzKIN4kEWATzqsDD6dpW5GuX_G4skY69mM2cL4xP4tVTGoWRt8ERk4vY4bZaYrNF4TxfxMlijaltqYpJZBzF08vWycgdj91WZSHAgryXqxbP&$skiptoken=500\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"47.168253\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1773 candidates returned\"\n}"}],"_postman_id":"b986f7b8-6701-4982-ad22-7215ea33f9a5"},{"name":"Candidate Set","id":"eee72026-f9b2-408f-b298-49996f031b94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\":\"cand2\",\r\n        \"first_name\":\"Employee\",\r\n        \"last_name\":\"Test III\",\r\n        \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\r\n        \"state\": \" Main \",\r\n        \"title\": \"Not sure\",\r\n        \"phone\":\"999.930.1244\",        \r\n        \"cell_phone\":\"888.000.1214\",\r\n        \"address1\": \"459 Peony Rd\",\r\n        \"zip\": \"80061\",\r\n        \"country\": \"USkhljhkkjh\",        \r\n        \"skills\": \"Perl, Stuff, \",\r\n        \"city\": \"Boston\",\r\n        \"job_id\": 18\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name <strong>REQUIRED</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong> - sent as a string</p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>skills - <strong>REQUIRED</strong> - can be NULL</p>\n</li>\n<li><p>pay_rate - <strong>REQUIRED</strong> - can be NULL</p>\n</li>\n<li><p>referral_source - <strong>REQUIRED</strong> - can be NULL</p>\n</li>\n<li><p>job_id - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"email\":\"testing01242024.2@mailinator.com\",\n        \"first_name\":\"Ail\",\n        \"last_name\":\"Testnation\",\n        \"referral_source\": \"job-board\",\n        \"state\": \"NY\",\n        \"phone\":\"910.139.3335\",        \n        \"cell_phone\":\"119.104.7234\",\n        \"address1\": \"629 Side Rd\",\n        \"zip\": \"14031\",\n        \"country\": \"US\",\n        \"city\": \"Clarence\",\n        \"job_id\": 5    \n    }\n  }\n}        \n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d419be0f-ee61-465f-b515-ae1438d2cf6b","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"12345267890.98@mailinator.com\",\r\n        \"first_name\":\"Hmmm\",\r\n        \"last_name\":\"Ok\",\r\n        \"referral_source\": \"job-fair\",\r\n        \"state\": \"Louisiana\",\r\n        \"title\": \"IT Manager\",\r\n        \"phone\":\"842.930.1244\",        \r\n        \"cell_phone\":\"848.931.1214\",\r\n        \"address1\": \"2245 Peony Rd\",\r\n        \"zip\": \"80061\",\r\n        \"country\": \"US\",        \r\n        \"skills\": \"Web\",\r\n        \"pay_rate\": \"50.70\",\r\n        \"city\": \"New Orleans\",\r\n        \"job_id\": 18\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 16:46:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1294"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"80378"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"cand608\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate CRM Update\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.140049\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2024-03-04T16:46:54\",\n            \"APIKEY\": \"b3BlbmFwaTpneF1tS1I5QEg4MnVrR1U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"wareacode\\\":\\\"\\\",\\\"deptid\\\":4,\\\"sutype\\\":\\\"\\\",\\\"recenttitle\\\":\\\"\\\",\\\"pramount\\\":\\\"\\\",\\\"rperiod\\\":\\\"\\\",\\\"fname\\\":\\\"Hmmm\\\",\\\"recentemp\\\":\\\"\\\",\\\"cuser\\\":\\\"1\\\",\\\"profilename\\\":\\\"\\\",\\\"state\\\":\\\"LA\\\",\\\"sno\\\":608,\\\"email\\\":\\\"12345267890.98@mailinator.com\\\",\\\"cl_status\\\":158,\\\"cl_sourcetype\\\":\\\"700\\\",\\\"profile_updated\\\":\\\"2024-03-04T16:46:54\\\",\\\"desirelocation\\\":\\\"\\\",\\\"ctype\\\":\\\"Consultant\\\",\\\"period\\\":\\\"\\\",\\\"cand_sourcetype\\\":\\\"job-fair\\\",\\\"mtime\\\":\\\"2024-03-04T16:46:54\\\",\\\"hareacode\\\":\\\"\\\",\\\"jobcatid\\\":0,\\\"avail\\\":\\\"immediate\\\",\\\"username\\\":\\\"cand608\\\",\\\"hphone\\\":\\\"842.930.1244\\\",\\\"zip\\\":\\\"80061\\\",\\\"lname\\\":\\\"Ok\\\",\\\"address1\\\":\\\"2245 Peony Rd\\\",\\\"accessto\\\":\\\"ALL\\\",\\\"other_email\\\":\\\"\\\",\\\"wphone\\\":\\\"\\\",\\\"areacode\\\":\\\"\\\",\\\"status\\\":\\\"ACTIVE\\\",\\\"mname\\\":\\\"\\\",\\\"mobile\\\":\\\"848.931.1214\\\",\\\"currency\\\":\\\"\\\",\\\"desirestatus\\\":\\\"\\\",\\\"muser\\\":\\\"1\\\",\\\"city\\\":\\\"New Orleans\\\",\\\"contact_id\\\":0,\\\"cand_sourceid\\\":\\\"700\\\",\\\"profiletitle\\\":\\\"IT Manager\\\",\\\"rcurrency\\\":\\\"\\\",\\\"country\\\":243,\\\"ctime\\\":\\\"2024-03-04T11:45:06\\\",\\\"owner\\\":\\\"\\\",\\\"supid\\\":0,\\\"candid\\\":\\\"con597\\\",\\\"nickname\\\":\\\"\\\",\\\"parid\\\":\\\"\\\",\\\"alternate_email\\\":\\\"\\\",\\\"address2\\\":\\\"\\\",\\\"desirejob\\\":\\\"\\\",\\\"amount\\\":\\\"\\\",\\\"cl_source\\\":\\\"job-fair\\\",\\\"vcount\\\":0,\\\"mareacode\\\":\\\"\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateList(608)/?app_grant=openapi&access_token=lagUvLrsNwAMRUDtVyHBI9vHx5b7KPjh5OKpR5oLT5NvBPEAdQffaWQghMKaCfnU_pmnzlUQczw4FOkLbBaG0BkV6BfhCTkJP_a4bggOUFl3wEh0i8xEuxintw9tH6l-c-Y6T5JrDaRBbcJXIGAEd33c4lFR_aa4vJb-GRUslKXKKCTHcVF-fsMir5puFTfI5XDgxjEaJBszpNpxC9TeKOQSoNt777AdBZ2XMoa_gSh-7ePo1PcfOWlGmWbHUZpZAoK40itHXvtYZsp-XI6vKZL6Gngj8VALV-THNDfoxmM10Hu0RhV3f28uW1clL6k4cZ_QSU3CGy9RrfesojrwyBZtquOjXz8gxgDlQahwnwxecMFw4pwobz0KRKxtzn9wLGxz8rFzyYMqWZ-vCzYrTXz1BNJRBFWKG-faS7XELDh6mHchgml8xjPXcEFWlrXf\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"2.32681\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Created\"\n}"}],"_postman_id":"eee72026-f9b2-408f-b298-49996f031b94"},{"name":"Candidate Update","id":"3a984be9-89ab-46c9-94a4-d83e20b68b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {  \r\n        \"email\":\"ma12131r@mailinator.com\",\r\n        \"first_name\": \"Go\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4a3369eb-87dc-4951-9fd8-d7bf331539eb","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {  \r\n        \"id\": \"con572\",\r\n        \"email\": \"stars0124@mailinator.com\",\r\n        \"first_name\": \"Will it Work\"               \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jan 2024 21:07:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1278"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"173446"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"con572\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate CRM Update\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.066119\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2024-01-25T21:07:46\",\n            \"APIKEY\": \"b3BlbmFwaTpneF1tS1I5QEg4MnVrR1U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate updated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"wareacode\\\":\\\"\\\",\\\"deptid\\\":4,\\\"sutype\\\":\\\"\\\",\\\"recenttitle\\\":\\\"\\\",\\\"pramount\\\":\\\"\\\",\\\"rperiod\\\":\\\"\\\",\\\"fname\\\":\\\"Will it Work\\\",\\\"recentemp\\\":\\\"\\\",\\\"cuser\\\":\\\"1\\\",\\\"profilename\\\":\\\"\\\",\\\"state\\\":\\\"NY\\\",\\\"sno\\\":594,\\\"email\\\":\\\"stars0124@mailinator.com\\\",\\\"cl_status\\\":158,\\\"cl_sourcetype\\\":\\\"317\\\",\\\"profile_updated\\\":\\\"2024-01-25T21:07:46\\\",\\\"desirelocation\\\":\\\"\\\",\\\"ctype\\\":\\\"Consultant\\\",\\\"period\\\":\\\"\\\",\\\"cand_sourcetype\\\":\\\"Open API\\\",\\\"mtime\\\":\\\"2024-01-25T21:07:46\\\",\\\"hareacode\\\":\\\"\\\",\\\"jobcatid\\\":0,\\\"avail\\\":\\\"immediate\\\",\\\"username\\\":\\\"cand594\\\",\\\"hphone\\\":\\\"\\\",\\\"zip\\\":\\\"32806\\\",\\\"lname\\\":\\\"Hut\\\",\\\"address1\\\":\\\"1400 Test Boulevard\\\",\\\"accessto\\\":\\\"ALL\\\",\\\"other_email\\\":\\\"\\\",\\\"wphone\\\":\\\"\\\",\\\"areacode\\\":\\\"\\\",\\\"status\\\":\\\"ACTIVE\\\",\\\"mname\\\":\\\"\\\",\\\"mobile\\\":\\\"\\\",\\\"currency\\\":\\\"\\\",\\\"desirestatus\\\":\\\"\\\",\\\"muser\\\":\\\"1\\\",\\\"city\\\":\\\"Orlando\\\",\\\"contact_id\\\":0,\\\"cand_sourceid\\\":\\\"317\\\",\\\"profiletitle\\\":\\\"This or That\\\",\\\"rcurrency\\\":\\\"\\\",\\\"country\\\":243,\\\"ctime\\\":\\\"2024-01-24T14:48:15\\\",\\\"owner\\\":\\\"\\\",\\\"supid\\\":0,\\\"candid\\\":\\\"con572\\\",\\\"nickname\\\":\\\"\\\",\\\"parid\\\":\\\"\\\",\\\"alternate_email\\\":\\\"\\\",\\\"address2\\\":\\\"This\\\",\\\"desirejob\\\":\\\"\\\",\\\"amount\\\":\\\"\\\",\\\"cl_source\\\":\\\"Open API\\\",\\\"vcount\\\":1,\\\"mareacode\\\":\\\"\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateList(594)/?app_grant=openapi&access_token=T7viAQoi_dVBbiGyCaprUPQmKiyT6xhLnFKJewJFh8FCVCTEYk4nuElKSkJjBQ8lH6c27iNp4rV1N6P0i2lkUqpmQIq0p_ojGUYg0hJrjWn90cUtWrKFOzChUuhTQoW2ljRTuPXznDS85LrZZ9vJVxPNajcpvzD8PIooOFM229wdk_aczcY5As67_gwMo-IzjwFiaXGCJCrWQCvezLslGvyeZzE-7YcEXFTCerR8L_LRpyF1MRUJX-iXGXEl9u3aGxeHojbp-7Bsd_IGKtC21AtxiH6O_WD2jAym-4qMpZxIetSfwekLbjLufZqKUW1k2Ybs_NuGSOsaBiC0w9KpdshK5fSD0fSuHX8Dv8jili-fsxPk8EHPPn50HaIqzhvkcAXHO0cRQVb10EhuPzuFMlIgkCivOYhU-SNjSlwXYp8U4Hy-5TSlDzD7VoQ6nk-U\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"0.805252\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate updated\"\n}"}],"_postman_id":"3a984be9-89ab-46c9-94a4-d83e20b68b24"},{"name":"Candidate Get By ID","id":"2cac4cbb-f76e-4fcd-b4ac-1bef93582f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": \"cand626\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"con146\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"720687d9-c728-44d0-b403-985a5e746f36","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": \"cand304\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 19:56:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1037"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7552"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-fair\",\n                    \"candid\": \"con206\",\n                    \"phone\": \"\",\n                    \"last_name\": \"Lyut\",\n                    \"cell_phone\": \"848.931.1214\",\n                    \"sno\": \"304\",\n                    \"sourcetype\": \"527\",\n                    \"email\": \"haleyams7998@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"New Orleans\",\n                        \"zip\": \"90060\",\n                        \"address1\": \"1245 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Louisiana\"\n                    },\n                    \"title\": \"This That\",\n                    \"id\": \"cand304\",\n                    \"first_name\": \"Dwir\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Country Lookup GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.066494\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-02T19:56:15\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/Countries/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=sno eq 243\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.214539\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"2cac4cbb-f76e-4fcd-b4ac-1bef93582f86"},{"name":"Candidate Get By Email","event":[{"listen":"test","script":{"id":"5d5feb89-dd6b-4649-b425-73ec47ebd065","exec":["","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Content-Type is application/json\", function () {","    pm.expect(pm.response.headers.get(\"Content-Type\")).to.include(\"application/json\");","});","","","pm.test(\"Validate the api_response object\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.api_response).to.exist.and.to.be.an('object');","    pm.expect(responseData.api_response.api_data).to.exist.and.to.be.an('object');","    pm.expect(responseData.api_response.api_data.totalCount).to.exist.and.to.be.a('number');","    pm.expect(responseData.api_response.api_data.count).to.exist.and.to.be.a('number');","    pm.expect(responseData.api_response.api_data.candidates).to.exist.and.to.be.an('array');","    pm.expect(responseData.api_response.api_data.candidates).to.have.lengthOf.at.least(1);","    responseData.api_response.api_data.candidates.forEach(function (candidate) {","        pm.expect(candidate).to.be.an('object');","        pm.expect(candidate.referral_source).to.exist.and.to.be.a('string');","        pm.expect(candidate.referral_source_id).to.exist.and.to.be.a('string');","        pm.expect(candidate.phone).to.exist.and.to.be.a('string');","        pm.expect(candidate.username).to.exist.and.to.be.a('string');","        pm.expect(candidate.cell_phone).to.exist.and.to.be.a('string');","        pm.expect(candidate.last_name).to.exist.and.to.be.a('string');","        pm.expect(candidate.sno).to.exist.and.to.be.a('string');","        pm.expect(candidate.email).to.exist.and.to.be.a('string');","","        pm.expect(candidate.address).to.exist.and.to.be.an('object');","        pm.expect(candidate.address.country).to.exist.and.to.be.a('string');","        pm.expect(candidate.address.city).to.exist.and.to.be.a('string');","        pm.expect(candidate.address.zip).to.exist.and.to.be.a('string');","        pm.expect(candidate.address.address1).to.exist.and.to.be.a('string');","        pm.expect(candidate.address.address2).to.exist.and.to.be.a('string');","        pm.expect(candidate.address.state).to.exist.and.to.be.a('string');","        pm.expect(candidate.title).to.exist.and.to.be.a('string');","        pm.expect(candidate.id).to.exist.and.to.be.a('string');","        pm.expect(candidate.first_name).to.exist.and.to.be.a('string');","    });","});","","","pm.test(\"Candidates array is present and contains the expected number of elements\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.have.property('api_response');","    pm.expect(responseData.api_response).to.have.property('api_data');","    pm.expect(responseData.api_response.api_data).to.have.property('candidates');","    pm.expect(responseData.api_response.api_data.candidates).to.be.an('array');","    pm.expect(responseData.api_response.api_data.candidates).to.have.lengthOf(1);","});","","","pm.test(\"Email field is required and present in the response\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.have.property('api_response');","    pm.expect(responseData.api_response).to.have.property('api_data');","    pm.expect(responseData.api_response.api_data).to.have.property('candidates').that.is.an('array');","","    responseData.api_response.api_data.candidates.forEach(function (candidate) {","        pm.expect(candidate).to.have.property('email').that.is.a('string');","    });","});","","","","pm.test(\"Validate the date_added field in the response\", function () {","    const responseData = pm.response.json();","","    responseData.api_response.api_data.candidates.forEach(function (candidate) {","        if (candidate.date_added === null) {","            pm.expect(candidate.date_added).to.be.null;","            pm.test(`Date added is null for candidate with email ${candidate.email}`, function () {","                pm.expect(candidate.date_added).to.be.null;","            });","        } else {","            pm.expect(candidate.date_added).to.be.a('string');","            pm.test(`Date added is ${candidate.date_added} for candidate with email ${candidate.email}`, function () {","                pm.expect(candidate.date_added).to.eql(candidate.date_added);","            });","        }","    });","});","","","",""],"type":"text/javascript","packages":{}}}],"id":"ccfb0d53-e86c-4648-b33a-11e12d6461b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\": \"4tb66frmbt@privaterelay.appleid.com\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>email - <strong>REQUIRED</strong> - candidate email</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"email\": \"stars0124@mailinator.com\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0bfd5546-5355-46b2-88b5-60087f377d76","name":"Candidate Get By Email","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\": \"stars0124@mailinator.com\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jan 2024 22:53:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"847"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"756842"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": []\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.769771\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-01-24T22:53:33\",\n            \"APIKEY\": \"b3BlbmFwaTpneF1tS1I5QEg4MnVrR1U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMConsultantGeneral/?app_grant=openapi&access_token=eiaAcfWsi1QiFtG-8nxMAlojorjIOWrVpzS7cYyJPnwq59tUlJ2Iuyk_AnKBQgME9vYcS5IpPrWnlnT3QK-OWFGcAQkCk7v1EWMsWiZVA6lQCI_8rcmYdHrf4PKgMZNyliffi0kCcAmCDEoTOTws0UK0xa0wau6O_p3iZw3pdBZhgjFiqB-byCVeX_6Vv9-YvM4ORRp7tIGw-6dr6IblZocYOa2GDNC_EojZtQqdM0jsB8RMkEQ6Zs9y3m3-SLi8ShSWgscBCk9eqx1-mvOCLrU7ankAHY0G9fr5WAQ14t5qg6bhbU8HTw0fGmbNTnJwrjq8-lbZJL1eutNFNmwchPFb-Pfv8ZGFPln8QGZjMvsPwyPmGTYKBBt26fhPG0TCy-6iHersJCHqxknChSnLeO5rm6qn9qSZDJhj8d0-Q0fQEz1s6hxg8CL3KBFPPCk2&$filter=email eq 'stars0124@mailinator.com'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.902211\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"ccfb0d53-e86c-4648-b33a-11e12d6461b7"},{"name":"Candidate Set Education","id":"e7533236-bf16-4169-91fe-116b824f0c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"cand304\"\r\n        },\r\n        \"school\":\"NYU Silver School of Social Work\",\r\n        \"city\":\"Manhattan\" ,\r\n        \"state\": \"NY\",\r\n        \"major\":\"Social Work Clinical\"           \r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <b>REQUIRED</b></p>\n</li>\n<li><p>school - <b>REQUIRED</b></p>\n</li>\n<li><p>city - <b>REQUIRED</b></p>\n</li>\n<li><p>state - <b>REQUIRED</b></p>\n</li>\n<li><p>country - <b>OPTONAL</b></p>\n</li>\n<li><p>end_date <b>OPTIONAL</b></p>\n</li>\n<li><p>major - <b>REQUIRED</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": \"con85\"\n        },\n        \"school\":\"NYU Silver School of Social Work\",\n        \"city\":\"Manhattan\" ,\n        \"state\": \"NY\",\n        \"major\":\"Social Work Clinical\"\n     }\n}\n</pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"009440bb-6d68-4c26-b08b-5e892677f436","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"cand304\"\r\n        },\r\n        \"school\":\"NYU Silver School of Social Work\",\r\n        \"city\":\"Manhattan\" ,\r\n        \"state\": \"NY\",\r\n        \"major\":\"Social Work Clinical\"           \r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 20:07:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"904"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7563"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"cand304\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.04159\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-03-02T20:07:50\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"educity\\\":\\\"Manhattan\\\",\\\"heducation\\\":\\\"NYU Silver School of Social Work\\\",\\\"edustate\\\":\\\"NY\\\",\\\"edudegree_level\\\":\\\"Social Work Clinical\\\",\\\"username\\\":\\\"cand304\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMConsultantEdu/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.392646\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"e7533236-bf16-4169-91fe-116b824f0c8c"},{"name":"Candidate Get Education","id":"df275e72-ab12-4349-bc65-5a9b99f650cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": \"con141\"\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<ul>\n<li>candidate -&gt; ID - <strong>REQUIRED</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 4\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"38e4ed72-c933-44fd-a0c9-1f66241d7728","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": \"cand304\"\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Mar 2023 16:56:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"914"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"494626"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"education\": [\n                {\n                    \"country\": \"US\",\n                    \"city\": \"New York\",\n                    \"end_date\": \"\",\n                    \"school\": \"NYU Silver School\",\n                    \"id\": \"con206\",\n                    \"major\": \"Social Work\",\n                    \"state\": \"NY\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Country Lookup GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.042097\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-07T16:56:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 education returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/Countries/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=sno eq 243\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.494686\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 education returned\"\n}"}],"_postman_id":"df275e72-ab12-4349-bc65-5a9b99f650cd"},{"name":"Candidate Set Work History","id":"063b765e-454e-4821-a788-51f6d56b1b53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"con8\"\r\n        },\r\n        \"company_name\": \"Far Far Away\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"1992-01-05\",\r\n        \"end_date\":\"1992-01-31\",\r\n        \"title\": \"Cashier IV\",\r\n        \"city\": \"Des Moines\",\r\n        \"state\": \"Iowa\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <b>REQUIRED</b></p>\n</li>\n<li><p>title - <b>OPTIONAL</b></p>\n</li>\n<li><p>company_name - <b>REQUIRED</b></p>\n</li>\n<li><p>comments - <b>OPTIONAL</b> - duties</p>\n</li>\n<li><p>start_date - <b>OPTIONAL</b></p>\n</li>\n<li><p>end_date - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<p>start_date and end_date should be in one of the following formats:</p>\n<p>\"Wed, 09 Feb 1994 22:23:32 GMT\"       -- HTTP format\n\"Thu Feb  3 17:03:55 GMT 1994\"        -- ctime(3) format\n\"Thu Feb  3 00:00:00 1994\",           -- ANSI C asctime() format\n\"Tuesday, 08-Feb-94 14:15:29 GMT\"     -- old rfc850 HTTP format\n\"Tuesday, 08-Feb-1994 14:15:29 GMT\"   -- broken rfc850 HTTP format</p>\n<p>\"03/Feb/1994:17:03:55 -0700\"   -- common logfile format\n\"09 Feb 1994 22:23:32 GMT\"     -- HTTP format (no weekday)\n\"08-Feb-94 14:15:29 GMT\"       -- rfc850 format (no weekday)\n\"08-Feb-1994 14:15:29 GMT\"     -- broken rfc850 format (no weekday)</p>\n<p>\"1994-02-03 14:15:29 -0100\"    -- ISO 8601 format\n\"1994-02-03 14:15:29\"          -- zone is optional\n\"1994-02-03\"                   -- only date\n\"1994-02-03T14:15:29\"          -- Use T as separator\n\"19940203T141529Z\"             -- ISO 8601 compact format\n\"19940203\"                     -- only date</p>\n<p>\"08-Feb-94\"         -- old rfc850 HTTP format    (no weekday, no time)\n\"08-Feb-1994\"       -- broken rfc850 HTTP format (no weekday, no time)\n\"09 Feb 1994\"       -- proposed new HTTP format  (no weekday, no time)\n\"03/Feb/1994\"       -- common logfile format     (no time, no offset)</p>\n<p>\"Feb  3  1994\"      -- Unix 'ls -l' format\n\"Feb  3 17:03\"      -- Unix 'ls -l' format</p>\n<p>\"11-15-96  03:52PM\" -- Windows 'dir' format</p>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": \"con8\"\n        },\n        \"company_name\": \"Far Far Away\",\n        \"comments\": \"I ran the cash register.\",\n        \"start_date\": \"01/05/1992\",\n        \"end_date\":\"01/31/1992\",\n        \"title\": \"Cashier IV\",\n        \"city\": \"Des Moines\",\n        \"state\": \"Iowa\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"57332de9-aa3e-426d-a26e-a35cf9894c5e","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"con8\"\r\n        },\r\n        \"company_name\": \"Far Far Away\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"1992-01-05\",\r\n        \"end_date\":\"1992-01-31\",\r\n        \"title\": \"Cashier IV\",\r\n        \"city\": \"Des Moines\",\r\n        \"state\": \"Iowa\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Nov 2022 22:15:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"925"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1084938"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"con8\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.345136\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-10T22:15:17\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"edate\\\":\\\"January-1992\\\",\\\"ftitle\\\":\\\"Cashier IV\\\",\\\"wdesc\\\":\\\"I ran the cash register.\\\",\\\"sdate\\\":\\\"January-1992\\\",\\\"username\\\":\\\"con8\\\",\\\"state\\\":\\\"Iowa\\\",\\\"cname\\\":\\\"Far Far Away\\\",\\\"city\\\":\\\"Des Moines\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMConsultantWork/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.501192\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"063b765e-454e-4821-a788-51f6d56b1b53"},{"name":"Candidate Get Work History","id":"de593caa-c4d0-4872-a0da-696dd1eba6eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"con8\"\r\n        }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For getting a candidate's work history.</p>\n\n<ul>\n<li>candidate -&gt; id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": \"con85\"\n        }\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a1829f46-2414-4001-b530-f793f9836701","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": \"con8\"\r\n        }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 23:49:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1396"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"111459"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 6,\n            \"count\": 6,\n            \"workhistory\": [\n                {\n                    \"country\": \"\",\n                    \"company_name\": \"DEF Company\",\n                    \"comments\": \"Mortgage Loan Processor/Broker Assistant * Efficiently pre-qualified borrowers and processed mortgage loans while providing quality Broker support\",\n                    \"state\": \"NH\",\n                    \"city\": \"Manchester\",\n                    \"end_date\": \"-2005\",\n                    \"title\": \"Mortgage Loan Processor/Broker Assistant\",\n                    \"id\": \"con8\",\n                    \"start_date\": \"-2001\"\n                },\n                {\n                    \"country\": \"\",\n                    \"company_name\": \"ABC Company\",\n                    \"comments\": \"* Effectively secure, pre-qualify and process mortgage loan applications to drive business growth * Demonstrate strong leadership skills in hiring, training and supervising Loan Officers and Brokers, with a strong focus on the delivery of superior customer service while ensuring critical compliance with regulatory standards * Proficiently steer general office activities to maximize productivity, efficiency, quality, and cost-effectiveness of operations\",\n                    \"state\": \"NH\",\n                    \"city\": \"Nashua\",\n                    \"end_date\": \"-\",\n                    \"title\": \"Senior Mortgage Loan Processor/ Office M\",\n                    \"id\": \"con8\",\n                    \"start_date\": \"-2005\"\n                },\n                {\n                    \"country\": \"\",\n                    \"company_name\": \"Far Far Away\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"state\": \"Iowa\",\n                    \"city\": \"Des Moines\",\n                    \"end_date\": \"January-1992\",\n                    \"title\": \"Cashier IV\",\n                    \"id\": \"con8\",\n                    \"start_date\": \"January-1992\"\n                },\n                {\n                    \"country\": \"\",\n                    \"company_name\": \"Far Far Away\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"state\": \"Iowa\",\n                    \"city\": \"Des Moines\",\n                    \"end_date\": \"January-1992\",\n                    \"title\": \"Cashier IV\",\n                    \"id\": \"con8\",\n                    \"start_date\": \"January-1992\"\n                },\n                {\n                    \"country\": \"\",\n                    \"city\": \"Des Moines\",\n                    \"company_name\": \"Far Far Away\",\n                    \"title\": \"Cashier IV\",\n                    \"id\": \"con8\",\n                    \"state\": \"Iowa\"\n                },\n                {\n                    \"country\": \"\",\n                    \"company_name\": \"Far Far Away\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"state\": \"Iowa\",\n                    \"city\": \"Des Moines\",\n                    \"end_date\": \"January-1992\",\n                    \"title\": \"Cashier IV\",\n                    \"id\": \"con8\",\n                    \"start_date\": \"January-1992\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.189203\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-08T23:49:50\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"6 workhistories returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMConsultantWork/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=username eq 'con8'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.453288\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"6 workhistories returned\"\n}"}],"_postman_id":"de593caa-c4d0-4872-a0da-696dd1eba6eb"}],"id":"458ae15b-a432-435d-af0b-6c5ab3a4b7bc","event":[{"listen":"prerequest","script":{"id":"f47087ad-f87f-4421-84b5-30d9d46bbcbe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7320cc52-15e1-49b7-a199-8da5e7a3014b","type":"text/javascript","exec":[""]}}],"_postman_id":"458ae15b-a432-435d-af0b-6c5ab3a4b7bc","description":""},{"name":"Custom","item":[{"name":"Custom","id":"922c2632-c1d2-4b55-89d9-e27bf765ff7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n      \"api_id\": \"{{akken_api_id}}\",\n      \"api_secret\": \"{{akken_api_secret}}\",\n      \"api_pw\": \"{{akken_api_pw}}\",\n      \"api_un\": \"{{akken_api_un}}\"\n    },\n    \"vendor\": \"akken\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n    \t    }\n    }\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to JobAdder via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6af3f9f6-214d-4a2d-b7ac-1febf03f7dbf","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n      \"api_id\": \"{{akken_api_id}}\",\n      \"api_secret\": \"{{akken_api_secret}}\",\n      \"api_pw\": \"{{akken_api_pw}}\",\n      \"api_un\": \"{{akken_api_un}}\"\n    },\n    \"vendor\": \"akken\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n    \t    }\n    }\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Oct 2022 14:15:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"496"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1018738"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-10-17T14:15:11\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-10-17T14:15:12\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"akken\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"password\\\",\\\"Password\\\":\\\"xxxxxxxxxxxxxxxx\\\",\\\"app_grant\\\":\\\"openapi\\\",\\\"Username\\\":\\\"openapi\\\",\\\"APIKey\\\":\\\"xxxxxxxxxxxxxxxx\\\"}\",\n            \"call\": \"https://openauth.akken.com/authenticate\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"0.882143\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"922c2632-c1d2-4b55-89d9-e27bf765ff7c"}],"id":"2338fce1-81b8-4519-9f4a-c58d47374d8d","event":[{"listen":"prerequest","script":{"id":"b403a69f-7551-4161-a084-e7e157a4a178","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58c4261a-a5d1-4462-898e-46e51e98ad57","type":"text/javascript","exec":[""]}}],"_postman_id":"2338fce1-81b8-4519-9f4a-c58d47374d8d","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"e9f47ad8-248a-4b36-8d0e-a888308068fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": \"cand626\",\r\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume-04-11-2024.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate HRM ID</li>\n<li>file_data - <strong>REQUIRED</strong> - base64 encoded file</li>\n<li>file_name - <strong>REQUIRED</strong></li>\n<li>crm_id - <strong>REQUIRED</strong> - candidate CRM ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"con8\",\n        \"crm_id\": \"cand123\",\n        \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n            \"file_name\": \"Resume.pdf\"    \n        }\n  }\n\n</code></pre>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fb4cbe26-3c3b-436a-bd70-bf55f3f35fcb","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": \"cand304\",\r\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 22:26:21 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1315"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"111393"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"resid\": \"116\",\n            \"id\": \"con206\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate CRM Update\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-03-08T22:26:24\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2023-03-08T22:26:24\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error: Parsed Response for Candidate CRM Update did not return valid data\",\n            \"VENDOR\": \"akken\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"wareacode\\\":\\\"\\\",\\\"deptid\\\":120,\\\"recenttitle\\\":\\\"\\\",\\\"pramount\\\":\\\"\\\",\\\"rperiod\\\":\\\"\\\",\\\"fname\\\":\\\"Dwir\\\",\\\"recentemp\\\":\\\"\\\",\\\"cuser\\\":\\\"1\\\",\\\"profilename\\\":\\\"\\\",\\\"state\\\":\\\"Louisiana\\\",\\\"email\\\":\\\"haleyams7998@mailinator.com\\\",\\\"cl_sourcetype\\\":\\\"527\\\",\\\"profile_updated\\\":\\\"2023-03-08T22:26:24\\\",\\\"desirelocation\\\":\\\"\\\",\\\"ctype\\\":\\\"Consultant\\\",\\\"period\\\":\\\"\\\",\\\"cand_sourcetype\\\":\\\"job-fair\\\",\\\"mtime\\\":\\\"2023-03-08T22:26:24\\\",\\\"hareacode\\\":\\\"\\\",\\\"avail\\\":\\\"immediate\\\",\\\"username\\\":\\\"cand304\\\",\\\"hphone\\\":\\\"\\\",\\\"zip\\\":\\\"90060\\\",\\\"lname\\\":\\\"Lyut\\\",\\\"address1\\\":\\\"1245 Pony Rd\\\",\\\"accessto\\\":\\\"ALL\\\",\\\"wphone\\\":\\\"\\\",\\\"areacode\\\":\\\"\\\",\\\"status\\\":\\\"ACTIVE\\\",\\\"mname\\\":\\\"\\\",\\\"mobile\\\":\\\"848.931.1214\\\",\\\"currency\\\":\\\"\\\",\\\"desirestatus\\\":\\\"\\\",\\\"resid\\\":\\\"117\\\",\\\"muser\\\":\\\"1\\\",\\\"city\\\":\\\"New Orleans\\\",\\\"cand_sourceid\\\":\\\"527\\\",\\\"profiletitle\\\":\\\"This That\\\",\\\"rcurrency\\\":\\\"\\\",\\\"ctime\\\":\\\"2023-03-08T22:26:24\\\",\\\"owner\\\":\\\"\\\",\\\"country\\\":\\\"US\\\",\\\"nickname\\\":\\\"\\\",\\\"candid\\\":\\\"con206\\\",\\\"address2\\\":\\\"\\\",\\\"desirejob\\\":\\\"\\\",\\\"amount\\\":\\\"\\\",\\\"cl_source\\\":\\\"job-fair\\\",\\\"mareacode\\\":\\\"\\\"}\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/CRMCandidateList(cand304)/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.879737\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for response from the origin ATS\"\n}"}],"_postman_id":"e9f47ad8-248a-4b36-8d0e-a888308068fc"}],"id":"162df089-063d-454d-8740-10a03b8c339e","event":[{"listen":"prerequest","script":{"id":"b2134959-3509-49c1-b2ad-b5f06fc132f1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ff8b0ffb-cd05-47e3-8b5d-1e4bc399b335","type":"text/javascript","exec":[""]}}],"_postman_id":"162df089-063d-454d-8740-10a03b8c339e","description":""},{"name":"Job","item":[{"name":"Job Get","id":"5a487b0f-c4d9-47c8-a763-5424c79f5214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {}\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"063f98fe-b012-4fb0-8db9-cb0affbc0830","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 23:24:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3423"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"111432"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 13,\n            \"count\": 13,\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"18 USD / HOUR\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"<div style=\\\"margin: 0px; font-family: Arial; font-size: 10pt; color: black;\\\">Test</div>\",\n                    \"description\": \"<div>Local company seeking a night time warehouse selector 4pm to 12pm - overtime may be required. Requirements * selects products correctly as directed by proper shipping documents Reports shorts and fills shorted orders according to company and customer policies Reports defective or damaged products to a supervisor immediately, never shipping defective products Maintain a safe and clean environment Builds pallets in proper order and to minimize driver effort in unloading Builds pallets to maximize load stability to reduce product damage Builds pallets to facilitate ease of counting Marks each pallet with customer name and proper case count Operates fork lift or pallet jack in accordance with OSHA training and company policies Performs all OSHA required checks prior to using equipment Reports machinery problems or safety defects immediately to supervisors</div>\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-22\",\n                    \"post_id\": \"2\",\n                    \"rep_user\": {\n                        \"email\": \"jbert@necompany.akken.com\",\n                        \"firstName\": \"Jennifer\",\n                        \"id\": \"4\",\n                        \"lastName\": \"Bert\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"01711\",\n                        \"address1\": \"45 Merchant Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"Distribution - Warehouse Selector\",\n                    \"category\": \"Biotechnology and Pharmaceutical\",\n                    \"type\": \"Temp/Contract to Direct\",\n                    \"id\": \"2\",\n                    \"company\": \"Boston Geriatrics\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-24\",\n                    \"post_id\": \"4\",\n                    \"rep_user\": {\n                        \"email\": \"jbert@necompany.akken.com\",\n                        \"firstName\": \"Jennifer\",\n                        \"id\": \"4\",\n                        \"lastName\": \"Bert\"\n                    },\n                    \"address\": {\n                        \"country\": 0,\n                        \"city\": \"Wilton\",\n                        \"zip\": \"02204\",\n                        \"address1\": \"1 Horse Farm Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"category\": \"Agriculture, Forestry, & Fishing\",\n                    \"type\": \"Direct\",\n                    \"id\": \"4\",\n                    \"company\": \"Jenn's Vet\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"The ideal candidate is smart, organized, detail-oriented and has a sense of urgency.  This position requires an individual who is motivated, proactive and will follow through. Excellent communication skills and ability to handle several projects simultaneously is key. Requires excellent judgment and the ability to work independently.  Must handle confidential information with discretion. Strong computer skills including Microsoft, Outlook, PowerPoint, Word and Excel required. B.S. Degree is preferred with 5 years of experience.\",\n                    \"description\": \"Challenging opportunity for an experienced Administrative/Executive Assistant.  You will provide direct support to a busy General Manager in this dynamic environment.  \\r\\n\\r\\nResponsibilities include calendar management, coordination of meetings, drafting letters and correspondence, frequent interaction with clients, senior management and staff, maintaining databases, creating spreadsheets and presentations, conducting research projects and compiling reports, other special projects, and managing day-to-day activities.\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-24\",\n                    \"post_id\": \"5\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": null,\n                        \"city\": null,\n                        \"zip\": null,\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": null\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"category\": \"\",\n                    \"type\": \"Temp/Contract to Direct\",\n                    \"id\": \"5\",\n                    \"company\": \"Marquette Financial\"\n                },\n                {\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-24\",\n                    \"post_id\": \"6\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Peterborough\",\n                        \"zip\": \"02203\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"TEchnician\",\n                    \"category\": \"Electronics\",\n                    \"id\": \"0\",\n                    \"type\": \"Temp/Contract\",\n                    \"company\": \"New Horizon Inc\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-25\",\n                    \"post_id\": \"8\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": 0,\n                        \"city\": \"Portsmouth\",\n                        \"zip\": \"03801\",\n                        \"address1\": \"Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"8\",\n                    \"type\": \"Temp/Contract\",\n                    \"category\": \"Advertising/Marketing/Public Relations\",\n                    \"company\": \"Marquette Financial\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"admin duties with reception and accounts payable\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-09-19\",\n                    \"post_id\": \"10\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Peterborough\",\n                        \"zip\": \"02203\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Administrative Assistant for GM\",\n                    \"category\": \"Airlines\",\n                    \"type\": \"Temp/Contract\",\n                    \"id\": \"10\",\n                    \"company\": \"New Horizon Inc\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2009-05-21\",\n                    \"post_id\": \"11\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Peterborough\",\n                        \"zip\": \"02203\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"test job\",\n                    \"category\": \"\",\n                    \"type\": \"Temp/Contract\",\n                    \"id\": \"11\",\n                    \"company\": \"New Horizon Inc\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2009-10-06\",\n                    \"post_id\": \"12\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"03820\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"\",\n                    \"id\": \"12\",\n                    \"type\": \"Direct\",\n                    \"category\": \"\",\n                    \"company\": \"ABC  Company\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"Good at operations\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2009-11-02\",\n                    \"post_id\": \"14\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": 0,\n                        \"city\": \"Wilton\",\n                        \"zip\": \"02204\",\n                        \"address1\": \"1 Horse Farm Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Director Operations\",\n                    \"category\": \"Agriculture, Forestry, & Fishing\",\n                    \"id\": \"14\",\n                    \"type\": \"Direct\",\n                    \"company\": \"Jenn's Vet\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"Must be able to answer phone\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2010-02-04\",\n                    \"post_id\": \"18\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Peterborough\",\n                        \"zip\": \"02203\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Administrative\",\n                    \"category\": \"\",\n                    \"id\": \"18\",\n                    \"type\": \"Temp/Contract\",\n                    \"company\": \"New Horizon Inc\"\n                },\n                {\n                    \"pay_rate\": \"50000 USD / YEARLY\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"The ideal candidate is smart, organized, detail-oriented and has a sense of urgency.  This position requires an individual who is motivated, proactive and will follow through. Excellent communication skills and ability to handle several projects simultaneously is key. Requires excellent judgment and the ability to work independently.  Must handle confidential information with discretion. Strong computer skills including Microsoft, Outlook, PowerPoint, Word and Excel required. B.S. Degree is preferred with 5 years of experience.\",\n                    \"description\": \"Challenging opportunity for an experienced Administrative/Executive Assistant to Jenn's Vet.  You will provide direct support to a busy General Manager in this dynamic environment.  \\r\\n\\r\\nResponsibilities include calendar management, coordination of meetings, drafting letters and correspondence, frequent interaction with clients, senior management and staff, maintaining databases, creating spreadsheets and presentations, conducting research projects and compiling reports, other special projects, and managing day-to-day activities.\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2010-03-05\",\n                    \"post_id\": \"19\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": 0,\n                        \"city\": \"Wilton\",\n                        \"zip\": \"02204\",\n                        \"address1\": \"1 Horse Farm Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"category\": \"Agriculture, Forestry, & Fishing\",\n                    \"type\": \"Direct\",\n                    \"id\": \"19\",\n                    \"company\": \"Jenn's Vet\"\n                },\n                {\n                    \"pay_rate\": \"0 USD / HOUR\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"Graphic Designer with extensive experience in poster and advertisement development.\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2013-02-13\",\n                    \"post_id\": \"20\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Peterborough\",\n                        \"zip\": \"02203\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Graphic Designer\",\n                    \"category\": \"Creative/Design\",\n                    \"type\": \"Temp/Contract\",\n                    \"id\": \"20\",\n                    \"company\": \"New Horizon Inc\"\n                },\n                {\n                    \"pay_rate\": \"20 USD / HOUR\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"You must have a strong desire and commitment to success, be likeable, and have excellent communication skills. Demonstrated success selling business services to top executives a plus. You should also have success selling services viewed as a commodity in a competitive market where you must take business away from incumbents. Youâ\\u0080\\u0099re a self-starter and persuasive, and you have strong closing skills. You should be goal oriented.\\r\\n \\r\\nKnowledge of SaaS, Cloud-based software, CRM, ERP, and/or Staffing/Recruiting Software a plus but not required. Experience with recruiting, consulting, HR, IT professional services, or staffing/recruiting industry also a plus. Must have prior earnings of at least $50,000 and strong desire to earn well over $100,000 annually, within twelve months.\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2013-11-21\",\n                    \"post_id\": \"23\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tyngsboro\",\n                        \"zip\": \"01879\",\n                        \"address1\": \"4321 Apple Street\",\n                        \"address2\": \"Suite A\",\n                        \"state\": \"MA\"\n                    },\n                    \"title\": \"National Account Manager\",\n                    \"category\": \"Sales\",\n                    \"type\": \"Temp/Contract\",\n                    \"id\": \"23\",\n                    \"company\": \"Michael Laskow\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"HRM Employee List Lookup GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.043988\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-08T23:24:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"13 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMEmployeeList/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=lstatus ne 'DA' and lstatus ne 'INACTIVE' and username eq '1'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"7.410332\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"13 jobs returned\"\n}"}],"_postman_id":"5a487b0f-c4d9-47c8-a763-5424c79f5214"},{"name":"Job Get By ID","id":"c0ef69bd-a69e-425d-9c9f-ba6fb2fb4380","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 0,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 378339\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - job ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 2\n    }\n  }\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"23d1dc5f-2d12-4647-a8ac-dcb2f0fe9d04","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 4\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 23:33:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1109"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"111438"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"\",\n                    \"description\": \"\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-24\",\n                    \"post_id\": \"4\",\n                    \"rep_user\": {\n                        \"email\": \"jbert@necompany.akken.com\",\n                        \"firstName\": \"Jennifer\",\n                        \"id\": \"4\",\n                        \"lastName\": \"Bert\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Wilton\",\n                        \"zip\": \"02204\",\n                        \"address1\": \"1 Horse Farm Road\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Assistant\",\n                    \"category\": \"Agriculture, Forestry, & Fishing\",\n                    \"type\": \"Direct\",\n                    \"id\": \"4\",\n                    \"company\": \"Jenn's Vet\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"HRM Employee List Lookup GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.043303\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-08T23:33:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMEmployeeList/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=lstatus ne 'DA' and lstatus ne 'INACTIVE' and username eq '4'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.463379\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"c0ef69bd-a69e-425d-9c9f-ba6fb2fb4380"},{"name":"Job Search","id":"8a2630aa-8420-48eb-b94e-c1b5e9873425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"company\": \"Marquette Financial\",\r\n        \"status\": \"Open\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<ul>\n<li>status - <b>OPTIONAL</b> - job status</li>\n<li>category - <b>OPTIONAL</b> - job category</li>\n<li>company - <b>OPTIONAL</b> - job company</li>\n<li>type - <b>OPTIONAL</b> - job type</li>\n<li>hot_job - <b>OPTIONAL</b> - Hot Job (either \"Y\" or \"N\")</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"company\": \"Marquette Financial\"\n    }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0658e086-d111-445a-b256-4899f1d959ac","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"company\": \"Marquette Financial\",\r\n        \"status\": \"Open\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 23:39:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1764"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"111447"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 2,\n            \"count\": 2,\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"requirements\": \"The ideal candidate is smart, organized, detail-oriented and has a sense of urgency.  This position requires an individual who is motivated, proactive and will follow through. Excellent communication skills and ability to handle several projects simultaneously is key. Requires excellent judgment and the ability to work independently.  Must handle confidential information with discretion. Strong computer skills including Microsoft, Outlook, PowerPoint, Word and Excel required. B.S. Degree is preferred with 5 years of experience.\",\n                    \"description\": \"Challenging opportunity for an experienced Administrative/Executive Assistant.  You will provide direct support to a busy General Manager in this dynamic environment.  \\r\\n\\r\\nResponsibilities include calendar management, coordination of meetings, drafting letters and correspondence, frequent interaction with clients, senior management and staff, maintaining databases, creating spreadsheets and presentations, conducting research projects and compiling reports, other special projects, and managing day-to-day activities.\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-24\",\n                    \"post_id\": \"5\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"title\": \"Administrative Position\",\n                    \"category\": \"\",\n                    \"type\": \"Temp/Contract to Direct\",\n                    \"id\": \"5\",\n                    \"company\": \"Marquette Financial\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Open\",\n                    \"hot_job\": \"N\",\n                    \"date_added\": \"2008-07-25\",\n                    \"post_id\": \"8\",\n                    \"rep_user\": {\n                        \"email\": \"rameshcv@rameshcompany.akken.com\",\n                        \"firstName\": \"Ramesh\",\n                        \"id\": \"1\",\n                        \"lastName\": \"Vempati\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Portsmouth\",\n                        \"zip\": \"03801\",\n                        \"address1\": \"Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NH\"\n                    },\n                    \"title\": \"Admin Assistant\",\n                    \"id\": \"8\",\n                    \"type\": \"Temp/Contract\",\n                    \"category\": \"Advertising/Marketing/Public Relations\",\n                    \"company\": \"Marquette Financial\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"HRM Employee List Lookup GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.045938\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-08T23:39:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"akken\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://openapi.akken.com/AkkenAPI/Prod/V1/HRMEmployeeList/?app_grant=openapi&access_token=xxxxxxxxxxxxxxxx=lstatus ne 'DA' and lstatus ne 'INACTIVE' and username eq '1'\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"1.808008\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"2 jobs returned\"\n}"}],"_postman_id":"8a2630aa-8420-48eb-b94e-c1b5e9873425"}],"id":"88bf653b-f606-4916-957f-ffc60764edb9","event":[{"listen":"prerequest","script":{"id":"024019db-b276-4a73-b794-f71dce53b7b9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2672eb82-8dc4-4e1f-9d1f-b22e51dd0d7c","type":"text/javascript","exec":[""]}}],"_postman_id":"88bf653b-f606-4916-957f-ffc60764edb9","description":""},{"name":"Note","item":[{"name":"Note Set","id":"b78d8123-c3a4-4915-a867-e06c3b5ce08e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": \"cand844\",\r\n        \"comments\": \"This is a test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<ul>\n<li><p>ID - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>comments - <strong>REQUIRED</strong> - note being set</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"cand844\",\n        \"comments\": \"This is a test\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"749ea5a8-8fd2-4eeb-9d49-9e28ad02044a","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": 100033296,\r\n        \"name\": \"Interview\",\r\n        \"comments\": \"This is a test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Oct 2022 14:17:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"498"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"856460"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-10-17T14:17:08\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-10-17T14:17:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"akken\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"password\\\",\\\"Password\\\":\\\"xxxxxxxxxxxxxxxx\\\",\\\"app_grant\\\":\\\"openapi\\\",\\\"Username\\\":\\\"openapi\\\",\\\"APIKey\\\":\\\"xxxxxxxxxxxxxxxx\\\"}\",\n            \"call\": \"https://openauth.akken.com/authenticate\"\n        },\n        \"vendor\": \"akken\",\n        \"elapsed\": \"0.855649\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"b78d8123-c3a4-4915-a867-e06c3b5ce08e"}],"id":"dde558ab-6d2c-4f18-91b1-36cc77db8075","event":[{"listen":"prerequest","script":{"id":"ad1039e0-bbc3-47d2-a021-bd2f29c5c707","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12ec5710-5e3c-4df2-ad4a-dfafbed43485","type":"text/javascript","exec":[""]}}],"_postman_id":"dde558ab-6d2c-4f18-91b1-36cc77db8075","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"7ce26d22-8fe8-4db5-8baf-88320decbedd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{akken_api_id}}\",\r\n      \"api_secret\": \"{{akken_api_secret}}\",\r\n      \"api_pw\": \"{{akken_api_pw}}\",\r\n      \"api_un\": \"{{akken_api_un}}\"\r\n    },\r\n    \"vendor\": \"akken\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ce26d22-8fe8-4db5-8baf-88320decbedd"}],"id":"b8feba84-6fe7-491c-bd43-cab8c3be6a0e","event":[{"listen":"prerequest","script":{"id":"bfa39f8b-550c-4ec0-a386-b3ffe6e75b75","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ccef6a4f-8de8-468f-a7ce-f1eeddf2dacd","type":"text/javascript","exec":[""]}}],"_postman_id":"b8feba84-6fe7-491c-bd43-cab8c3be6a0e","description":""}],"id":"2a2a887b-62c2-4ac9-b567-a48d9c5a6596","_postman_id":"2a2a887b-62c2-4ac9-b567-a48d9c5a6596","description":""},{"name":"AtWork","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"3644dd86-5b69-48a2-87b6-7cef5f70c711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow for subsequent successful API calls. <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_url - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_pw - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_id - API ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>dbcode - <strong>REQUIRED</strong> - database code</p>\n</li>\n<li><p>api_secret - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_connection\":\n      \"api_url\": \"{{atwork_api_url}}\",\n      \"api_secret\": \"{{atwork_api_pw}}\",\n      \"api_id\": \"{{atwork_api_id}}\",\n      \"api_db_code\": \"{{atwork_dbcode}}\",\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\n    }\n\n</code></pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5fe8093c-8da0-41a1-ab4d-9fa587ae6953","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 21:42:09 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"230"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34524"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"AWBaseApiUrl\": \"https://system.atwork.com/OnLineApp/api/\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.019315\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"3644dd86-5b69-48a2-87b6-7cef5f70c711"}],"id":"6027e6be-7906-4437-856c-11667c9d02ce","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"6027e6be-7906-4437-856c-11667c9d02ce"},{"name":"Application","item":[{"name":"Application Get","id":"e485b4b8-649c-4939-8b71-b2bcf59fcc5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9fd900bf-6f96-4316-bba5-6452d48a50ae","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:52:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"348"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2744"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:52:19\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:52:19\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.02331\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e485b4b8-649c-4939-8b71-b2bcf59fcc5b"},{"name":"Application Get By ID","id":"2409d1f6-c4ea-4ce2-bd2f-eb6288ef913b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n\n</code></pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"90c7fd54-7f35-4901-b590-05b621e7c937","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:52:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"349"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2747"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:52:50\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:52:50\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.023763\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"2409d1f6-c4ea-4ce2-bd2f-eb6288ef913b"},{"name":"Application Set","id":"65b25b4d-e7f6-4390-ab01-ea042250545d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p><strong>Not Implemented</strong></p>\n","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1fc4310e-bb37-4671-836a-5ff94b0b03a3","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:53:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"351"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35401"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:53:13\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:53:14\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.023129\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"65b25b4d-e7f6-4390-ab01-ea042250545d"}],"id":"971d4eaa-8d4d-436c-a623-d6dacd99dd60","_postman_id":"971d4eaa-8d4d-436c-a623-d6dacd99dd60","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"7687fa4c-0eac-4160-a935-6eef4b80ae92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"48d41332-7e9a-46a6-a872-9c8c52be06ef","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:53:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"347"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2750"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:53:55\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:53:55\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.022697\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"7687fa4c-0eac-4160-a935-6eef4b80ae92"},{"name":"Candidate Set","event":[{"listen":"test","script":{"id":"66d2d78a-a99d-42eb-b820-d30a92974515","exec":["pm.test(\"Overall status is successful\", function () {","    pm.expect(pm.response.json().atsconnect_status).to.eql(1);","    pm.expect(pm.response.json().api_response.api_status).to.eql(1);","    pm.expect(pm.response.json().api_response.api_xstatus).to.eql(\"200 OK\");","    pm.expect(pm.response.json().atsconnect_message).to.eql(\"200 OK\");","});","","pm.test(\"Candidate ID extraction\", function () {","    const candidateId = pm.response.json().api_response.api_data.id;","    pm.expect(candidateId).to.exist; // Ensure candidate ID exists","    pm.expect(candidateId).to.be.a('string'); // Ensure it's a string","    const requestValues = JSON.parse(pm.response.json().atsconnect_ticket.request.values);","    pm.expect(requestValues.applicant_id).to.eql(candidateId);","});","","pm.test(\"Endpoint/method correctness\", function () {","    pm.expect(pm.response.json().api_response.api_log.CALL_REQUEST).to.eql(\"Candidate SET\");","    pm.expect(pm.response.json().atsconnect_ticket.request.call).to.include(\"/api/applicants/TA/\");","});","","pm.test(\"Field mapping validation\", function () {","    const requestBody = JSON.parse(pm.request.body.raw).api_request_data.api_request_query;","    const responseValues = JSON.parse(pm.response.json().atsconnect_ticket.request.values);","","    const expectedMapping = {","        first_name: requestBody.first_name,","        last_name: requestBody.last_name,","        email: requestBody.email,","        state: requestBody.state,","        city: requestBody.city,","        zip: requestBody.zip,","        address1: requestBody.address1,","        mobile_phone: requestBody.cell_phone,","        source: requestBody.referral_source,","        branch: requestBody.branch,","        country: requestBody.country,","        opt_in_text: \"N\", // Default value","        middle_name: \"\"   // Default value","    };","","    pm.expect(responseValues).to.include(expectedMapping);","});","","pm.test(\"Logging expectations\", function () {","    const log = pm.response.json().api_response.api_log;","    pm.expect(log.MESSAGE).to.eql(\"Success\");","    pm.expect(log.VENDOR).to.eql(\"atwork\");","    pm.expect(log.CALL_STATUS).to.eql(1);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"19446dcb-767c-433b-b9c8-6c598b84c7da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"testonly343232245555@mailinator.com\",\r\n        \"first_name\":\"Tester\",\r\n        \"last_name\":\"McTESTERTON\",\r\n        \"state\": \"DE\",\r\n        \"cell_phone\":\"119.104.7000\",\r\n        \"address1\": \"800 Teny Rd\",\r\n        \"zip\": 12149,\r\n        \"country\": \"United States of America\",        \r\n        \"city\": \"Balcony\",\r\n        \"branch\": 997,\r\n        \"referral_source\":\"Indeed\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>REQUIRED</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>branch - <strong>REQUIRED</strong> (997 or 998)</p>\n</li>\n<li><p>opt_out - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>job -&gt; id - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bcce5bdc-c2c6-4be4-82b8-669ac5bd6156","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_client_id\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"aap23.fffff09@mailinator.com\",\r\n        \"first_name\":\"Ronnie\",\r\n        \"last_name\":\"McTESTERTON\",\r\n        \"state\": \"DE\",\r\n        \"cell_phone\":\"119.104.7000\",\r\n        \"address1\": \"800 Teny Rd\",\r\n        \"zip\": 12149,\r\n        \"country\": \"United States of America\",        \r\n        \"city\": \"Balcony\",\r\n        \"branch\": 997,\r\n        \"referral_source\":\"indeed\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Dec 2024 23:13:27 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"580"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"500724"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"768\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"10.784429\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2024-12-18T23:13:38\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"atwork\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"country\\\":\\\"United States of America\\\",\\\"source\\\":\\\"indeed\\\",\\\"branch\\\":997,\\\"last_name\\\":\\\"McTESTERTON\\\",\\\"state\\\":\\\"DE\\\",\\\"email\\\":\\\"aap23.fffff09@mailinator.com\\\",\\\"city\\\":\\\"Balcony\\\",\\\"zip\\\":12149,\\\"address1\\\":\\\"800 Teny Rd\\\",\\\"mobile_phone\\\":\\\"119.104.7000\\\",\\\"first_name\\\":\\\"Ronnie\\\"}\",\n            \"call\": \"https://dev.gfsw.com/OnLineApp/api/applicants/TA/iD6hisyso5Fb37L\"\n        },\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"10.862653\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"19446dcb-767c-433b-b9c8-6c598b84c7da"},{"name":"Candidate Update","id":"6ee5be5f-54d4-40a0-8b95-3b54593b2d6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 644,\r\n        \"last_name\":\"McTester\",\r\n        \"state\": \"MD\",\r\n        \"zip\": \"05121\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>branch - <strong>OPTIONAL</strong> (997 or 998)</p>\n</li>\n<li><p>opt_out - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>job -&gt; id - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8167e99e-4855-4e06-a8cc-4df805f7b751","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_client_id\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 644,\r\n        \"last_name\":\"McTester\",\r\n        \"state\": \"MD\",\r\n        \"zip\": \"05121\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Dec 2024 23:18:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"459"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"500730"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"644\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.160994\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-12-18T23:18:50\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"atwork\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"zip\\\":\\\"05121\\\",\\\"applicant_id\\\":644,\\\"last_name\\\":\\\"McTester\\\",\\\"state\\\":\\\"MD\\\"}\",\n            \"call\": \"https://dev.gfsw.com/OnLineApp/api/applicants/TA/iD6hisyso5Fb37L/644\"\n        },\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"1.237926\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"6ee5be5f-54d4-40a0-8b95-3b54593b2d6c"},{"name":"Candidate Get By ID","id":"4b1c3416-0063-4a05-88fb-7b81ba820029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 9999\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ad4cc707-3a8b-48f2-82f1-ef52e8a274b2","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 9999\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:54:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"346"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2753"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:54:59\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:54:59\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.022395\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"4b1c3416-0063-4a05-88fb-7b81ba820029"},{"name":"Candidate Set Education","id":"14a16b13-b8ef-424f-b640-cc775b40951d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2411381a-09a0-4abc-b5c0-55281870af8d","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:55:36 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"354"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2756"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:55:36\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:55:36\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.00416\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"14a16b13-b8ef-424f-b640-cc775b40951d"},{"name":"Candidate Get Education","id":"e4ec31ab-ce36-4f7c-bf36-3842c272054f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"118555f4-e670-40cc-b0ae-a78a7f496c0f","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:56:03 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"355"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35407"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:56:03\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:56:03\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.004099\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e4ec31ab-ce36-4f7c-bf36-3842c272054f"},{"name":"Candidate Set Work History","id":"67c2b0e6-00e1-4d2a-af6c-44824ae15bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5adab9d2-d34d-4b4a-ae9f-0bd817762d09","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n       \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:56:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"358"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35410"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:56:31\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:56:31\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.004258\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"67c2b0e6-00e1-4d2a-af6c-44824ae15bd9"},{"name":"Candidate Get Work History","id":"a4ce08fd-0a6b-4d93-a1f0-d378ae982408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fde2e3ed-3393-4777-9d84-aac579374ead","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:57:03 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"357"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2759"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:57:03\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:57:03\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.004114\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a4ce08fd-0a6b-4d93-a1f0-d378ae982408"}],"id":"ef751c8a-7ef2-4754-9321-8134144b2e29","_postman_id":"ef751c8a-7ef2-4754-9321-8134144b2e29","description":""},{"name":"Custom","item":[{"name":"Custom","id":"64a71010-d29b-46ea-9e68-f954e3f54ccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to Ceipal via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f5a5443e-1ac7-4289-bdd4-a92088bc3c83","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:57:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"343"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35413"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:57:45\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:57:45\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.004055\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"64a71010-d29b-46ea-9e68-f954e3f54ccc"}],"id":"33e8cad2-e11d-4373-9ba7-421feac0be4e","_postman_id":"33e8cad2-e11d-4373-9ba7-421feac0be4e","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"daa0d660-ec49-4dde-9ed8-62be860768eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_url\": \"{{atwork_api_url}}\",\n      \"api_secret\": \"{{atwork_api_pw}}\",\n      \"api_id\": \"{{atwork_api_id}}\",\n      \"api_db_code\": \"{{atwork_dbcode}}\",\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\n    },\n    \"vendor\": \"atwork\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": \"644\",\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n            \"file_name\": \"Resume-04-11-2024.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"dd86f045-ef08-49af-8473-ccde81f65d16","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_url\": \"{{atwork_api_url}}\",\n      \"api_secret\": \"{{atwork_api_pw}}\",\n      \"api_id\": \"{{atwork_api_id}}\",\n      \"api_db_code\": \"{{atwork_dbcode}}\",\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\n    },\n    \"vendor\": \"atwork\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": \"644\",\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n            \"file_name\": \"Resume-04-11-2024.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 20 Dec 2024 21:36:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"68198"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2785448"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"644\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.981233\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2024-12-20T21:36:47\",\n            \"APIKEY\": \"OmlENmhpc3lzbzVGYjM3TA==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"atwork\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"File uploaded\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"content_sub_type\\\":\\\"pdf\\\",\\\"name\\\":\\\"Resume-04-11-2024\\\",\\\"contents\\\":\\\"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\\\",\\\"type\\\":\\\"RESUME\\\"}\",\n            \"call\": \"https://dev.gfsw.com/OnLineApp/api/applicants/TA/iD6hisyso5Fb37L/644/files\"\n        },\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"1.062075\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"File uploaded\"\n}"}],"_postman_id":"daa0d660-ec49-4dde-9ed8-62be860768eb"}],"id":"d805179b-49de-458a-832e-a3edee8cb8d4","_postman_id":"d805179b-49de-458a-832e-a3edee8cb8d4","description":""},{"name":"Job","item":[{"name":"Job Get","event":[{"listen":"test","script":{"id":"9e755128-cae1-4ee8-949c-44a90a11c55b","exec":["// ============================================================","// ATSConnect AtWork Jobs GET - Automated Test Script (Postman)","// ============================================================","","// Parse response","const response = pm.response.json();","","// Test Suite: Overall Status & Messaging","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"atsconnect_status equals 1 (success)\", function () {","    pm.expect(response.atsconnect_status).to.eql(1);","});","","pm.test(\"api_response.api_status equals 1 (success)\", function () {","    pm.expect(response.api_response.api_status).to.eql(1);","});","","pm.test(\"api_log.CALL_STATUS equals 1\", function () {","    pm.expect(response.api_response.api_log.CALL_STATUS).to.eql(1);","});","","pm.test(\"api_log.CALL_ATTEMPTS equals 1 (no retries)\", function () {","    pm.expect(response.api_response.api_log.CALL_ATTEMPTS).to.eql(1);","});","","pm.test(\"api_log.CALL_REQUEST equals 'Jobs GET'\", function () {","    pm.expect(response.api_response.api_log.CALL_REQUEST).to.eql(\"Jobs GET\");","});","","pm.test(\"api_log.CALL_ACTION equals 'GET'\", function () {","    pm.expect(response.api_response.api_log.CALL_ACTION).to.eql(\"GET\");","});","","pm.test(\"api_log.VENDOR equals 'atwork'\", function () {","    pm.expect(response.api_response.api_log.VENDOR).to.eql(\"atwork\");","});","","pm.test(\"atsconnect_message equals '31 jobs returned'\", function () {","    pm.expect(response.atsconnect_message).to.eql(\"31 jobs returned\");","});","","pm.test(\"api_xstatus equals '31 jobs returned'\", function () {","    pm.expect(response.api_response.api_xstatus).to.eql(\"31 jobs returned\");","});","","pm.test(\"api_log.MESSAGE equals 'Success'\", function () {","    pm.expect(response.api_response.api_log.MESSAGE).to.eql(\"Success\");","});","","// Test Suite: Endpoint Correctness","pm.test(\"atsconnect_ticket.fn equals '_api_job'\", function () {","    pm.expect(response.atsconnect_ticket.fn).to.eql(\"_api_job\");","});","","pm.test(\"atsconnect_ticket.vendor equals 'atwork'\", function () {","    pm.expect(response.atsconnect_ticket.vendor).to.eql(\"atwork\");","});","","pm.test(\"atsconnect_ticket.api_version is present and non-empty\", function () {","    pm.expect(response.atsconnect_ticket.api_version).to.be.a('string').and.not.empty;","});","","pm.test(\"atsconnect_ticket.request.call is a non-empty URL string\", function () {","    pm.expect(response.atsconnect_ticket.request.call).to.be.a('string').and.not.empty;","    pm.expect(response.atsconnect_ticket.request.call).to.match(/^https?:\\/\\//);","});","","pm.test(\"atsconnect_ticket.request.values is empty string (GET request)\", function () {","    pm.expect(response.atsconnect_ticket.request.values).to.eql(\"\");","});","","pm.test(\"atsconnect_ticket.elapsed is numeric and > 0\", function () {","    const elapsed = parseFloat(response.atsconnect_ticket.elapsed);","    pm.expect(elapsed).to.be.above(0);","});","","pm.test(\"atsconnect_ticket.key is present and non-empty\", function () {","    pm.expect(response.atsconnect_ticket.key).to.be.a('string').and.not.empty;","});","","// Test Suite: Payload Correctness (Jobs Array + Count)","pm.test(\"api_data.jobs is an array\", function () {","    pm.expect(response.api_response.api_data.jobs).to.be.an('array');","});","","pm.test(\"api_data.jobs array is not empty\", function () {","    pm.expect(response.api_response.api_data.jobs.length).to.be.above(0);","});","","pm.test(\"api_data.count is present and numeric\", function () {","    const count = response.api_response.api_data.count;","    pm.expect(count).to.exist;","    const numericCount = parseInt(count);","    pm.expect(numericCount).to.be.a('number').and.to.be.above(0);","});","","pm.test(\"Jobs array length matches count field\", function () {","    const actualCount = response.api_response.api_data.jobs.length;","    const reportedCount = parseInt(response.api_response.api_data.count);","    pm.expect(actualCount).to.eql(reportedCount, ","        `Expected ${reportedCount} jobs but got ${actualCount}`);","});","","pm.test(\"atsconnect_message matches job count\", function () {","    const jobCount = response.api_response.api_data.jobs.length;","    const expectedMessage = `${jobCount} jobs returned`;","    pm.expect(response.atsconnect_message).to.eql(expectedMessage);","});","","pm.test(\"api_xstatus matches job count\", function () {","    const jobCount = response.api_response.api_data.jobs.length;","    const expectedStatus = `${jobCount} jobs returned`;","    pm.expect(response.api_response.api_xstatus).to.eql(expectedStatus);","});","","// Test Suite: Per-Job Schema Validation","const jobs = response.api_response.api_data.jobs;","","pm.test(\"All jobs have required fields with correct types\", function () {","    jobs.forEach((job, index) => {","        pm.expect(job.id, `Job ${index}: id`).to.be.a('string').and.not.empty;","        pm.expect(job.title, `Job ${index}: title`).to.be.a('string').and.not.empty;","        pm.expect(job.description, `Job ${index}: description`).to.be.a('string');","        pm.expect(job.branch, `Job ${index}: branch`).to.be.a('string').and.not.empty;","        pm.expect(job.job_db, `Job ${index}: job_db`).to.eql(\"TA\");","        pm.expect(job.date_added, `Job ${index}: date_added`).to.match(/^\\d{4}-\\d{2}-\\d{2}$/);","        pm.expect(job.type, `Job ${index}: type`).to.be.a('string').and.not.empty;","        ","        // Address validation","        pm.expect(job.address, `Job ${index}: address`).to.be.an('object');","        pm.expect(job.address.country, `Job ${index}: address.country`).to.be.a('string');","        pm.expect(job.address.city, `Job ${index}: address.city`).to.be.a('string');","        pm.expect(job.address.state, `Job ${index}: address.state`).to.be.a('string');","        pm.expect(job.address.zip, `Job ${index}: address.zip`).to.be.a('string');","        ","        // rep_user validation","        pm.expect(job.rep_user, `Job ${index}: rep_user`).to.be.an('object');","        pm.expect(job.rep_user).to.have.property('email');","        pm.expect(job.rep_user).to.have.property('first_name');","        pm.expect(job.rep_user).to.have.property('last_name');","    });","});","","// Test Suite: Spot-Check Known Fixtures","pm.test(\"Fixture 1: Job TA-000171 (Assembly) has correct data\", function () {","    const job1 = jobs.find(j => j.id === \"TA-000171\");","    pm.expect(job1).to.exist;","    pm.expect(job1.title).to.eql(\"Assembly\");","    pm.expect(job1.branch).to.eql(\"997\");","    pm.expect(job1.job_db).to.eql(\"TA\");","    pm.expect(job1.address.city).to.eql(\"READING\");","    pm.expect(job1.address.state).to.eql(\"TN\");","    pm.expect(job1.rep_user.email).to.eql(\"abollinger@atwork.com\");","});","","pm.test(\"Fixture 2: Job TA-000183 (Assembly Line) has correct data\", function () {","    const job2 = jobs.find(j => j.id === \"TA-000183\");","    pm.expect(job2).to.exist;","    pm.expect(job2.title).to.eql(\"Assembly Line\");","    pm.expect(job2.branch).to.eql(\"997\");","    pm.expect(job2.address.city).to.eql(\"Neverland\");","});","","pm.test(\"Fixture 3: Job TA-000187 (Chula Vista) has correct data\", function () {","    const job3 = jobs.find(j => j.id === \"TA-000187\");","    pm.expect(job3).to.exist;","    pm.expect(job3.title).to.include(\"Chula Vista\");","    pm.expect(job3.address.state).to.eql(\"CA\");","    pm.expect(job3.address.zip).to.eql(\"91911\");","});","","// Test Suite: Logging Expectations","pm.test(\"api_log.TIMESTAMP is present and ISO-like\", function () {","    pm.expect(response.api_response.api_log.TIMESTAMP).to.match(/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}$/);","});","","pm.test(\"api_log.CALL_TIME is numeric and > 0\", function () {","    const callTime = parseFloat(response.api_response.api_log.CALL_TIME);","    pm.expect(callTime).to.be.above(0);","});","","pm.test(\"api_log.APIKEY is present (obfuscated)\", function () {","    pm.expect(response.api_response.api_log.APIKEY).to.be.a('string').and.not.empty;","});","","// Test Suite: Security Assertions","pm.test(\"SECURITY: No raw secrets leaked in response\", function () {","    const responseStr = JSON.stringify(response);","    ","    // Get raw credential values from environment (these should NOT appear in response)","    const secrets = [","        pm.environment.get(\"atwork_api_pw\"),","        pm.environment.get(\"atwork_api_id\"),","        pm.environment.get(\"atwork_dbcode\"),","        pm.environment.get(\"atwork_dbcode_pw\")","    ].filter(s => s && s.length > 0); // Only check non-empty secrets","    ","    secrets.forEach(secret => {","        pm.expect(responseStr).to.not.include(secret, `Raw secret value found in response: ${secret.substring(0, 3)}***`);","    });","});","","pm.test(\"SECURITY: No verbose dump present (api_verbose_dump=0)\", function () {","    pm.expect(response).to.not.have.property('api_verbose_output');","    pm.expect(response).to.not.have.property('debug_info');","});","","pm.test(\"SECURITY: No performance dump present (api_performance_dump=0)\", function () {","    pm.expect(response).to.not.have.property('api_performance_metrics');","    pm.expect(response).to.not.have.property('performance_data');","});","","pm.test(\"SECURITY: APIKEY appears only in api_log (not duplicated)\", function () {","    const responseStr = JSON.stringify(response);","    const apiKey = response.api_response.api_log.APIKEY;","    ","    // Count occurrences (should be exactly 1)","    const occurrences = (responseStr.match(new RegExp(apiKey.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&'), 'g')) || []).length;","    pm.expect(occurrences).to.eql(1, \"APIKEY should appear exactly once in response\");","});","","// Test Suite: Request Validation (Preconditions)","pm.test(\"REQUEST: Vendor is 'atwork'\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_connect_data.vendor).to.eql(\"atwork\");","});","","pm.test(\"REQUEST: api_sandbox is 1\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_connect_data.api_sandbox).to.eql(1);","});","","pm.test(\"REQUEST: api_verbose_dump is 0\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_connect_data.api_verbose_dump).to.eql(0);","});","","pm.test(\"REQUEST: api_performance_dump is 0\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_connect_data.api_performance_dump).to.eql(0);","});","","pm.test(\"REQUEST: api_request_fields is 'job_db'\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_request_data.api_request_fields).to.eql(\"job_db\");","});","","pm.test(\"REQUEST: api_request_query is empty object\", function () {","    const requestBody = JSON.parse(pm.request.body.raw);","    pm.expect(requestBody.api_request_data.api_request_query).to.be.an('object').and.empty;","});","","// Summary","console.log(\"✅ ATSConnect AtWork Jobs GET Test Suite Complete\");","console.log(`   Total Jobs Returned: ${jobs.length}`);","console.log(`   Total Jobs Available: ${response.api_response.api_data.count}`);","console.log(`   Execution Time: ${response.atsconnect_ticket.elapsed}s`);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"97d9b37c-5fe8-4127-b7b9-c41656c26059","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_db\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  {\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_url\": \"{{atwork_api_url}}\",\n      \"api_pw\": \"{{atwork_api_pw}}\",\n      \"api_id\": \"{{atwork_api_id}}\",\n      \"api_db_code\": \"{{atwork_dbcode}}\",\n      \"api_client_id\": \"{{atwork_dbcode_pw}}\"\n    },\n    \"vendor\": \"atwork\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 0,\n    \"api_verbose_dump\": 0\n  },\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n}\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"74dfb967-9f7b-4a26-8d6e-3d7995d6799b","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_client_id\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_db\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Dec 2024 21:25:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"4133"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"500689"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"description\": \"Do you enjoy seeing things come together. Do you like being apart of a bigger picture? Then this job may be for you! <br><br>We are looking for a friendly energetic individual to join our assembly team at a tier one facility!<br><br>Great benefits! <br><br>401k, PTO, Health insurance, birthday off and paid for, employee discounts<br><br>All three shifts available.<br><br>Pay: $12.00/hr<br><br>Job Duties:<br><br>Assembling electronical components<br><br>Requirements:<br><br>Reliable <br>No experience necessary, on the job training!<br>Be able to work 8-10 hours shifts<br>Available for overtime\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"id\": \"TA-000171\",\n                    \"type\": \"Temporary\",\n                    \"title\": \"Assembly\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"READING\",\n                        \"zip\": \"37918\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    }\n                },\n                {\n                    \"description\": \"Assembly Line Worker Needed. Weekly paycheck! Full benefits! No weekends! Quality of life!<br><br>Seeking an Assembly Line Worker. <br><br>-Previous line experience required<br>-Ability to stand for 6-8 hours<br>-Detail orientated<br>-Punctual<br><br>1st shift 7a-3p  $15/HR<br>2nd shift 12p-8p  $15/HR plus $1.50 shift premium<br>3rd shift 8p-12a  $15/HR plus $2.00 shift premium\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000183\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Assembly Line\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Neverland\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Warehouse Assistant needed at Reputable company with competitive wages! $500.00 dollar sign on bonus, plus weekly attendance bonus. Don't like standing in the same place for a long time? this is the job for you!<br><br>* Forklift experience preferred but, not required (company will certify)<br>*Reliable <br>*Ability to move around for long periods of time<br>* Able to lift 50lbs\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000179\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Warehouse Assistant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Hiring for a fork lift driver. <br><br>Company has breakfast on Fridays. They participate in many local events<br><br>- requires 3 years of fork lift driving <br>- must be US citizen<br>- must have driver's license<br>- reliable and responsible<br>-\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000182\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Fork Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Diego\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Love vintage finds? At Diosa Resale Company we are seeking a Product Display Specialist that is passionate about styling curated vintage clothing Have fun and get creative putting vintage thrifted items together and creating eye-catching content to post on our online boutique and social media sites. <br><br>Requirements:<br>-detail oriented<br>-out-of-the-box thinker<br>-tech savvy<br>-photograph experience\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000180\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"Product Display Specialist\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Do you love music and nifty merchandise? AtWork is actively seeking Sales Consultants who can thrive with a constantly growing company!<br><br>- Weekends off<br>- Room for growth<br>- New inventory always updated to keep it exciting<br>- Benefits\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-01-27\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000181\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Sales Consultant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37912\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Dummy JD\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-02-01\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000187\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Chula Vista company looking for a skilled Forklift\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"CA\",\n                        \"zip\": \"91911\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"CA\"\n                    }\n                },\n                {\n                    \"description\": \"Flexible work environment with a great family style atmosphere among co-workers. Enjoy your afternoon and weekends with your family with only a Monday - Friday schedule and no need to by special clothing, if you have jeans and a t-shirt, you can be ready to go! Competitive pay for the area at $15 per hour with opportunity for overtime.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-03-10\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000191\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Warehouse Worker\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morristown\",\n                        \"zip\": \"37701\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"razzle, dazzle\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-03-10\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000190\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Picker/Packer Warehouse Positions\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morristown\",\n                        \"zip\": \"37814\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Dog Lovers needed!\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-03-10\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000188\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"Administrative\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Drive around\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-05-05\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000201\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Forklift Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you tired of the summer heat? Do you like working in a cool environment with a flexible schedule allowing more time with your family? <br><br>We have the position you want!<br><br>1st shift with every other week off.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-06-08\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000205\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Forklift Op\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"FUN FUN FUN\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2022-08-29\",\n                    \"id\": \"TA-000214\",\n                    \"type\": \"Temporary\",\n                    \"title\": \"Customer Service Rep.\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    }\n                },\n                {\n                    \"description\": \"Loading/unloading packages from truck.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-03\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000241\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Loader/Unloader\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Seeing that the day to day production is meet.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-06\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000240\",\n                    \"type\": \"Temp to Hire\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Assembly Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morristown\",\n                        \"zip\": \"37813\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"sewing master, sewing sewing sewing blah blah blah\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-03\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000239\",\n                    \"type\": \"Temp to Hire\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Sewing Master\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37901\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Looking for a friendly individual to run a front office desk.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-03\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000238\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"RECEPTIONIST\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Join our committed site crew! If you enjoy working with large cats this place is for you.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-06\",\n                    \"rep_user\": {\n                        \"email\": \"mcospy@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Cameron\",\n                        \"last_name\": \"Work\"\n                    },\n                    \"id\": \"TA-000243\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Site Maintenance\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Redwood city\",\n                        \"zip\": \"94065\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"CA\"\n                    }\n                },\n                {\n                    \"description\": \"Working on the manufacturing production line and pulling laminated flooring of machine belt. <br><br>Requirements: Able to kneel, twist, turn and rotating, 10 lbs. max in weight.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-02-03\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000242\",\n                    \"type\": \"Temp to Hire\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"Laminating Tech\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kalamazoo\",\n                        \"zip\": \"49008\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"MI\"\n                    }\n                },\n                {\n                    \"description\": \"Are you interested in furthing your career as a Laminating Tech in the Blowmold MFG industry=.<br><br>We have the perfect job for you! <br><br>Contact us now!\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-08-24\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000277\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Laminating Tech\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"We are looking for a skilled Forklift Operator to join our team and contribute to our success.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-08-24\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000279\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Fork Lift Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Maryville\",\n                        \"zip\": \"37801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you interested in new flooring jobs available? <br>We have a great opportunity for you!<br>40 Hours a Week  <br>$16-18 an hour <br><br>Contact us now!\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-08-24\",\n                    \"rep_user\": {\n                        \"email\": \"abollinger@atwork.com\",\n                        \"id\": null,\n                        \"first_name\": \"Amy\",\n                        \"last_name\": \"Bollinger\"\n                    },\n                    \"id\": \"TA-000280\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Flooring Worker\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Maryville\",\n                        \"zip\": \"37803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"We are currently seeking a dedicated and detail-oriented Poultry Processing Technician to join our team. The ideal candidate will play a crucial role in our poultry processing operations by ensuring that chickens are processed efficiently and according to food safety regulations. This position involves working in a fast-paced environment, handling live chickens, and performing various tasks to prepare poultry products for distribution.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-08-24\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000278\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Killer of Chickens\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walland\",\n                        \"zip\": \"37886\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"kjokp[jpojijpoj\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-09-26\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000285\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Cherry Picker\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"KNOXVILLE\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you looking for a career change? Would you like a low stress work day? We are looking for a Housemen to help expand our team. Housemen will be responbile for the following. <br>Â\\u0095\\tPull bedding<br>Â\\u0095\\tEmpty Trash<br>Â\\u0095\\tAssist Manitenc<br>Â\\u0095\\tCleaning public Space<br>We do a company paid lunch every Friday\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-09-26\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000288\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Hospitality\",\n                    \"title\": \"Housemen\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"READING\",\n                        \"zip\": \"37918\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you looking for a new opportunity i<br><br>Are you looking for a new opportunity to work for an exiting organization?<br><br>We are looking for energetic people with in our accounting department.<br><br>\\tÂ\\u0095 Healthcare, Vision, Dental benefits. 401K, vacation pay.<br>\\tÂ\\u0095 Knowledgable experience team to mentor and guide you.\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-09-26\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000287\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Accounting & Finance\",\n                    \"title\": \"Accountant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you the type of person who..........\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2023-10-23\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000292\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"Warehouse Clerk\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"ARe you the type of person who enjoys??????<br><br>10 Hr Shifts<br>23.00 / Hr\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2024-06-28\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000300\",\n                    \"type\": \"Temp to Hire\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"Receptionist\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"kjerbvjkl DFNOa78ergv iufwripfogaerui fgklafhpg 98aeriugipergt\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2024-05-07\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000322\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Industrial\",\n                    \"title\": \"asfk; nafpgviuapefngipuoadsha\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Weld various metals using MIG, TIG, or Stick Welding\",\n                    \"branch\": \"997\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2024-12-01\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000331\",\n                    \"type\": \"Temp to Hire\",\n                    \"category\": \"Skilled Trade\",\n                    \"title\": \"Welder II\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37917\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"Are you the type of person that ejoy standing the heat and turn flags to safely kjaerhSHADGVUinqeargn v kjewrgpioaerhjngipuaertng;nadfbvhapeig\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2024-08-01\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000329\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"General - Flaggers\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"KNOXVILLE\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"description\": \"bnglvhjkrasfga klngvyhjkagifhl rsdfbuihjlfwryuifbasjklb fvoliashilwrc uiwuisdF LIAIPGH\",\n                    \"branch\": \"998\",\n                    \"job_db\": \"TA\",\n                    \"date_added\": \"2024-07-29\",\n                    \"rep_user\": {\n                        \"email\": \"\",\n                        \"id\": null,\n                        \"first_name\": \"\",\n                        \"last_name\": \"\"\n                    },\n                    \"id\": \"TA-000332\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Office & Administrative\",\n                    \"title\": \"Warehouse Clerk\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Knoxville\",\n                        \"zip\": \"37920\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"TN\"\n                    }\n                }\n            ],\n            \"count\": \"32\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.435304\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-12-18T21:25:09\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"atwork\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"32 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://dev.gfsw.com/OnLineApp/api/phenompeople/jobs/pkU7Dm30LwcQr\"\n        },\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.515915\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"32 jobs returned\"\n}"}],"_postman_id":"97d9b37c-5fe8-4127-b7b9-c41656c26059"},{"name":"Job Get By ID","id":"72f12065-0617-4581-b4cf-777dc6502282","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p><strong>Not Implemented</strong></p>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b6bee24a-cd05-4c0e-8cd8-47103d5893f4","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Dec 2024 21:20:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"414"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2818272"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-12-18T21:20:24\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-12-18T21:20:24\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"e3thdHdvcmtfYXBpX3VufX06cGtVN0RtMzBMd2NRcg==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"id\": 9999\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.05117\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"72f12065-0617-4581-b4cf-777dc6502282"}],"id":"b2a5e802-6687-40e3-b71a-5dd9777a72bf","_postman_id":"b2a5e802-6687-40e3-b71a-5dd9777a72bf","description":""},{"name":"Note","item":[{"name":"Note Set","id":"a2398f9f-3840-40c1-9105-8430b0db4925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c026aaf5-ee2c-491b-8e27-ec3e8553f126","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{atwork_api_un}}\",\r\n      \"api_pw\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 22:59:43 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"343"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2765"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T22:59:43\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T22:59:43\",\n            \"APIKEY\": \"OnBrVTdEbTMwTHdjUXI=\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.004204\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a2398f9f-3840-40c1-9105-8430b0db4925"}],"id":"6b0d3cb4-c680-4346-ad0e-c268f9da7cbd","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"6b0d3cb4-c680-4346-ad0e-c268f9da7cbd","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"3bb2b02e-ec2c-46d7-9898-497018f4e7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_url\": \"{{atwork_api_url}}\",\r\n      \"api_secret\": \"{{atwork_api_pw}}\",\r\n      \"api_id\": \"{{atwork_api_id}}\",\r\n      \"api_db_code\": \"{{atwork_dbcode}}\",\r\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2c04f142-4e24-40b8-be00-e66beb34d4b8","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"atwork\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Sep 2023 23:00:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"376"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35419"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-12T23:00:07\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-12T23:00:07\",\n            \"APIKEY\": \"e3tfYXBpX3VzZXJfbmFtZX19Ont7X2FwaV91c2VyX3Bhc3N9fQ==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"atwork\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"atwork\",\n        \"elapsed\": \"0.005853\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"3bb2b02e-ec2c-46d7-9898-497018f4e7ff"}],"id":"75b9bc33-a6f8-4ca9-9b0c-6aeee10a4487","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"75b9bc33-a6f8-4ca9-9b0c-6aeee10a4487","description":""}],"id":"62c00be2-3cd4-4cfa-b756-6397f3afa649","description":"<p>AtWork</p>\n<p>Overview</p>\n<p>This integration is fairly limited. It only supports,* authorization, setting candidates and retrieving jobs</p>\n","event":[{"listen":"prerequest","script":{"id":"7b9c071d-aaea-4ffe-989c-09555cd74c32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43e9e9bd-22af-4382-a723-77f164175720","type":"text/javascript","exec":[""]}}],"_postman_id":"62c00be2-3cd4-4cfa-b756-6397f3afa649"},{"name":"Avionte BOLD","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"a87deecd-40ae-4858-be8c-608f8d4b223b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow for subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_id - Your Avionte BOLD Client ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_secret - Your Avionte BOLD Client Secret - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your Avionte BOLD Web Apply API Key - <b>REQUIRED</b></p>\n</li>\n<li><p>api_site_name - Your Avionte BOLD Tenant ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b2e631b4-d01c-4261-a4fb-55d493db9397","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 18:54:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1105"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10700"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"ABAccessToken\": \"xxxxxxxxxxxxxx\",\n            \"ABBaseApiUrl\": \"https://partner-api.avionte.com/\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Auth Code\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.898444\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-09-26T18:54:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"client_credentials\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"partner.api.haleymarketing\\\",\\\"scope\\\":\\\"avionte.aero.compasintegrationservice\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/authorize/token\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"1.94225\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"a87deecd-40ae-4858-be8c-608f8d4b223b"}],"id":"029dec32-dfcd-44ae-b192-b31a8b79e599","_postman_id":"029dec32-dfcd-44ae-b192-b31a8b79e599","description":""},{"name":"Application","item":[{"name":"Application Get","id":"798c47f4-c114-49f0-b241-ca45ddcec0d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\":{\"id\": 160930867}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<ul>\n<li>candidate -&gt; ID - <strong>REQUIRED</strong></li>\n</ul>\n","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3f3f73ee-f0a5-4a12-aaad-1ba4bfe814d7","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\":{\"id\": 146766777}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 17:33:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"494"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3256346"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 2,\n            \"count\": 2,\n            \"application\": [\n                {\n                    \"date_applied\": \"2024-08-14T22:34:15.033\",\n                    \"candidate\": 146766777,\n                    \"id\": 35962845,\n                    \"job\": 1132358\n                },\n                {\n                    \"date_applied\": \"2024-08-15T17:33:29.07\",\n                    \"candidate\": 146766777,\n                    \"id\": 35981845,\n                    \"job\": 1132358\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.084222\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-08-15T17:33:53\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 applications returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/webapplicants/talent/146766777\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.250031\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"2 applications returned\"\n}"}],"_postman_id":"798c47f4-c114-49f0-b241-ca45ddcec0d0"},{"name":"Application Get By ID","id":"1a1437b2-6b24-4a41-8a2d-6ceb14013788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"  \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"id\": 123\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"13e85fc3-6504-4fee-b9a3-1010d8b8807a","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"  \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"id\": 123\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 17:32:29 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"666"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1624838"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-08-15T17:32:29\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-08-15T17:32:29\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'Ocp-Apim-Subscription-Key' => '7c0103cc98ea413c8515c4b057ac1524',\\n          'x-api-key' => '7c0103cc98ea413c8515c4b057ac1524'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"grant_type\\\\\\\":\\\\\\\"client_credentials\\\\\\\",\\\\\\\"client_id\\\\\\\":\\\\\\\"partner.api.haleymarketing\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"scope\\\\\\\":\\\\\\\"avionte.aero.compasintegrationservice\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.avionte.com/authorize/token\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"avionte_bold\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"client_credentials\\\",\\\"client_secret\\\":\\\"SSN5KTwtq\\\",\\\"client_id\\\":\\\"partner.api.haleymarketing\\\",\\\"scope\\\":\\\"avionte.aero.compasintegrationservice\\\"}\",\n            \"call\": \"https://api.avionte.com/authorize/token\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.204689\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1a1437b2-6b24-4a41-8a2d-6ceb14013788"},{"name":"Application Set","id":"627c2025-80f7-4dcf-8231-a7757ecaaf28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": 160930867},\r\n    \t\"job\":{\"id\": 15658802},\r\n        \"referral_source\": \"Indeed\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>job -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\":{\"id\": 146766777},\n        \"job\":{\"id\": 1132358},\n        \"referral_source\": \"Haley Marketing\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8eeafefb-d127-4835-bbf3-470d9c95ed5e","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": 146766777},\r\n    \t\"job\":{\"id\": 1132358},\r\n        \"referral_source\": \"Haley Marketing\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 17:33:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"449"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3256343"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.294236\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-08-15T17:33:29\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"talentId\\\":146766777,\\\"jobId\\\":1132358,\\\"ApplicationSource\\\":\\\"Haley Marketing\\\"}\",\n            \"call\": \"https://api.avionte.com/front-office/v1/webapplicants\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.462632\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"627c2025-80f7-4dcf-8231-a7757ecaaf28"}],"id":"f92162b5-d737-4112-891b-7ea835ca76e5","event":[{"listen":"prerequest","script":{"id":"11ae8474-bd24-4271-b6aa-281e324164fe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3410347d-4bc6-4edb-b5be-a9e006a9b202","type":"text/javascript","exec":[""]}}],"_postman_id":"f92162b5-d737-4112-891b-7ea835ca76e5","description":""},{"name":"Branch","item":[{"name":"Branch Get","id":"4361520e-0c95-4a46-81d4-be3c1a01e9a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/branch/get","description":"<p>For retrieving all branches.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {}\n\n</code></pre>","urlObject":{"path":["branch","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"17a449d8-b8b1-4a57-a5b0-8f4e6dfa000f","name":"Branch Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/branch/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:25:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"763"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10730"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/branch/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 28,\n            \"count\": 28,\n            \"branches\": [\n                {\n                    \"name\": \"(Core Branch Name 2)\",\n                    \"id\": 1991\n                },\n                {\n                    \"name\": \"(Core Branch Name)\",\n                    \"id\": 1992\n                },\n                {\n                    \"name\": \"Acertitude\",\n                    \"id\": 1041\n                },\n                {\n                    \"name\": \"Acertitude\",\n                    \"id\": 1044\n                },\n                {\n                    \"name\": \"Boston\",\n                    \"id\": 10\n                },\n                {\n                    \"name\": \"Branch name\",\n                    \"id\": 1697\n                },\n                {\n                    \"name\": \"Brazil\",\n                    \"id\": 3097\n                },\n                {\n                    \"name\": \"British Columbia\",\n                    \"id\": 15387\n                },\n                {\n                    \"name\": \"Dallas\",\n                    \"id\": 11\n                },\n                {\n                    \"name\": \"Eagan\",\n                    \"id\": 14621\n                },\n                {\n                    \"name\": \"EyeOhWha\",\n                    \"id\": 14619\n                },\n                {\n                    \"name\": \"InternalEmployees\",\n                    \"id\": 15169\n                },\n                {\n                    \"name\": \"Los Angeles\",\n                    \"id\": 13\n                },\n                {\n                    \"name\": \"Minneapolis\",\n                    \"id\": 12243\n                },\n                {\n                    \"name\": \"O'Neil Consulting \",\n                    \"id\": 1040\n                },\n                {\n                    \"name\": \"O'Neil Consulting \",\n                    \"id\": 1043\n                },\n                {\n                    \"name\": \"QuesoVerde\",\n                    \"id\": 14620\n                },\n                {\n                    \"name\": \"Sacramento\",\n                    \"id\": 8\n                },\n                {\n                    \"name\": \"San Diego\",\n                    \"id\": 14\n                },\n                {\n                    \"name\": \"Seattle\",\n                    \"id\": 9\n                },\n                {\n                    \"name\": \"Solutions\",\n                    \"id\": 12\n                },\n                {\n                    \"name\": \"Talent Only\",\n                    \"id\": 16626\n                },\n                {\n                    \"name\": \"Talent Only\",\n                    \"id\": 19380\n                },\n                {\n                    \"name\": \"TEG\",\n                    \"id\": 1042\n                },\n                {\n                    \"name\": \"TEG\",\n                    \"id\": 1045\n                },\n                {\n                    \"name\": \"TEst2\",\n                    \"id\": 19381\n                },\n                {\n                    \"name\": \"This Office name is really long an\",\n                    \"id\": 14885\n                },\n                {\n                    \"name\": \"Vancouver\",\n                    \"id\": 15388\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Branch GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.89566\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:25:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"28 branches returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/branch\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"1.254143\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_branch\"\n    },\n    \"atsconnect_message\": \"28 branches returned\"\n}"}],"_postman_id":"4361520e-0c95-4a46-81d4-be3c1a01e9a4"}],"id":"5e8aa947-00ad-40e9-b43e-c1881d54bc89","event":[{"listen":"prerequest","script":{"id":"16ce2a0b-a5e6-4780-b97e-7545502501dd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6850ed81-5d89-43f5-967b-a4848202f7c3","type":"text/javascript","exec":[""]}}],"_postman_id":"5e8aa947-00ad-40e9-b43e-c1881d54bc89","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"53bf1bcd-1ed8-4ef3-a9df-721c4c55bf30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <strong>OPTIONAL</strong> - candidate ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 100033296\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"adbfaae7-89f4-4e09-9776-fa437d6c1e12","name":"Candidate Get - Includes Branch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 103112218\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Sep 2022 19:10:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"636"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"232018"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"phone\": \"899.900.1204\",\n                    \"branch\": 1045,\n                    \"last_name\": \"Doe\",\n                    \"cell_phone\": null,\n                    \"email\": \"zkklk@ofes.emai\",\n                    \"date_added\": \"2022-09-02\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"91062\",\n                        \"address1\": \"921 Pony Rd\",\n                        \"address2\": null\n                    },\n                    \"id\": 103112218,\n                    \"first_name\": \"Jason\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.187861\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-02T19:10:21\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/103112218?address=HASH(0x55872aaeaf80)&id=103112218\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.55794\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"},{"id":"70a833c5-8408-469e-a1b5-40ced774baea","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 100033296\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:29:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"617"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10742"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"phone\": null,\n                    \"branch\": 1045,\n                    \"last_name\": \"Hut\",\n                    \"cell_phone\": null,\n                    \"email\": null,\n                    \"date_added\": \"2022-09-13\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"04569\",\n                        \"address1\": \"35 Tree Top Way\",\n                        \"address2\": null\n                    },\n                    \"id\": 100033296,\n                    \"first_name\": \"Jabba\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.682838\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:29:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296?address=HASH(0x55c44fb9a830)&id=100033296\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.954448\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"53bf1bcd-1ed8-4ef3-a9df-721c4c55bf30"},{"name":"Candidate Set","event":[{"listen":"test","script":{"id":"0e3586b3-c345-444b-8fe9-50579b717ae1","exec":["// Extract request query and response","const requestQuery = pm.request.body","  ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query","  : {};","const response = pm.response.json();","const apiResponse = response.api_response || {};","const apiData = apiResponse.api_data || {};","","// 1️⃣ Validate API status and api_xstatus","pm.test(\"API status should be success\", () => {","    pm.expect(apiResponse.api_status).to.eql(1);","    pm.expect(apiResponse.api_xstatus).to.include(\"Created\");","});","","// 2️⃣ Validate candidate ID is present and is a number","pm.test(\"Candidate ID should be present and a number\", () => {","    pm.expect(apiData.id).to.be.a('number');","    pm.expect(apiData.id).to.be.greaterThan(0);","});","","// 3️⃣ Validate request fields mapped in atsconnect_ticket.request.values","let ticketRequestStr = response.atsconnect_ticket?.request?.values || \"{}\";","let mappedData;","try {","    mappedData = JSON.parse(ticketRequestStr);","} catch (e) {","    mappedData = {};","}","","pm.test(\"Validate mapped fields in ticket request\", () => {","    for (const key in requestQuery) {","        if (requestQuery[key] && typeof requestQuery[key] !== \"object\") {","            const mappedKey = key === \"first_name\" ? \"firstName\" :","                              key === \"last_name\" ? \"lastName\" :","                              key === \"phone\" ? \"homePhone\" :","                              key === \"cell_phone\" ? \"mobilePhone\" :","                              key === \"branch\" ? \"frontOfficeId\" :","                              key;","","            pm.expect(mappedData[mappedKey]).to.eql(requestQuery[key]);","        }","    }","});","","// 4️⃣ Data Type Validation for critical fields in mappedData","pm.test(\"Validate data types of key fields\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.firstName).to.be.a('string');","    pm.expect(mappedData.lastName).to.be.a('string');","    pm.expect(mappedData.homePhone).to.be.a('string');","    pm.expect(mappedData.mobilePhone).to.be.a('string');","    pm.expect(mappedData.frontOfficeId).to.be.a('number');","});","","// 5️⃣ Edge Case: Check optional fields handled gracefully (as strings or null)","pm.test(\"Optional fields handled gracefully\", () => {","    const optionalFields = [\"middleName\", \"emailAddress2\", \"referredBy\"];","    optionalFields.forEach(field => {","        pm.expect(mappedData[field] === null || typeof mappedData[field] === 'string').to.be.true;","    });","});","","// 6️⃣ Response time should be below 1500ms","pm.test(\"Response time is less than 1500ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});",""],"type":"text/javascript"}}],"id":"15c7f822-7a23-4c5d-9eac-76081571f743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"newtest-november-11-2025.1@mailinator.com\",\r\n        \"branch\": 1099,\r\n        \"last_name\":\"New Testing\",\r\n        \"first_name\":\"Okay\",\r\n        \"phone\":\"+1 888 896 9291\",\r\n        \"cell_phone\":\"+1 988 196 0291\",\r\n\t\t\"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume-04-11-2024.pdff\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>first_name - <strong>REQUIRED</strong></li>\n<li>last_name <strong>REQUIRED</strong></li>\n<li>email - <strong>REQUIRED</strong></li>\n<li>address1 - <strong>OPTIONAL</strong></li>\n<li>address2 - <strong>OPTIONAL</strong></li>\n<li>city - <strong>OPTIONAL</strong></li>\n<li>state - <strong>OPTIONAL</strong></li>\n<li>zip - <strong>OPTIONAL</strong></li>\n<li>referral_source - <strong>OPTIONAL</strong></li>\n<li>file_data - base64 - <strong>OPTIONAL</strong></li>\n<li>file_name - <strong>OPTIONAL</strong></li>\n</ul>\n<p>Notes:</p>\n<ul>\n<li>Branch is only required for new candidates.</li>\n<li>We never update branch information for existing candidates in Avionte, even if it's null.</li>\n<li>Name and contact details are also never changed.</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_query\": {\n        \"email\":\"talenttester4@mailinator.com\",\n        \"last_name\":\"Test\",\n        \"first_name\":\"Talent\",\n        \"phone\":\"+18888969291\",\n        \"branch\":\"1992\",\n        \"address1\": \"Tree Tops Way\",\n        \"city\": \"Portland\",\n        \"state\": \"Maine\",\n        \"zip\": \"00569\",\n        \"country\":\"US\",\n        \"resume_html\": \"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\",\n        \"description\": \"Resume-04-11-2024.docx\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"30477032-9828-46c8-b1b3-174a49481bba","name":"Candidate Set - No Branch & No Resume","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"newtest-15-August@mailinator.com\",\r\n        \"last_name\":\"New Test\",\r\n        \"first_name\":\"Okay\",\r\n        \"phone\":\"+18888969290\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 17:34:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"442"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3256349"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 149703663\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Source SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.075308\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-08-15T17:34:45\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"sourceName\\\":\\\"Haley Marketing\\\",\\\"talentId\\\":149703663}\",\n            \"call\": \"https://api.avionte.com/front-office/v1/talent-source\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.514228\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"},{"id":"cd5f7fb0-884e-406a-95c3-507ede32222d","name":"Candidate Set - Includes Branch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"newtest-15-August.2@mailinator.com\",\r\n        \"last_name\":\"New Test\",\r\n        \"first_name\":\"Okay Dokie\",\r\n        \"phone\":\"+18888969291\",\r\n        \"branch\":\"19502\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 17:36:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"441"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1624841"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 149703739\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Source SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.065856\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-08-15T17:36:27\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"sourceName\\\":\\\"Haley Marketing\\\",\\\"talentId\\\":149703739}\",\n            \"call\": \"https://api.avionte.com/front-office/v1/talent-source\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.594774\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"},{"id":"bd42eef2-1cec-43b6-9d42-00d9d65b8548","name":"Candidate Set - Includes Resume & Branch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\":\"newtest-15-August.6@mailinator.com\",\r\n        \"last_name\":\"Tooie\",\r\n        \"first_name\":\"Okay\",\r\n        \"phone\":\"+18888969291\",\r\n        \"branch\":\"19502\",\r\n        \"resume_html\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"description\": \"Resume-04-11-2024.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 18:44:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"441"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3256370"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 149706461\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Source SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.066604\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-08-15T18:44:52\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"sourceName\\\":\\\"Haley Marketing\\\",\\\"talentId\\\":149706461}\",\n            \"call\": \"https://api.avionte.com/front-office/v1/talent-source\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.802822\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"15c7f822-7a23-4c5d-9eac-76081571f743"},{"name":"Candidate Update","id":"28b24143-d4ef-49ee-861f-9ce3c95c5dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"id\":19967856,\r\n                        \"first_name\": \"Jabba\",\r\n                        \"last_name\": \"Hat\",\r\n                        \"address1\": \"35 Tree Tops Way\",\r\n                        \"city\": \"Portland\",\r\n                        \"state\": \"Maine\",\r\n                        \"zip\": \"00569\",\r\n                        \"country\":\"US\",\r\n                        \"email\": \"test@mailinator.com\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p>Updates need to include all values as the update makes NULL any fields not included.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>first_name - <b>REQUIRED</b></p>\n</li>\n<li><p>last_name <b>REQUIRED</b></p>\n</li>\n<li><p>email - <b>OPTIONAL</b></p>\n</li>\n<li><p>phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>cell_phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>address2 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>zip - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n                        \"id\":100033296,\n                        \"first_name\": \"Test\",\n                        \"last_name\": \"This\",\n                        \"phone\":\"888.933.3334\",\n                        \"address1\": \"35 Tree Top Way\",\n                        \"city\": \"Portland\",\n                        \"state\": \"Maine\",\n                        \"zip\": \"04569\",\n                        \"country\":\"US\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c0de9fad-79c6-4608-9dea-e4b06e1c346c","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"id\":100033296,\r\n                        \"first_name\": \"Jabba\",\r\n                        \"last_name\": \"Hut\",\r\n                        \"address1\": \"35 Tree Top Way\",\r\n                        \"city\": \"Portland\",\r\n                        \"state\": \"Maine\",\r\n                        \"zip\": \"04569\",\r\n                        \"country\":\"US\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:34:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"611"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465607"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 100033296\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.322205\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2022-09-26T19:34:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"Jabba\\\",\\\"residentAddress\\\":{\\\"country\\\":\\\"US\\\",\\\"city\\\":\\\"Portland\\\",\\\"street2\\\":null,\\\"street1\\\":\\\"35 Tree Top Way\\\",\\\"state_Province\\\":\\\"Maine\\\",\\\"postalCode\\\":\\\"04569\\\"},\\\"origin\\\":\\\"Haley Marketing\\\",\\\"address\\\":{\\\"country\\\":\\\"US\\\",\\\"city\\\":\\\"Portland\\\",\\\"street2\\\":null,\\\"street1\\\":null,\\\"state_Province\\\":null,\\\"postalCode\\\":null},\\\"id\\\":100033296,\\\"lastName\\\":\\\"Hut\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.606072\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"},{"id":"c9a3cd41-ab82-4c3a-a235-153344d9a12b","name":"Candidate Update - Includes Branch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"id\":100033296,\r\n                        \"first_name\": \"Jabba\",\r\n                        \"last_name\": \"Hut\",\r\n                        \"address1\": \"35 Tree Top Way\",\r\n                        \"city\": \"Portland\",\r\n                        \"state\": \"Maine\",\r\n                        \"zip\": \"04569\",\r\n                        \"country\":\"US\",\r\n                        \"branch\": 1045                         \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:35:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"622"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465610"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 100033296\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.490293\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2022-09-26T19:35:21\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"Jabba\\\",\\\"frontOfficeId\\\":1045,\\\"residentAddress\\\":{\\\"country\\\":\\\"US\\\",\\\"city\\\":\\\"Portland\\\",\\\"street2\\\":null,\\\"street1\\\":\\\"35 Tree Top Way\\\",\\\"state_Province\\\":\\\"Maine\\\",\\\"postalCode\\\":\\\"04569\\\"},\\\"origin\\\":\\\"Haley Marketing\\\",\\\"address\\\":{\\\"country\\\":\\\"US\\\",\\\"city\\\":\\\"Portland\\\",\\\"street2\\\":null,\\\"street1\\\":null,\\\"state_Province\\\":null,\\\"postalCode\\\":null},\\\"id\\\":100033296,\\\"lastName\\\":\\\"Hut\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.863569\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"28b24143-d4ef-49ee-861f-9ce3c95c5dbb"},{"name":"Candidate Get By ID","event":[{"listen":"test","script":{"id":"6692ae86-2a8f-46c1-9c4e-18a2f573736c","exec":["// Parse response JSON","const response = pm.response.json();","","// Validate top-level properties","pm.test(\"Response has top-level properties\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// Extract candidates array","const candidates = response.api_response.api_data?.candidates || [];","const queryId = pm.request.body ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query.id : null;","","if (candidates.length > 0) {","    // Check exactly 1 candidate returned","    pm.test(\"Exactly 1 candidate returned\", () => {","        pm.expect(candidates.length).to.eql(1);","    });","","    const candidate = candidates[0];","","    // Validate candidate fields and types","    pm.test(\"Candidate fields validation\", () => {","        const expectedFields = {","            referral_source: \"string\",","            status: \"string\",","            phone: \"string\",","            branch: \"number\",","            last_name: \"string\",","            cell_phone: \"string\",","            email: \"string\",","            date_added: \"string\",","            address: \"object\",","            id: \"number\",","            rep_user: \"number\",  // note: 0 here, so number type","            first_name: \"string\"","        };","","        for (const [field, type] of Object.entries(expectedFields)) {","            pm.expect(candidate).to.have.property(field);","            pm.expect(typeof candidate[field]).to.eql(type);","        }","    });","","    // Validate nested address object","    pm.test(\"Candidate address object validation\", () => {","        const addr = candidates[0].address;","        const addrFields = [\"country\", \"city\", \"zip\", \"address1\", \"address2\", \"state\"];","","        addrFields.forEach(field => {","            pm.expect(addr).to.have.property(field);","            pm.expect(typeof addr[field]).to.eql(\"string\");","        });","    });","","    // Validate candidate ID matches request ID","    pm.test(\"Candidate ID matches request ID\", () => {","        pm.expect(candidate.id).to.eql(queryId);","    });","","} else {","    // No candidates found","    pm.test(\"No candidate returned\", () => {","        pm.expect(response.api_response.api_data.count).to.eql(0);","        pm.expect(candidates).to.be.an(\"array\").that.is.empty;","    });","}","","// Validate API status and message","pm.test(\"API status and message validation\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.atsconnect_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.eql(\"1 candidate returned\");","    pm.expect(response.atsconnect_message).to.eql(\"1 candidate returned\");","});","","// Validate response time less than 1000ms","pm.test(\"Response time is less than 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript"}}],"id":"a83debd2-e2ec-4c73-ae92-e0df3521c663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\":11543739\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 100033296\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b8e4c89a-ebad-49ea-a113-659d1ffe2bc7","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": 149706461\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Aug 2024 19:19:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"573"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3256373"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"phone\": \"88969291\",\n                    \"branch\": 19502,\n                    \"last_name\": \"Tooie\",\n                    \"cell_phone\": null,\n                    \"email\": \"newtest-15-August.6@mailinator.com\",\n                    \"date_added\": \"2024-08-15\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": null\n                    },\n                    \"id\": 149706461,\n                    \"rep_user\": 0,\n                    \"resume_html\": null,\n                    \"first_name\": \"Okay\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.156332\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-08-15T19:19:20\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/talent/149706461?id=149706461\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.341946\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"a83debd2-e2ec-4c73-ae92-e0df3521c663"},{"name":"Candidate Set Education","event":[{"listen":"test","script":{"id":"6418a378-2e3a-4a4c-870f-d866ade7a46e","exec":["// Extract request and response","const requestQuery = pm.request.body ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query : {};","const response = pm.response.json();","const apiData = response.api_response.api_data;","","// 1️⃣ Validate API status and xstatus","pm.test(\"✅ API status and xstatus should indicate success\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"200 OK\");","});","","// 2️⃣ Validate Candidate Education ID is returned","pm.test(\"✅ Candidate Education ID should be present and match request\", () => {","    pm.expect(apiData.id).to.eql(requestQuery.id);","    pm.expect(apiData.id).to.be.a('number');","    pm.expect(apiData.id).to.be.greaterThan(0);","});","","// 3️⃣ Validate mapped fields in atsconnect_ticket.request.values","let ticketRequestRaw = response.atsconnect_ticket?.request?.values;","let mappedData = ticketRequestRaw ? JSON.parse(ticketRequestRaw) : {};","","pm.test(\"✅ Validate field mappings in ticket values\", () => {","    pm.expect(mappedData.country).to.eql(requestQuery.country);","    pm.expect(mappedData.state).to.eql(requestQuery.state);","    pm.expect(mappedData.city).to.eql(requestQuery.city);","    pm.expect(mappedData.gpa).to.eql(String(requestQuery.gpa)); // gpa becomes string","","    pm.expect(mappedData.school).to.eql(requestQuery.school);","    pm.expect(mappedData.degree).to.eql(requestQuery.degree);","    pm.expect(mappedData.degreeType).to.eql(requestQuery.degree_type);","    pm.expect(mappedData.schoolType).to.eql(requestQuery.type);","    pm.expect(mappedData.field).to.eql(requestQuery.major);","    pm.expect(mappedData.notes).to.eql(requestQuery.comments);","    pm.expect(mappedData.id).to.eql(requestQuery.id);","","    // Date string validation (exact string match)","    pm.expect(mappedData.from).to.eql(requestQuery.start_date);","    pm.expect(mappedData.to).to.eql(requestQuery.end_date);","});","","// 4️⃣ Validate data types","pm.test(\"✅ Validate data types in mapped data\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.degree).to.be.a('string');","    pm.expect(mappedData.degreeType).to.be.a('string');","    pm.expect(mappedData.state).to.be.a('string');","    pm.expect(mappedData.city).to.be.a('string');","    pm.expect(mappedData.school).to.be.a('string');","    pm.expect(mappedData.gpa).to.be.a('string');","    pm.expect(mappedData.notes).to.be.a('string');","    pm.expect(mappedData.schoolType).to.be.a('string');","    pm.expect(mappedData.field).to.be.a('string');","    pm.expect(mappedData.from).to.be.a('string');","    pm.expect(mappedData.to).to.be.a('string');","    pm.expect(mappedData.id).to.be.a('number');","});","","// 5️⃣ Optional field safety check","pm.test(\"✅ Optional fields are handled safely\", () => {","    const optionalFields = [\"comments\"];","    optionalFields.forEach(field => {","        const value = requestQuery[field];","        pm.expect(value === undefined || typeof value === 'string').to.be.true;","    });","});","","// 6️⃣ Response time","pm.test(\"✅ Response time should be under 1500ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});",""],"type":"text/javascript","packages":{}}}],"id":"e6b95397-284e-416a-8280-717e6b5c1677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 160930867\r\n        },\r\n        \"country\":\"US\",\r\n        \"state\":\"CA\",\r\n        \"start_date\": \"02/05/1992\",\r\n        \"end_date\": \"01/05/1996\",\r\n        \"city\":\"Oakland\",\r\n        \"school\":\"CA Silver School of Social Work\",\r\n        \"type\": \"university\",\r\n        \"major\":\"Social Work Clinical II\",\r\n        \"degree\": \"Social Work\",\r\n        \"degree_type\": \"Bachelors\",\r\n        \"gpa\": 2.5,\r\n        \"comments\": \"This is a test\",\r\n        \"id\": 138473060\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li>candidate -&gt; ID - <strong>REQUIRED</strong> - candidate ID</li>\n<li>id - <strong>OPTIONAL</strong> - needed to update Education</li>\n<li>school - <strong>REQUIRED</strong></li>\n<li>type - <strong>REQUIRED</strong></li>\n<li>degree - <strong>REQUIRED</strong></li>\n<li>degree_type - <strong>REQUIRED</strong></li>\n<li>city - <strong>OPTIONAL</strong></li>\n<li>state - <strong>OPTIONAL</strong></li>\n<li>country - <strong>OPTONAL</strong></li>\n<li>start_date <strong>OPTIONAL</strong></li>\n<li>end_date <strong>OPTIONAL</strong></li>\n<li>major - <strong>OPTIONAL</strong></li>\n<li>gpa - <strong>OPTIONAL</strong></li>\n<li>comments - <strong>OPTIONAL</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 100033296\n        },\n        \"country\":\"United States\",\n        \"state\":\"NY\",\n        \"from\": \"01/05/1992\",\n        \"to\": \"01/05/1988\",\n        \"city\":\"Manhattan\",\n        \"school\":\"NYU Silver School of Social Work\",\n        \"type\": \"university\",\n        \"major\":\"Social Work Clinical\",\n        \"degree\": \"Social Work\",\n        \"degree_type\": \"Bachelors\",\n        \"gpa\": 2\n     }\n}\n\n</code></pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"202c98b9-bb6a-4e93-83bc-d09018287624","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 100033296\r\n        },\r\n        \"country\":\"United States\",\r\n        \"state\":\"NY\",\r\n        \"from\": \"01/05/1992\",\r\n        \"to\": \"01/05/1988\",\r\n        \"city\":\"Manhattan\",\r\n        \"school\":\"NYU Silver School of Social Work\",\r\n        \"type\": \"university\",\r\n        \"major\":\"Social Work Clinical\",\r\n        \"degree\": \"Social Work\",\r\n        \"degree_type\": \"Bachelors\",\r\n        \"gpa\": 2.4,\r\n        \"id\": 86562512\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:38:36 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"703"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465617"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"country\": null,\n            \"degree\": \"Social Work\",\n            \"state\": \"NY\",\n            \"degreeType\": \"Bachelors\",\n            \"city\": \"Manhattan\",\n            \"talentId\": 100033296,\n            \"to\": null,\n            \"notes\": null,\n            \"gpa\": \"2.4\",\n            \"from\": null,\n            \"schoolType\": \"university\",\n            \"id\": 86562512,\n            \"school\": \"NYU Silver School of Social Work\",\n            \"field\": \"Social Work Clinical\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.336075\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2022-09-26T19:38:36\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"degree\\\":\\\"Social Work\\\",\\\"state\\\":\\\"NY\\\",\\\"degreeType\\\":\\\"Bachelors\\\",\\\"city\\\":\\\"Manhattan\\\",\\\"end_date\\\":\\\"01/05/1988\\\",\\\"gpa\\\":2.4,\\\"schoolType\\\":\\\"university\\\",\\\"school\\\":\\\"NYU Silver School of Social Work\\\",\\\"start_date\\\":\\\"01/05/1992\\\",\\\"id\\\":86562512,\\\"field\\\":\\\"Social Work Clinical\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/talent-education-history/86562512\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.6067\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"},{"id":"734872b3-f7bd-4936-9557-99b7de2e54d1","name":"Candidate Set Education - Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 100033296\r\n        },\r\n        \"country\":\"United States\",\r\n        \"state\":\"CA\",\r\n        \"from\": \"02/05/1992\",\r\n        \"to\": \"01/05/1988\",\r\n        \"city\":\"Oakland\",\r\n        \"school\":\"CA Silver School of Social Work\",\r\n        \"type\": \"university\",\r\n        \"major\":\"Social Work Clinical\",\r\n        \"degree\": \"Social Work\",\r\n        \"degree_type\": \"Bachelors\",\r\n        \"gpa\": 2.4,\r\n        \"id\": 86562512\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:39:43 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"703"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10764"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"country\": null,\n            \"degree\": \"Social Work\",\n            \"state\": \"CA\",\n            \"degreeType\": \"Bachelors\",\n            \"city\": \"Oakland\",\n            \"talentId\": 100033296,\n            \"to\": null,\n            \"notes\": null,\n            \"gpa\": \"2.4\",\n            \"from\": null,\n            \"schoolType\": \"university\",\n            \"id\": 86562512,\n            \"school\": \"CA Silver School of Social Work\",\n            \"field\": \"Social Work Clinical\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.354761\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2022-09-26T19:39:44\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"degree\\\":\\\"Social Work\\\",\\\"state\\\":\\\"CA\\\",\\\"degreeType\\\":\\\"Bachelors\\\",\\\"city\\\":\\\"Oakland\\\",\\\"end_date\\\":\\\"01/05/1988\\\",\\\"gpa\\\":2.4,\\\"schoolType\\\":\\\"university\\\",\\\"school\\\":\\\"CA Silver School of Social Work\\\",\\\"start_date\\\":\\\"02/05/1992\\\",\\\"id\\\":86562512,\\\"field\\\":\\\"Social Work Clinical\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/talent-education-history/86562512\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.614777\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"e6b95397-284e-416a-8280-717e6b5c1677"},{"name":"Candidate Get Education","event":[{"listen":"test","script":{"id":"dc58fa11-26c1-4450-9021-0db1ef4471d6","exec":["// 📥 Extract response JSON","const response = pm.response.json();","","// ✅ Validate top-level response structure","pm.test(\"✅ Validate top-level response structure\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// 🧾 Extract education array and count","const apiData = response.api_response.api_data || {};","const educationArray = apiData.education || [];","const count = apiData.count || 0;","","// ✅ Validate count matches education array length","pm.test(\"✅ Validate count matches education array length\", () => {","    pm.expect(educationArray.length).to.eql(count);","});","","// ✅ Validate education objects","if (educationArray.length > 0) {","    educationArray.forEach((edu, index) => {","        pm.test(`✅ Validate education object at index ${index}`, () => {","            // Required fields with expected types","            const fieldChecks = [","                { key: \"id\", type: \"number\" },","                { key: \"candidate\", type: \"number\" },","                { key: \"degree\", type: \"string\" },","                { key: \"degree_type\", type: \"string\" },","                { key: \"city\", type: \"string\" },","                { key: \"state\", type: \"string\" },","                { key: \"school\", type: \"string\" },","                { key: \"start_date\", type: \"string\" },","                { key: \"end_date\", type: \"string\" },","                { key: \"major\", type: \"string\" },","                { key: \"type\", type: \"string\" },","                { key: \"gpa\", type: \"string\" },","                { key: \"comments\", type: \"string\" }","            ];","","            // Check all expected fields","            fieldChecks.forEach(f => {","                pm.expect(edu).to.have.property(f.key);","                pm.expect(typeof edu[f.key]).to.eql(f.type);","            });","","            // Optional field check (e.g., `country` can be null or string)","            pm.expect([\"string\", \"object\"]).to.include(typeof edu.country);","        });","    });","} else {","    // 🟡 No education entries case","    pm.test(\"🟡 No education records returned\", () => {","        pm.expect(count).to.eql(0);","        pm.expect(educationArray).to.be.an(\"array\").that.is.empty;","    });","}","","// ✅ Validate API status and xstatus","pm.test(\"✅ Validate API status values\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"educations returned\");","    pm.expect(response.atsconnect_status).to.eql(1);","});","","// ⚡ Validate performance","pm.test(\"⚡ Response time is under 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript","packages":{}}}],"id":"8465cc25-eb9f-402a-96c7-fddf747b15f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\":160930867\r\n            }\r\n           \r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <b>REQUIRED</b> - get ALL by Candidate ID</p>\n</li>\n<li><p>id - <b>OPTIONAL</b> - get by Education ID</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 100033296\n        }\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bcb3d6a1-cbc8-41f7-8fe2-69908ab47823","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 100033296\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:40:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"622"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10767"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"education\": [\n                {\n                    \"degree\": \"Social Work\",\n                    \"comments\": null,\n                    \"state\": \"CA\",\n                    \"degree_type\": \"Bachelors\",\n                    \"city\": \"Oakland\",\n                    \"candidate\": 100033296,\n                    \"end_date\": null,\n                    \"gpa\": \"2.4\",\n                    \"school\": \"CA Silver School of Social Work\",\n                    \"start_date\": null,\n                    \"id\": 86562512,\n                    \"type\": \"university\",\n                    \"major\": \"Social Work Clinical\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.175774\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:40:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 education returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/talent-education-history\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.497187\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 education returned\"\n}"},{"id":"24c843c3-b034-47bd-8299-9758bc2c3241","name":"Candidate Get Education by Education ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 100033296\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:40:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"622"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10767"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"education\": [\n                {\n                    \"degree\": \"Social Work\",\n                    \"comments\": null,\n                    \"state\": \"CA\",\n                    \"degree_type\": \"Bachelors\",\n                    \"city\": \"Oakland\",\n                    \"candidate\": 100033296,\n                    \"end_date\": null,\n                    \"gpa\": \"2.4\",\n                    \"school\": \"CA Silver School of Social Work\",\n                    \"start_date\": null,\n                    \"id\": 86562512,\n                    \"type\": \"university\",\n                    \"major\": \"Social Work Clinical\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.175774\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:40:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 education returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/talent-education-history\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.497187\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 education returned\"\n}"},{"id":"cbfaf9a4-3d85-47b9-8e40-f3fa4d7c1a67","name":"Candidate Get Education by Education ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 100033296\r\n            },\r\n            \"id\": 86562512\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:43:46 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"628"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465629"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"education\": [\n                {\n                    \"degree\": \"Social Work\",\n                    \"comments\": null,\n                    \"state\": \"CA\",\n                    \"degree_type\": \"Bachelors\",\n                    \"city\": \"Oakland\",\n                    \"candidate\": 100033296,\n                    \"end_date\": null,\n                    \"gpa\": \"2.4\",\n                    \"school\": \"CA Silver School of Social Work\",\n                    \"start_date\": null,\n                    \"id\": 86562512,\n                    \"type\": \"university\",\n                    \"major\": \"Social Work Clinical\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.142011\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:43:46\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 education returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/talent-education-history/86562512?id=86562512\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.451666\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 education returned\"\n}"}],"_postman_id":"8465cc25-eb9f-402a-96c7-fddf747b15f7"},{"name":"Candidate Set Work History","event":[{"listen":"test","script":{"id":"ab097d83-ae84-464a-a9d6-a8c69867fea7","exec":["// 📤 Extract request and response data","const requestBody = pm.request.body ? JSON.parse(pm.request.body.raw) : {};","const requestQuery = requestBody.api_request_data?.api_request_query || {};","const response = pm.response.json();","const apiData = response.api_response?.api_data || {};","const ticketValuesRaw = response.atsconnect_ticket?.request?.values || \"\";","const mappedData = ticketValuesRaw ? JSON.parse(ticketValuesRaw) : {};","","// 1️⃣ Validate API status and xstatus","pm.test(\"✅ API status should be success and xstatus should be 201 Created\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"201 Created\");","});","","// 2️⃣ Validate returned workHistoryID","pm.test(\"✅ workHistoryID should be present and a valid number\", () => {","    pm.expect(apiData.workHistoryID).to.be.a('number');","    pm.expect(apiData.workHistoryID).to.be.greaterThan(0);","});","","// 3️⃣ Validate field mappings in atsconnect_ticket.request.values","pm.test(\"✅ Validate field mappings in ticket request\", () => {","    pm.expect(mappedData.country).to.eql(requestQuery.country);","    pm.expect(mappedData.state).to.eql(requestQuery.state);","    pm.expect(mappedData.city).to.eql(requestQuery.city);","    pm.expect(mappedData.company).to.eql(requestQuery.company_name);","    pm.expect(mappedData.title).to.eql(requestQuery.title);","    pm.expect(mappedData.duties).to.eql(requestQuery.comments);","    pm.expect(mappedData.reason_For_Leaving).to.eql(requestQuery.termination_reason);","    pm.expect(mappedData.from).to.eql(requestQuery.start_date);","    pm.expect(mappedData.to).to.eql(requestQuery.end_date);","});","","// 4️⃣ Validate data types of mapped fields","pm.test(\"✅ Validate data types of mapped fields\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.country).to.be.a('string');","    pm.expect(mappedData.state).to.be.a('string');","    pm.expect(mappedData.city).to.be.a('string');","    pm.expect(mappedData.company).to.be.a('string');","    pm.expect(mappedData.title).to.be.a('string');","    pm.expect(mappedData.duties).to.be.a('string');","    pm.expect(mappedData.reason_For_Leaving).to.be.a('string');","    pm.expect(mappedData.from).to.be.a('string');","    pm.expect(mappedData.to).to.be.a('string');","});","","// 5️⃣ Validate candidate ID in response","pm.test(\"✅ Validate talentId matches candidate.id from request\", () => {","    pm.expect(apiData.talentId).to.eql(requestQuery.candidate?.id);","});","","// 6️⃣ Validate response time","pm.test(\"⚡ Response time is under 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});","","// 7️⃣ Optional fields check","pm.test(\"✅ Optional fields handled gracefully (notes)\", () => {","    pm.expect(apiData).to.have.property(\"notes\");","    pm.expect(apiData.notes === null || typeof apiData.notes === 'string').to.be.true;","});",""],"type":"text/javascript","packages":{}}}],"id":"855bcaed-78f7-4022-a088-8504ede65ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 160930867\r\n        },\r\n        \"title\": \"Cashier V\",\r\n        \"company_name\": \"Far Far Away\",\r\n        \"comments\": \"I ran the cash register edit.\",\r\n        \"start_date\": \"01/05/1991\",\r\n        \"end_date\":\"01/31/1993\",\r\n        \"city\": \"Portland\",\r\n        \"state\": \"Maine\",\r\n        \"country\":\"US\",\r\n        \"termination_reason\": \"This is a test leave\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p>Updates need to include all values as the update makes NULL any fields not included.</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>id - <strong>OPTIONAL</strong> - needed to update work history</p>\n</li>\n<li><p>title - <strong>REQUIRED</strong></p>\n</li>\n<li><p>company_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>comments - <strong>OPTIONAL</strong> - duties</p>\n</li>\n<li><p>start_date - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>end_date - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>termination_reason - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 160930867\n        },\n        \"id\": 477850845,\n        \"title\": \"Cashier V\",\n        \"company_name\": \"Far Far Away\",\n        \"comments\": \"I ran the cash register edit.\",\n        \"start_date\": \"01/05/1991\",\n        \"end_date\":\"01/31/1993\",\n        \"city\": \"Portland\",\n        \"state\": \"Maine\",\n        \"country\":\"US\",\n        \"notes\": \"This is a test\",\n        \"reason_For_Leaving\": \"This is a test leave\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"97ed940c-cf0e-468e-a2c6-b539043786fa","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_site_name\": \"{{avionte_bold_api_site_name}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 100033296\r\n        },\r\n        \"company_name\": \"Far\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"01/05/1992\",\r\n        \"end_date\":\"01/31/1992\",\r\n        \"title\": \"Cashier IV\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jun 2022 23:56:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"621"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"627616"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"country\": null,\n            \"duties\": \"I ran the cash register.\",\n            \"workHistoryID\": 294204599,\n            \"state\": null,\n            \"talentId\": 100033296,\n            \"to\": \"01/31/1992\",\n            \"city\": null,\n            \"notes\": null,\n            \"from\": \"01/05/1992\",\n            \"reason_For_Leaving\": null,\n            \"title\": \"Cashier IV\",\n            \"company\": \"Far\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Workhistory SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.159076\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-06-23T23:56:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"to\\\":\\\"01/31/1992\\\",\\\"from\\\":\\\"01/05/1992\\\",\\\"duties\\\":\\\"I ran the cash register.\\\",\\\"title\\\":\\\"Cashier IV\\\",\\\"company\\\":\\\"Far\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/work-history\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.408685\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"},{"id":"2d8b3bbf-061f-4237-8a1f-3d5047cd9aca","name":"Candidate Set Work History - Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_site_name\": \"{{avionte_bold_api_site_name}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 100033296\r\n        },\r\n        \"id\": 294204599,\r\n        \"company_name\": \"Far Far Away\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"01/05/1992\",\r\n        \"end_date\":\"01/31/1992\",\r\n        \"title\": \"Cashier IV\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Jun 2022 23:57:27 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"634"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"69263"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"country\": null,\n            \"duties\": \"I ran the cash register.\",\n            \"workHistoryID\": 294204599,\n            \"state\": null,\n            \"talentId\": 100033296,\n            \"to\": \"01/31/1992\",\n            \"city\": null,\n            \"notes\": null,\n            \"from\": \"01/05/1992\",\n            \"reason_For_Leaving\": null,\n            \"title\": \"Cashier IV\",\n            \"company\": \"Far Far Away\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Workhistory SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.260557\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2022-06-23T23:57:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"to\\\":\\\"01/31/1992\\\",\\\"from\\\":\\\"01/05/1992\\\",\\\"duties\\\":\\\"I ran the cash register.\\\",\\\"workHistoryID\\\":294204599,\\\"title\\\":\\\"Cashier IV\\\",\\\"company\\\":\\\"Far Far Away\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/100033296/work-history/294204599\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.552147\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"855bcaed-78f7-4022-a088-8504ede65ad5"},{"name":"Candidate Get Work History","event":[{"listen":"test","script":{"id":"38b0376e-64b6-4781-a38a-94a37238038a","exec":["// ✅ Parse the JSON response","const response = pm.response.json();","","// ✅ Basic response structure validation","pm.test(\"✅ Response includes required top-level fields\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// ✅ Extract work_history array","const workHistory = response.api_response?.api_data?.work_history || [];","const expectedCount = response.api_response?.api_data?.count || 0;","","// ✅ work_history should be a non-empty array","pm.test(\"✅ work_history is a non-empty array\", () => {","    pm.expect(workHistory).to.be.an(\"array\").that.is.not.empty;","});","","// ✅ Count should match number of items in work_history","pm.test(\"✅ Count matches length of work_history array\", () => {","    pm.expect(workHistory.length).to.eql(expectedCount);","});","","// ✅ Validate required fields and types in each entry","workHistory.forEach((entry, index) => {","    pm.test(`✅ Validate fields in work_history entry ${index + 1}`, () => {","        const requiredFields = [","            { key: \"company_name\", type: \"string\" },","            { key: \"title\", type: \"string\" },","            { key: \"id\", type: \"number\" },","            { key: \"candidate\", type: \"number\" }","        ];","","        const optionalFields = [","            { key: \"comments\", type: \"string\" },","            { key: \"termination_reason\", type: \"string\" },","            { key: \"state\", type: \"string\" },","            { key: \"city\", type: \"string\" },","            { key: \"start_date\", type: \"string\" },","            { key: \"end_date\", type: \"string\" },","            { key: \"country\", type: \"string\" }","        ];","","        requiredFields.forEach(f => {","            pm.expect(entry).to.have.property(f.key);","            const value = entry[f.key];","            pm.expect(value).to.not.be.null;","            pm.expect(typeof value).to.eql(f.type);","        });","","        optionalFields.forEach(f => {","            if (entry.hasOwnProperty(f.key) && entry[f.key] !== null) {","                pm.expect(typeof entry[f.key]).to.eql(f.type);","            }","        });","    });","});","","// ✅ Validate API status flags","pm.test(\"✅ API status flags are correct\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.atsconnect_status).to.eql(1);","});","","// ✅ Validate atsconnect_message contains the count","pm.test(\"✅ atsconnect_message includes work_history count\", () => {","    pm.expect(response.atsconnect_message).to.include(expectedCount.toString());","});","","// ⚡ Validate response time performance","pm.test(\"⚡ Response time is less than 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript","packages":{}}}],"id":"96f29fdc-d704-48dc-aef6-2d57a77d27ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 97861848\r\n        }\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For getting a candidate's work history.</p>\n\n<ul>\n<li><p>candidate -&gt; id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>id - <strong>OPTIONAL</strong> - Work History ID</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 97861848\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"28d99183-00ba-4455-8ec6-126c4b2d47f1","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 97861848\r\n        }\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:45:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"743"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465638"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 7,\n            \"work_history\": [\n                {\n                    \"country\": null,\n                    \"company_name\": \"Staples\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"01/31/1992\",\n                    \"title\": \"Cashier\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 288636090\n                },\n                {\n                    \"country\": null,\n                    \"company_name\": \"Far\",\n                    \"comments\": null,\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": null,\n                    \"title\": \"Cashier II\",\n                    \"start_date\": null,\n                    \"id\": 288636742\n                },\n                {\n                    \"country\": null,\n                    \"company_name\": \"Far\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"01/31/1992\",\n                    \"title\": \"Cashier IV\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 288636834\n                },\n                {\n                    \"country\": null,\n                    \"company_name\": \"F Stop\",\n                    \"comments\": \"I ran the cash registers.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"02/05/1992\",\n                    \"title\": \"Cashier\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 288732262\n                },\n                {\n                    \"country\": null,\n                    \"company_name\": \"F Stop\",\n                    \"comments\": \"I ran the cash registers.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"02/05/1992\",\n                    \"title\": \"Cashier\",\n                    \"start_date\": null,\n                    \"id\": 288732433\n                },\n                {\n                    \"country\": null,\n                    \"company_name\": \"Far\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"01/31/1992\",\n                    \"title\": \"Cashier IV\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 293221329\n                },\n                {\n                    \"country\": \"United States\",\n                    \"company_name\": \"Far\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"termination_reason\": null,\n                    \"state\": \"MD\",\n                    \"city\": \"Gaithersburg\",\n                    \"candidate\": 97861848,\n                    \"end_date\": \"01/31/1992\",\n                    \"title\": \"Cashier IV\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 293222527\n                }\n            ],\n            \"count\": 7\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.269893\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:45:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"7 work historys returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/97861848/work-history\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.553273\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"7 work historys returned\"\n}"},{"id":"58c08b9c-a3fe-48b0-90a4-a657524664a9","name":"Candidate Get Work History by Work History ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"       \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 97861848\r\n        },\r\n        \"id\": 288636090\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:45:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"624"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"10779"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"work_history\": [\n                {\n                    \"country\": null,\n                    \"company_name\": \"Staples\",\n                    \"comments\": \"I ran the cash register.\",\n                    \"termination_reason\": null,\n                    \"state\": null,\n                    \"city\": null,\n                    \"candidate\": 97861848,\n                    \"end_date\": \"01/31/1992\",\n                    \"title\": \"Cashier\",\n                    \"start_date\": \"01/05/1992\",\n                    \"id\": 288636090\n                }\n            ],\n            \"count\": 1\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.202499\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-09-26T19:45:59\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 work history returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://partner-api.avionte.com/front-office/v1/talent/97861848/work-history/288636090?workHistoryID=288636090\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.491796\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 work history returned\"\n}"}],"_postman_id":"96f29fdc-d704-48dc-aef6-2d57a77d27ad"}],"id":"b070e2bf-9623-4d97-a09b-0d29a07aaa14","event":[{"listen":"prerequest","script":{"id":"d2994c3d-4993-4df1-b435-3e633ee7b285","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4a73fbb2-748c-4fca-a37e-84084e1c88ea","type":"text/javascript","exec":[""]}}],"_postman_id":"b070e2bf-9623-4d97-a09b-0d29a07aaa14","description":""},{"name":"Custom","item":[{"name":"Custom","id":"1390ed52-7514-4c7c-933c-b51c3185a17a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n      \"api_id\": \"{{avionte_bold_api_id}}\",\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\n      \"api_un\": \"{{avionte_bold_api_un}}\",\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\n    },\n    \"vendor\": \"avionte_bold\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n    \t    }\n    }\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to JobAdder via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"38a1fc8a-242e-47bf-9da9-822567473b94","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n      \"api_id\": \"{{avionte_bold_api_id}}\",\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\n      \"api_un\": \"{{avionte_bold_api_un}}\",\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\n    },\n    \"vendor\": \"avionte_bold\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n    \t    }\n    }\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:20:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"523"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465580"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-09-26T19:20:56\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-09-26T19:20:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"avionte_bold\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"client_credentials\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"partner.api.haleymarketing\\\",\\\"scope\\\":\\\"avionte.aero.compasintegrationservice\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/authorize/token\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.393756\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1390ed52-7514-4c7c-933c-b51c3185a17a"}],"id":"818e70b8-b03e-4d23-b643-76408ea3f0da","event":[{"listen":"prerequest","script":{"id":"14898dba-ab64-4493-b3ac-f72edd5b93ab","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4ae7fa89-c5c2-4b22-9c21-9d81c83b7061","type":"text/javascript","exec":[""]}}],"_postman_id":"818e70b8-b03e-4d23-b643-76408ea3f0da","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"9ed6b702-1cbf-4d4f-86fb-bb7885d3da3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b67b6c61-aba5-4288-bec2-e1b2a432ece8","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:21:35 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"570"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465583"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-09-26T19:21:35\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-09-26T19:21:35\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"avionte_bold\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"client_credentials\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"partner.api.haleymarketing\\\",\\\"scope\\\":\\\"avionte.aero.compasintegrationservice\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/authorize/token\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.290274\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for response from the origin ATS\"\n}"}],"_postman_id":"9ed6b702-1cbf-4d4f-86fb-bb7885d3da3b"}],"id":"d7df7509-8d1a-4975-aa51-b36d61a26561","event":[{"listen":"prerequest","script":{"id":"6895577d-7fce-4ae2-ac88-f5afe186f959","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0c612a6e-f7a1-4152-b225-cb92d0da3fe5","type":"text/javascript","exec":[""]}}],"_postman_id":"d7df7509-8d1a-4975-aa51-b36d61a26561","description":""},{"name":"Job","item":[{"name":"Job Get","id":"9bd71697-abf2-4fd8-bd01-67d6ae72c3d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {}\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4d0d57ca-6531-46d5-b41d-d60320f2868b","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Mar 2025 01:25:38 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"11813"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"278763"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"$11.50/hr\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Avionte Staffing Software\",\n                    \"description\": \"<p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'>Avionte Test has experienced significant growth over the last several years. As we continue to expand our network, we are seeking quality PART TIME dock workers/forklift operators at our <b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Blaine,</b> <b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>MN</b> terminal.</p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Positions Available:</b></p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Part-Time forklift operator AM shifts available 3:00 A.M. - 9:00 A.M</b></p><ul style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Starting pay $17.00 hourly</b></li></ul><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>What Central Offers:</b></p><ul style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Industry Leading Pay with weekly paychecks</li><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Consistent Shift Schedules</li><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Steady work</li></ul><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Job Requirements:</b></p><ul style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Ability to demonstrate excellent attendance history</li><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>One year of forklift experience</li><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>Prefer previous cross dock LTL experience</li><li style='-webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>MUST APPLY IN PERSON</b></li></ul><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'>All qualified candidates are invited to apply in person. You can do so Monday-Friday from 8:00 am to 5:00 pm.</p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'>Our facility is located at:</p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'><b style='unicode-bidi: embed; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif !important;'>11111 Naples St NE Blaine, MN 55449</b></p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'>Job Type: Part-time</p><p style='margin: 0px 0px 1em; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-family: \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif; color: rgb(0, 0, 0); font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;'>Salary: $17.00 /hour</p>\",\n                    \"date_added\": \"2018-10-15\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/1132358\",\n                    \"rep_user\": {\n                        \"email\": \"wehrmantraut@svp-partner.com\",\n                        \"id\": \"25379746\",\n                        \"first_name\": \"Bill\",\n                        \"last_name\": \"Ehrmantraut\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Eagan\",\n                        \"zip\": \"55123\",\n                        \"address1\": \"345 Main St\",\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Dock Worker/Forklift Operator II\",\n                    \"id\": 1132358,\n                    \"branch_id\": 14,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"\\n      Georgia Institute of Technology\\n  \",\n                    \"description\": \"\\r\\n                                                                                                                                                                                                  \\u0013PAGE\\u0014\\u0015\\r\\r                                                                                                                  \\rJob Title:     \\tActive Picker / Packer\\t\\t\\t\\t                   \\t\\r\\rDepartment: \\tActive\\t\\t\\t\\t\\t\\tReports to:  Active Shift Supervisor\\r\\rPrepared by:  \\tJill Mathew    Date:  01/25/22\\t\\tApproved by:\\tJanelle Chapman   Date: 01/25/22\\r\\rPurpose: The positionâ\\u0080\\u0099s purpose is to select parts associated with an internal or external customer order and to ensure the respective customer receives the correct part and quantity in both a time and cost-efficient manner.\\r\\r\\rEssential Functions: \\rReceives and reads customer orders to identify item(s) to be picked and their location code\\rPick, count the correct quantity of the correct item from the correct location\\rEnters appropriate information into computer systems to ensure correct inventory counts\\rMove inventory utilizing power industrial equipment (PIE)\\rKeep the aisles and locations clean\\rPack the product correctly (Noting the different requirements for the different areas ex: International, VAS, Purolator).  See packing training videos for reference to requirements for specific areas\\rLocate pallets and product to the designated area for loading to take place\\rFollow safety rules and regulations at all times including utilizing all harness equipment, the proper handling of hazardous waste, lock out-tag out rules, hearing, and eye protection\\rComplies with all DOT, HAZMAT and environmental policies and procedures.\\rUses all designated Personal Protective Equipment as required.\\r\\r\\rWhile this list is representative of essential job duties, it is not an all-inclusive list of duties required to perform this role. Other duties may be assigned in order to fulfill Donaldsonâ\\u0080\\u0099s mission, vision and strategic plan objectives.\\r\\rQualifications: A combination of education and experience, generally acquired through the attainment of a high school diploma, or equivalent and to perform this job successfully, an individual must be able to demonstrate ability to:\\r\\rMust be able to work with limited supervision\\rMust be able to complete basic computer skills\\rAble to stand for 8-12 hours per day\\rAble to drive equipment\\rAble to repetitively lift up to 70 pounds\\rBe able to operate power industrial equipment \\rPerform a variety of tasks throughout the day in a fast paced work environment.\\rInteract constructively and effectively with all plant employees.\\rAbility to work in a team environment toward a common goal.\\rReacts to change productively and to handle other tasks as assigned.\\rMaintains a pattern of regular and predictable attendance.\\r\\rCertifications/Licenses/Registrations:  \\r\\rJob Code:\\u0007X02001\\u0007Date Last Reviewed:\\u000706-19-2013\\u0007\\u0007Exemption Category:  \\u0007? Non-Exempt       ? Exempt\\u0007\\u0007\\rThe Human Resources department retains the sole rights and discretion to make changes to this job description\\f\\rPHYSICAL and ENVIRONMENTAL DEMANDS\\u0007\\u0007Job Title:\\u0007Active Picker Packer\\u0007Date Last Reviewed:\\u000706-19-2013\\u0007\\u0007In accordance with the spirit and requirements of the Americans with Disabilities Act, reasonable accommodations will be made to enable qualified individuals with disabilities to perform the essential functions of the job. The work schedule will vary based on the hours of operation at the assigned location and the specific business needs of the location/department. \\rPHYSICAL DEMANDS\\t\\t\\t\\t\\tENVIRONMENTAL DEMANDS / WORK CONDITIONS\\r\\u0007N/A\\u0007<33%\\u000733-66%\\u000766-100%\\u0007\\u0007\\u0007N/A\\u0007<33%\\u000733-66%\\u000766-100%\\u0007\\u0007Standing\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Wet/Humid\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Walking\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Noise\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Sitting\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Confined Areas\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Lifting 0-30 lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007High Places\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Lifting 30-50 lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Fumes/Dust/Dirt\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Lifting 50+ lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Vibration\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Carrying 0-30 lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Safety Equipment / Clothing\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Carrying 30-50 lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Equipment in Motion\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Carrying 50+ lbs\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Travel\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Dynamic Pushing (pushing an object and moving with it)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Environmental:\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Static Pushing (pushing motion without moving an object)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Mechanical\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Dynamic Pulling (pulling an object and moving with it)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Chemical\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Static Pulling (pulling motion without moving an object)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Electrical\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Climbing\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Sharp Tools\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Stooping\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Slick Floors\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Kneeling\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Explosives\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Crouching\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Radiant Energy\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Handling - 1 hand control\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Material Handling\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Handling - 2 hand control\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Machines / Tools:\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Grasping Right Hand\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Computer\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Grasping Left Hand\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Telephone\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Grasp/Turn Right Hand\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Pallet jack\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Grasp/Turn Left Hand\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Fork Lift (sit)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Finger Dexterity\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Fork Lift (stand)\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Reaching below shoulders\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Power Hand Tools\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Reaching above shoulders\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Manual Hand Tools\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Reaching across\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Reaching to floor\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007Setting:\\u0007Inside:\\u0007100%\\u0007Outside:\\u00070%\\u0007\\u0007Twisting of head\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Twisting of back\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Upper extremity ROM\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Whole body ROM\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Bending at the waist\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007Operate powered industrial vehicle\\u0007?\\u0007?\\u0007?\\u0007?\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\u0007\\rTALKING/HEARING AND VISION\\rTalking\\u0007? In person\\u0007Hearing\\u0007? In person\\u0007Vision\\u0007? Near  \\u0007? Field of vision\\u0007\\u0007\\u0007? On the phone\\u0007\\u0007? On the phone\\u0007\\u0007? Midrange\\u0007? Depth perception\\u0007\\u0007\\u0007? With public\\u0007\\u0007? Full hearing required\\u0007\\u0007? Far\\u0007\\u0007\\u0007\\r\\f\",\n                    \"date_added\": \"2021-05-03\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/15398472\",\n                    \"rep_user\": {\n                        \"email\": \"scott.m.poeschl@gmail.com\",\n                        \"id\": \"16142664\",\n                        \"first_name\": \"Scott\",\n                        \"last_name\": \"Poeschl\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30305\",\n                        \"address1\": \"3495 Piedmont Road\",\n                        \"address2\": \"\",\n                        \"state\": \"GA\"\n                    },\n                    \"title\": \"Solutions Engineer\",\n                    \"id\": 15398472,\n                    \"branch_id\": 14621,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$15/hr\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Myrmidon\",\n                    \"description\": \"\\r\\nTest Job Description. Test Job Description. Test Job Description. Test Job Description. Test Job Description. Test Job Description. \\r\\rWe are looking for a passionate Software Engineer to design, develop and install software solutions.\\rSoftware Engineer responsibilities include gathering user requirements, defining system functionality and writing code in various languages, like Java, Ruby on Rails or .NET programming languages (e.g. C++ or JScript.NET.) Our ideal candidates are familiar with the software development life cycle (SDLC) from preliminary system analysis to tests and deployment.\\rUltimately, the role of the Software Engineer is to build high-quality, innovative and fully performing software that complies with coding standards and technical design.\\r\\r\\r\\r\\r\\r\\f\",\n                    \"date_added\": \"2021-05-24\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/15658802\",\n                    \"rep_user\": {\n                        \"email\": \"jdscbr@icloud.com\",\n                        \"id\": \"27099338\",\n                        \"first_name\": \"Jason\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fredericksburg\",\n                        \"zip\": \"22405\",\n                        \"address1\": \"1799 Sherwoord Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"Testing job1\",\n                    \"id\": 15658802,\n                    \"branch_id\": 3097,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$13.33/hr\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Dahms Enterprise\",\n                    \"description\": \"\\r\\nDelivery Driver\\r[Intro Paragraph]Â The best job ads use the first two or three sentences to introduce prospective delivery drivers to their company. Talk about your company culture and working environment right here to set your company apart from competing listings.\\rDelivery Driver Job Responsibilities:\\rDelivers high-quality products to our customers in a safe, courteous, and timely manner.\\rEstablishes and maintains outstanding relations with customers.\\rReviews and verifies invoices and purchase requests to ensure accuracy.\\rInspects delivery vehicles and ensures the safety and security of the loading and unloading process.\\rContacts customers to confirm delivery details.\\rDetermines placement of merchandise, follows safety and lifting protocols during deliveries, and conducts safety reviews.\\rMaintains delivery logs and records.\\r[Work Hours & Benefits]Â This is the ideal place to discuss yourÂ working hours and benefits. Tell potential applicants about seasonal work hours or overtime requirements. You can also talk about the benefits â\\u0080\\u0094 like paid vacation time or family leave â\\u0080\\u0094 that set your establishment apart.\\rDelivery Driver Qualifications / Skills:\\rExcellent communication and organizational skills\\rStrong interpersonal and problem-solving abilities\\rFamiliarity with local streets, neighborhoods, and routes\\rHighly responsible & reliable\\rAbility to work well under pressure in a fast-paced environment\\rAbility to work cohesively as part of a team\\rEducation, Experience, and Licensing Requirements:\\rHigh school diploma, GED, or equivalent\\rValid driverâ\\u0080\\u0099s license\\rClean driving record\\rFamiliarity with Radio Frequency (RF) equipment preferred\\r[Call to Action]Â Now that prospective drivers are familiar with your location and the job requirements, you need a strongÂ call to actionÂ to encourage them to apply. Turn interested job seekers into actual applicants by letting them know who to contact at your company to apply and how to submit an application or resume.\\r\\f\",\n                    \"date_added\": \"2021-11-09\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/19018847\",\n                    \"rep_user\": {\n                        \"email\": null,\n                        \"id\": null,\n                        \"first_name\": null,\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Stillwater\",\n                        \"zip\": \"55082\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Forklift Driver\",\n                    \"id\": 19018847,\n                    \"branch_id\": 12243,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"On Fire\",\n                    \"company_name\": \"Diamond Dogs Enterprise\",\n                    \"description\": null,\n                    \"date_added\": \"2021-11-29\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/19667116\",\n                    \"rep_user\": {\n                        \"email\": \"angela.boike@avionte.com\",\n                        \"id\": \"111283\",\n                        \"first_name\": \"Angela\",\n                        \"last_name\": \"Boike\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55423\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Best Believer\",\n                    \"id\": 19667116,\n                    \"branch_id\": 9,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$15/hr\",\n                    \"status\": \"On Fire\",\n                    \"company_name\": \"Google\",\n                    \"description\": \"\\r\\nReceptionist\\r[Intro paragraph]Â ????Just a few sentences at the start of your receptionist job description introducing your business to prospective candidates can really kick off your job listing. Highlight your unique company culture and working environment and take this opportunity to set your company apart from competing job listings and sell yourself to job seekers.????\\rReceptionist Job Responsibilities:\\rServes visitors by greeting, welcoming, and directing them appropriately.\\rNotifies company personnel of visitor arrival.\\rMaintains security and telecommunications system.\\rInforms visitors by answering or referring inquiries.\\rDirects visitors by maintaining employee and department directories.\\rMaintains security by following procedures, monitoring logbook, and issuing visitor badges.\\rOperates telecommunication system by following manufacturerâ\\u0080\\u0099s instructions for house phone and console operation.\\rKeeps a safe and clean reception area by complying with procedures, rules, and regulations.\\rSupports continuity among work teams by documenting and communicating actions, irregularities, and continuing needs.\\rContributes to team effort by accomplishing related results as needed.\\r[Work Hours & Benefits]Â You also want to include your companyâ\\u0080\\u0099sÂ working hours and benefits. Try to sell potential applicants on things like overtime or seasonal availability, as well as the benefits that set your business apart, like paid vacation time, commuting credits, or childcare reimbursements.\\rReceptionist Qualifications / Skills:\\rTelephone Skills\\rVerbal Communication\\rListening\\rProfessionalism\\rCustomer Focus\\rOrganization\\rInforming Others\\rHandles Pressure\\rSupply Management\\rEducation, Experience, and Licensing Requirements:\\rUniversity/college degree is an asset\\rFamiliarity with phone systems\\rPrevious experience with Microsoft Office software preferred\\r[Call to Action]Â Youâ\\u0080\\u0099ve gotten job huntersâ\\u0080\\u0099 attention with a strong front desk job description; now how do you get their application? You need a compellingÂ call to actionÂ right here, telling prospective receptionists know exactly how to apply. Let them know how and where to submit their resume, who to contact at your company, or to click the â\\u0080\\u009capplyâ\\u0080\\u009d button at the top of the ad.\\r\\f\",\n                    \"date_added\": \"2022-11-30\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/22539483\",\n                    \"rep_user\": {\n                        \"email\": null,\n                        \"id\": null,\n                        \"first_name\": null,\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Eagan\",\n                        \"zip\": \"55121\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Receptionist\",\n                    \"id\": 22539483,\n                    \"branch_id\": 3097,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Pipeline\",\n                    \"company_name\": \"Myrmidon\",\n                    \"description\": \"\\r\\nTest Job Description. Test Job Description. Test Job Description. Test Job Description. Test Job Description. Test Job Description. \\r\\r\\r\\r\\r\\f\\r\\ntesting test candidate testers \\n\",\n                    \"date_added\": \"2021-05-25\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/24686037\",\n                    \"rep_user\": {\n                        \"email\": null,\n                        \"id\": null,\n                        \"first_name\": null,\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fredericksburg\",\n                        \"zip\": \"22405\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"Testing Tester\",\n                    \"id\": 24686037,\n                    \"branch_id\": 3097,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$35/hr\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Dahms Enterprise\",\n                    \"description\": \"\\r\\nMaterial Handler\\rMaterial Handler Job Responsibilities:\\rEnsures orderly production and distribution of products by pulling orders from inventory, delivering production materials and supplies where needed, and staging finished product final distribution.\\rContributes to the orderly operation of stock and/or materials storage area.\\rMaintains inventory by identifying, labeling, and keeping materials and supplies in stock, recording location of inventory, and reporting shortages.\\rLocates materials and supplies by pulling and verifying materials and supplies listed on production orders.\\rMaintains in-process inventory at work centers by delivering and opening materials and supplies.\\rLocates and packs materials for shipping.\\rDocuments materials and records units delivered and location of units.\\rReceives credit-return material and supplies from production by verifying materials and supply codes, lot numbers, and quantities.\\rPrepares finished stock for shipment by identifying, pulling, packing, crating, loading, and securing product.\\rDocuments product shipment by recording units shipped.\\rMaintains material-handling equipment by completing pre-use inspections and making operator repairs.\\rOperates forklifts, pallet jacks, and other machinery to move items, or signals machine operators to move materials onto and off trucks, ships, and loading docks.\\rKeeps inventory, loading areas, and machinery clean.\\rOpen containers, sort, and catalog materials.\\rLearns and adheres to workplace safety regulations.\\rMaterial Handler Skills/Qualifications:\\rOrganizational skills\\rAbility to read and analyze Information\\rAdept at handling multiple complex tasks simultaneously\\rProficiency with prioritizing and meeting multiple deadlines\\rExcellent time management\\rProcess improvement mindset\\rKnowledge of inventory control\\rAbility to lift heavy materials\\rData entry skills\\rEducation, Experience, & Licensing Requirements:\\rHigh school diploma or GED\\rValid driverâ\\u0080\\u0099s license and safe driving record\\rPrevious stock or inventory experience a plus\\rPrevious experience operating a forklift or pallet jack a plus\\r\\f\\r\\nMaterial HandlerMaterial Handler Job Responsibilities:Ensures orderly production and distribution of products by pulling orders from inventory, delivering production materials and supplies where needed, and staging finished product final distribution.Contributes to the orderly operation of stock and/or materials storage area.Maintains inventory by identifying, labeling, and keeping materials and supplies in stock, recording location of inventory, and reporting shortages.Locates materials and supplies by pulling and verifying materials and supplies listed on production orders.Maintains in-process inventory at work centers by delivering and opening materials and supplies.Locates and packs materials for shipping.Documents materials and records units delivered and location of units.Receives credit-return material and supplies from production by verifying materials and supply codes, lot numbers, and quantities.Prepares finished stock for shipment by identifying, pulling, packing, crating, loading, and securing product.Documents product shipment by recording units shipped.Maintains material-handling equipment by completing pre-use inspections and making operator repairs.Operates forklifts, pallet jacks, and other machinery to move items, or signals machine operators to move materials onto and off trucks, ships, and loading docks.Keeps inventory, loading areas, and machinery clean.Open containers, sort, and catalog materials.Learns and adheres to workplace safety regulations.Material Handler Skills/Qualifications:Organizational skillsAbility to read and analyze InformationAdept at handling multiple complex tasks simultaneouslyProficiency with prioritizing and meeting multiple deadlinesExcellent time managementProcess improvement mindsetKnowledge of inventory controlAbility to lift heavy materialsData entry skillsEducation, Experience, & Licensing Requirements:High school diploma or GEDValid driverâ\\u0080\\u0099s license and safe driving recordPrevious stock or inventory experience a plusPrevious experience operating a forklift or pallet jack a plus \",\n                    \"date_added\": \"2024-03-06\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/34525877\",\n                    \"rep_user\": {\n                        \"email\": null,\n                        \"id\": null,\n                        \"first_name\": null,\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Eagan\",\n                        \"zip\": \"55121\",\n                        \"address1\": \"1270 Eagan Industrial Rd\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Material Handler\",\n                    \"id\": 34525877,\n                    \"branch_id\": 3097,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$13.33/hr\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Dahms Enterprise\",\n                    \"description\": \"\\r\\nMaterial Handler\\rMaterial Handler Job Responsibilities:\\rEnsures orderly production and distribution of products by pulling orders from inventory, delivering production materials and supplies where needed, and staging finished product final distribution.\\rContributes to the orderly operation of stock and/or materials storage area.\\rMaintains inventory by identifying, labeling, and keeping materials and supplies in stock, recording location of inventory, and reporting shortages.\\rLocates materials and supplies by pulling and verifying materials and supplies listed on production orders.\\rMaintains in-process inventory at work centers by delivering and opening materials and supplies.\\rLocates and packs materials for shipping.\\rDocuments materials and records units delivered and location of units.\\rReceives credit-return material and supplies from production by verifying materials and supply codes, lot numbers, and quantities.\\rPrepares finished stock for shipment by identifying, pulling, packing, crating, loading, and securing product.\\rDocuments product shipment by recording units shipped.\\rMaintains material-handling equipment by completing pre-use inspections and making operator repairs.\\rOperates forklifts, pallet jacks, and other machinery to move items, or signals machine operators to move materials onto and off trucks, ships, and loading docks.\\rKeeps inventory, loading areas, and machinery clean.\\rOpen containers, sort, and catalog materials.\\rLearns and adheres to workplace safety regulations.\\rMaterial Handler Skills/Qualifications:\\rOrganizational skills\\rAbility to read and analyze Information\\rAdept at handling multiple complex tasks simultaneously\\rProficiency with prioritizing and meeting multiple deadlines\\rExcellent time management\\rProcess improvement mindset\\rKnowledge of inventory control\\rAbility to lift heavy materials\\rData entry skills\\rEducation, Experience, & Licensing Requirements:\\rHigh school diploma or GED\\rValid driverâ\\u0080\\u0099s license and safe driving record\\rPrevious stock or inventory experience a plus\\rPrevious experience operating a forklift or pallet jack a plus\\r\\f\\r\\nMaterial HandlerMaterial Handler Job Responsibilities:Ensures orderly production and distribution of products by pulling orders from inventory, delivering production materials and supplies where needed, and staging finished product final distribution.Contributes to the orderly operation of stock and/or materials storage area.Maintains inventory by identifying, labeling, and keeping materials and supplies in stock, recording location of inventory, and reporting shortages.Locates materials and supplies by pulling and verifying materials and supplies listed on production orders.Maintains in-process inventory at work centers by delivering and opening materials and supplies.Locates and packs materials for shipping.Documents materials and records units delivered and location of units.Receives credit-return material and supplies from production by verifying materials and supply codes, lot numbers, and quantities.Prepares finished stock for shipment by identifying, pulling, packing, crating, loading, and securing product.Documents product shipment by recording units shipped.Maintains material-handling equipment by completing pre-use inspections and making operator repairs.Operates forklifts, pallet jacks, and other machinery to move items, or signals machine operators to move materials onto and off trucks, ships, and loading docks.Keeps inventory, loading areas, and machinery clean.Open containers, sort, and catalog materials.Learns and adheres to workplace safety regulations.Material Handler Skills/Qualifications:Organizational skillsAbility to read and analyze InformationAdept at handling multiple complex tasks simultaneouslyProficiency with prioritizing and meeting multiple deadlinesExcellent time managementProcess improvement mindsetKnowledge of inventory controlAbility to lift heavy materialsData entry skillsEducation, Experience, & Licensing Requirements:High school diploma or GEDValid driverâ\\u0080\\u0099s license and safe driving recordPrevious stock or inventory experience a plusPrevious experience operating a forklift or pallet jack a plus \",\n                    \"date_added\": \"2024-06-14\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/36930349\",\n                    \"rep_user\": {\n                        \"email\": null,\n                        \"id\": null,\n                        \"first_name\": null,\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Eagan\",\n                        \"zip\": \"55121\",\n                        \"address1\": \"1270 Eagan Industrial Rd\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Forklift Driver\",\n                    \"id\": 36930349,\n                    \"branch_id\": 1697,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"ABC Company\",\n                    \"description\": \"\\r\\nReceptionist\\r[Intro paragraph]Â  ????New Text Just a few sentences at the start of your receptionist job description introducing your business to prospective candidates can really kick off your job listing. Highlight your unique company culture and working environment and take this opportunity to set your company apart from competing job listings and sell yourself to job seekers.????\\rReceptionist Job Responsibilities:\\rServes visitors by greeting, welcoming, and directing them appropriately.\\rNotifies company personnel of visitor arrival.\\rMaintains security and telecommunications system.\\rInforms visitors by answering or referring inquiries.\\rDirects visitors by maintaining employee and department directories.\\rMaintains security by following procedures, monitoring logbook, and issuing visitor badges.\\rOperates telecommunication system by following manufacturerâ\\u0080\\u0099s instructions for house phone and console operation.\\rKeeps a safe and clean reception area by complying with procedures, rules, and regulations.\\rSupports continuity among work teams by documenting and communicating actions, irregularities, and continuing needs.\\rContributes to team effort by accomplishing related results as needed.\\r[Work Hours & Benefits]Â You also want to include your companyâ\\u0080\\u0099sÂ working hours and benefits. Try to sell potential applicants on things like overtime or seasonal availability, as well as the benefits that set your business apart, like paid vacation time, commuting credits, or childcare reimbursements.\\rReceptionist Qualifications / Skills:\\rTelephone Skills\\rVerbal Communication\\rListening\\rProfessionalism\\rCustomer Focus\\rOrganization\\rInforming Others\\rHandles Pressure\\rSupply Management\\rEducation, Experience, and Licensing Requirements:\\rUniversity/college degree is an asset\\rFamiliarity with phone systems\\rPrevious experience with Microsoft Office software preferred\\r[Call to Action]Â Youâ\\u0080\\u0099ve gotten job huntersâ\\u0080\\u0099 attention with a strong front desk job description; now how do you get their application? You need a compellingÂ call to actionÂ right here, telling prospective receptionists know exactly how to apply. Let them know how and where to submit their resume, who to contact at your company, or to click the â\\u0080\\u009capplyâ\\u0080\\u009d button at the top of the ad.\\r\\f\\r\\nReceptionist[Intro paragraph]  ????New Text Just a few sentences at the start of your receptionist job description introducing your business to prospective candidates can really kick off your job listing. Highlight your unique company culture and working environment and take this opportunity to set your company apart from competing job listings and sell yourself to job seekers.????Receptionist Job Responsibilities:Serves visitors by greeting, welcoming, and directing them appropriately.\\nNotifies company personnel of visitor arrival.\\nMaintains security and telecommunications system.\\nInforms visitors by answering or referring inquiries.\\nDirects visitors by maintaining employee and department directories.\\nMaintains security by following procedures, monitoring logbook, and issuing visitor badges.\\nOperates telecommunication system by following manufacturerâ\\u0080\\u0099s instructions for house phone and console operation.\\nKeeps a safe and clean reception area by complying with procedures, rules, and regulations.\\nSupports continuity among work teams by documenting and communicating actions, irregularities, and continuing needs.\\nContributes to team effort by accomplishing related results as needed.\\n[Work Hours & Benefits] You also want to include your companyâ\\u0080\\u0099s working hours and benefits. Try to sell potential applicants on things like overtime or seasonal availability, as well as the benefits that set your business apart, like paid vacation time, commuting credits, or childcare reimbursements.Receptionist Qualifications / Skills:Telephone Skills\\nVerbal Communication\\nListening\\nProfessionalism\\nCustomer Focus\\nOrganization\\nInforming Others\\nHandles Pressure\\nSupply Management\\nEducation, Experience, and Licensing Requirements:University/college degree is an asset\\nFamiliarity with phone systems\\nPrevious experience with Microsoft Office software preferred\\n[Call to Action] Youâ\\u0080\\u0099ve gotten job huntersâ\\u0080\\u0099 attention with a strong front desk job description; now how do you get their application? You need a compelling call to action right here, telling prospective receptionists know exactly how to apply. Let them know how and where to submit their resume, who to contact at your company, or to click the â\\u0080\\u009capplyâ\\u0080\\u009d button at the top of the ad. \\n\",\n                    \"date_added\": \"2024-07-03\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/37314220\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"27099339\",\n                        \"first_name\": \"Tiffany\",\n                        \"last_name\": \"Shoemaker\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lakeville\",\n                        \"zip\": \"\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"MN\"\n                    },\n                    \"title\": \"Software Developer\",\n                    \"id\": 37314220,\n                    \"branch_id\": 1041,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Sharp Electronics\",\n                    \"description\": \"\\r\\nSales Representative[Intro paragraph] The job postings that garner the most attention take the next two to three sentences to introduce their business to prospective sales representatives. Take this opportunity to set your company apart from competing listings and sell yourself to job seekers by highlighting the unique company culture, working environment, and anything else you bring to the table for new hires.Sales Representative Job Responsibilities:Serves customers by selling products and meeting customer needs.Services existing accounts, obtains orders, and establishes new accounts by planning and organizing daily work schedule to call on existing or potential sales outlets and other trade factors.Adjusts content of sales presentations by studying the type of sales outlet or trade factor.Focuses sales efforts by studying existing and potential volume of dealers.Submits orders by referring to price lists and product literature.Keeps management informed by submitting activity and results reports, such as daily call reports, weekly work plans, and monthly and annual territory analyses.Monitors competition by gathering current marketplace information on pricing, products, new products, delivery schedules, and merchandising techniques.Recommends changes in products, service, and policy by evaluating results and competitive developments.Resolves customer complaints by investigating problems, developing solutions, preparing reports, and making recommendations to management.Maintains professional and technical knowledge by attending educational workshops, reviewing professional publications, establishing personal networks, and participating in professional societies.Provides historical records by maintaining records on area and customer sales.Contributes to team effort by accomplishing related results as needed.[Work Hours & Benefits] This is an excellent spot to highlight your companyâ\\u0080\\u0099s work hours and benefits. Let potential applicants know about the opportunity for overtime or seasonal work. You should also list any benefits that set your firm apart, like commissions, commuting credits, paid vacation time, or family leave.Sales Representative Qualifications/Skills:Customer serviceMeeting sales goalsClosing skillsTerritory managementProspecting skillsNegotiationSelf-confidenceProduct knowledgePresentation skillsClient relationshipsMotivation for salesEducation, Experience, and Licensing Requirements:BA/BS University degree with a concentration in marketing, promotions, advertising sales, or business administration preferredThree to five years of industry sales experienceFamiliarity with office software and phone systems[Call to Action] Now that prospective sales reps are familiar with your company and the job requirements, you need a compelling call to action to turn them into applicants. Let them know who to contact at your company to apply, or how and where to submit an application, resume, and supporting documents. \",\n                    \"date_added\": \"2024-09-19\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/38270619\",\n                    \"rep_user\": {\n                        \"email\": \"jamie.flores@avionte.com\",\n                        \"id\": \"27653450\",\n                        \"first_name\": \"Jamie\",\n                        \"last_name\": \"Flores\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79928\",\n                        \"address1\": \"114 Gateway West\",\n                        \"address2\": \"\",\n                        \"state\": \"TX\"\n                    },\n                    \"title\": \"Admin\",\n                    \"id\": 38270619,\n                    \"branch_id\": 3097,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Test Company\",\n                    \"description\": \"<div fr-original-style=\\\"\\\" style=\\\"box-sizing: border-box; font-family: inherit; font-size: inherit;\\\">Test</div>\",\n                    \"date_added\": \"2024-11-25\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/39862630\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"27099339\",\n                        \"first_name\": \"Tiffany\",\n                        \"last_name\": \"Shoemaker\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Testing Job\",\n                    \"id\": 39862630,\n                    \"branch_id\": 1041,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"ABC Company\",\n                    \"description\": null,\n                    \"date_added\": \"2024-12-06\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/40151589\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"27099339\",\n                        \"first_name\": \"Tiffany\",\n                        \"last_name\": \"Shoemaker\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lakeville\",\n                        \"zip\": \"55044\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"AL\"\n                    },\n                    \"title\": \"QA Tester\",\n                    \"id\": 40151589,\n                    \"branch_id\": 14621,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"New\",\n                    \"company_name\": \"Myrmidon\",\n                    \"description\": \"\\r\\nPOEJO to candidate:\\rHyundai is an electric car part company that makes seats for the lucid vehicles- Have you ever seen these cars before? If not send them a link to lucid website and talk up the tech on the cars (fully automated, massaging seats, heating and cooling components)Â \\rOnce hired on pay goes from 17-20.25Â \\rWill receive cost of living bonus \\rTeam culture is huge- they celebrate all birthdays, have quarterly recognitions, team raffles and lunches oftenÂ \\rClean state of the art facility that is air conditionedÂ \\r\\rJob Duties:Production \\rstanding assembly line work- putting seats together for Lucid Motors \\rrotate different stations throughout day- not standing in one spot all day\\rwork with small hand tools\\rassembling parts and components for seats \\rassembling complete seat together \\rpulling seat covers over frame\\rStrong Attention to detail \\rTedous hand work \\rIroning specific leather \\r\\r\\rLogistics \\rUnloading products off truck\\rOrganizing in warehouse \\rInputting receiving data into computer \\rKitting seat parts for production \\rSupplying the line with materials \\rShipping final product out \\rLocates materials and supplies by pulling and verifying materials and supplies listed on production orders. \\rEscalates part shorts and missing material in a timely manner.\\rCleaning up warehouse and using compactor for cardboard materials \\rPaper packing list \\rShipping/receiving\\rForklift \\rElectric Pallet jack/ Manual \\rStrong Attention to detail \\r\\r\\r\\r\\r\\r\\r\\rQuality Control \\rÂ inspecting and testing products at various stages of production to ensure they meet established quality standards.\\r including company specifications and legal regulations, by monitoring production processes, identifying defects, and recommending corrective actions to maintain high product qual\\rVisually examining products for defects, performing functional tests as needed.\\rRecording inspection results, identifying trends in defects, and generating reports to highlight quality issues.\\rObserving production processes to ensure adherence to quality standards and identifying potential problems early on. \\r\\r\\rSchedule: M-F 5:45am-2:30pm with Mandatory Overtime\\r\\rCompany Requirements\\u0007Mini IV Questions\\u0007Candidate Qualifications\\u0007\\u0007High School Diploma/ GED and US Citizenship/BG\\u0007Do you have a HS Diploma or GED? Education verification done at conversion\\u000b\\u000bAre you able to provide a US Passport or Birth Certificate? Proof of Citizenship.\\r\\rMust have a clear BG/DS â\\u0080\\u0093 NOTTHC friendly\\u0007\\u0007\\u0007Transportation- not public accessible- must have vehicle\\u0007What is your current transportation for getting to and from work?Â (Needs own vehicle)\\rHow reliable is your current transportation?\\rNo, bus route!!\\rTell Me about a time you had car trouble, what did you do?\\rHow did you make it to work on time? \\rWould you be comfortable using uber or LYFT if something happened to your transportation?\\r\\u0007\\u0007\\u0007Lifting of 50lbs repeatedly \\r\\u0007Tell me about a job where you had to lift or team lift up to 50lbs frequently during your shift? \\r\\rWhat were you lifting? \\rDoes the thought of having to lift 50lbs + concern you in your next job? \\rDo you have any restrictions we should\\rKnow about now? \\rHave you ever had any issues lifting in the past? \\rHas lifting caused job abandonment? \\rWhat are comfortable lifting? \\r\\rTell me a time when you were told to lift an object and you were unable to do so? \\r\\rDid you ask for help? \\rDid you lift yourself? \\rDid you express how you could not do it on your own? Instead of risking to damaging product if it falls out of your hands. \\u0007\\u0007\\u0007Reliability\\rMandatory OT with 24/hr notice\\u0007Have you worked a position with mandatory OT? When did you typically find out? And were you always available to work the overtime with no problem? \\r\\rWhat are some reasons for missing work/tardiness?\\r\\rWhat priorities outside of work do you have now that could require you to miss work? (school/ 2nd job)\\rWhat is important to you and what do you bring to this company? \\rWhat makes you a good asset to this manufacturing facility? \\r\\u0007\\u0007\\u0007Types of Tools\\rSmall hand tools, power tools, impact drills\\r\\rLogistics \\rInventory \\rQuality \\rShipping \\rReceiving \\r\\u0007What types of tools have you worked with in the past? Power, hand, etc.\\r\\rHow often were you using these tools?\\r\\rWhat were you building/ assembling?\\r\\rAre you comfortable with working with your hands throughout your whole shift? \\r\\r\\rHave you ever worked in a logistics department in the lines of Material handling? \\rOrder selecting? \\rWhat were you order picking? \\rDid you have trouble catching on to the codes and colors? \\r\\rGive me an example of when you were rewarded for strong attention to detail? \\rWhen inspecting, what were you looking for? And what were you inspecting? \\rHave you ever caught something on a product whether it was damaged or the wrong code or color/item? \\r\\rHave you ever worked off a paper packing list? \\r\\rDid you have a daily quota? \\r\\rDo you have forklift experience? \\r\\rAre you forklift certified? \\rHave you ever been in a forklift accident or near miss? \\r\\rHow many years of FL experience do you have? \\r\\r Do you have experience unloading/loading merchandise to trailer? \\rExperience with electric pallet jack or Manual? \\r\\r\\u0007\\r\\u0007\\u0007Very Physical on your feet 10-12 hours and must have hand strength.\\r\\u0007In your last position were you doing repetitive task, or did you switch throughout the day?\\r\\rAre you comfortable with fast paced repetitive work?\\rAre you also comfortable with lifting repetitively as well. \\r\\u0007\\u0007\\u0007Walking/ On feet all day \\rCould do a lot of walking to move finished product could walk up to a couple miles a day\\u0007Tell me about your last position were you standing and or sitting?\\rIn your last job how, much walking did you doing?\\rDo you feel comfortable with being on your feet all day? \\u0007\\r\\u0007\\u0007Metrics\\rOpen to working in a fast-paced environment     \\u0007In your last position, did you have metrics you needed to meet per hour?\\rHow did you do?\\rRate yourself from 1-10\\u0007\\u0007\\u0007Job Experience\\rLongevity, current experience\\u0007Have you worked in a production/assembly environment?\\rTell me about it.\\rWhat did you not like about the position?\\rWhat did you dislike? \\rAnd what could have made it better? \\rDo you work better as a team or alone? \\r\\u0007\\r\\u0007\\u0007\\r\\f\",\n                    \"date_added\": \"2025-01-31\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/42734608\",\n                    \"rep_user\": {\n                        \"email\": \"jdscbr@icloud.com\",\n                        \"id\": \"27099338\",\n                        \"first_name\": \"Jason\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fredericksburg\",\n                        \"zip\": \"22405\",\n                        \"address1\": \"1799 Sherwoord Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"hiring event 2/4\",\n                    \"id\": 42734608,\n                    \"branch_id\": 14621,\n                    \"type\": \"Temporary\"\n                },\n                {\n                    \"pay_rate\": \"$15/hr\",\n                    \"status\": \"Hot\",\n                    \"company_name\": \"Myrmidon\",\n                    \"description\": \"<div fr-original-style=\\\"font-family: Roboto,sans-serif;font-size: 13px;\\\" style=\\\"font-family: Roboto, sans-serif; font-size: 13px; box-sizing: border-box;\\\">Testing Notes</div>\",\n                    \"date_added\": \"2025-03-04\",\n                    \"url\": \"https://staffdemo2.myavionte.com/app/#/job/44124739\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"27099339\",\n                        \"first_name\": \"Tiffany\",\n                        \"last_name\": \"Shoemaker\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fredericksburg\",\n                        \"zip\": \"22405\",\n                        \"address1\": \"1799 Sherwoord Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"QA Tester\",\n                    \"id\": 44124739,\n                    \"branch_id\": 3097,\n                    \"type\": \"Permanent\"\n                }\n            ],\n            \"count\": \"15\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"User GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.276635\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-03-18T01:25:46\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjpBVW1ZK1k3b2hMT2pOT0NxRmYzYXBQdFN6ODVCSWVkaQ==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"15 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/users\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"8.244399\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"15 jobs returned\"\n}"}],"_postman_id":"9bd71697-abf2-4fd8-bd01-67d6ae72c3d6"},{"name":"Job Get By ID","id":"7d965991-6108-4475-a2ec-179307bd4b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 15658802\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - job ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 1130803\n    }\n  }\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7735c9d1-bd62-4511-b920-6959e99777ca","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"\r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 44124739\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Apr 2025 04:12:17 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"681"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3474891"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"30\",\n                    \"status\": \"Hot\",\n                    \"company_name\": \"Myrmidon\",\n                    \"rate_type\": \"HourlyRate\",\n                    \"description\": \"\\r\\nThis is a job description\\f\\r\\nThis is a job description\",\n                    \"date_added\": \"2025-03-04\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fredericksburg\",\n                        \"zip\": \"22405\",\n                        \"address1\": \"1799 Sherwoord Drive\",\n                        \"state\": \"VA\"\n                    },\n                    \"title\": \"QA Tester\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": 27099339,\n                        \"phone\": \"(716) 320-3209\",\n                        \"first_name\": \"Tiffany\",\n                        \"last_name\": \"Shoemaker\"\n                    },\n                    \"branch_id\": 3097,\n                    \"type\": \"Permanent\",\n                    \"id\": 44124739\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"User GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.30767\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-04-24T04:12:18\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/users\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.970189\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"7d965991-6108-4475-a2ec-179307bd4b6d"}],"id":"058c1e89-c2d8-41b3-9b09-382e0565ffa1","event":[{"listen":"prerequest","script":{"id":"0a7a97c9-d4cc-4ab6-a005-b1fce63a7dee","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"903be10a-2b75-4414-8f42-dd8903004572","type":"text/javascript","exec":[""]}}],"_postman_id":"058c1e89-c2d8-41b3-9b09-382e0565ffa1","description":""},{"name":"Note","item":[{"name":"Note Set","id":"d5741db3-f85e-402a-ba26-8866487add0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",      \r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 100033296,\r\n        \"name\": \"Interview\",\r\n        \"comments\": \"This is a test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>comments - <strong>REQUIRED</strong></p>\n</li>\n<li><p>type - <strong>REQUIRED</strong> - type of Note</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 100033296,\n        \"name\": \"Interview\",\n        \"comments\": \"This is a test\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"067df3a5-a355-4ea3-83e6-01f85c729ec0","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",      \r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 100033296,\r\n        \"name\": \"Note\",\r\n        \"comments\": \"This is another test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Mar 2025 18:14:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"525"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"470917"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"show_in\": 1,\n            \"name\": \"Note\",\n            \"userId\": 115490,\n            \"typeId\": 7,\n            \"talentId\": 100033296,\n            \"notes\": \"This is another test\",\n            \"activityDate\": \"2025-03-25T11:00:00Z\",\n            \"id\": 1854590013\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.07549\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-03-25T18:14:59\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"talentId\\\":100033296,\\\"show_in\\\":1,\\\"notes\\\":\\\"This is another test\\\",\\\"userId\\\":115490,\\\"activityDate\\\":\\\"03/25/2025\\\",\\\"typeId\\\":7}\",\n            \"call\": \"https://api.avionte.com/front-office/v1/talent/100033296/activity\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.427616\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"d5741db3-f85e-402a-ba26-8866487add0b"}],"id":"4ed6ddf1-5882-40ea-bb8f-5642d780d79c","event":[{"listen":"prerequest","script":{"id":"825e2cc8-d166-45ca-a4d9-9779b84f550d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"14eaf461-1664-46ff-ba52-f416161a774d","type":"text/javascript","exec":[""]}}],"_postman_id":"4ed6ddf1-5882-40ea-bb8f-5642d780d79c","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"22b8a7cb-7b00-4f60-aedb-b36f31b0f6fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"caa864d9-906d-4f60-8fcf-d1303301351f","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_pw\": \"{{avionte_bold_api_pw}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Sep 2022 19:28:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"530"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"465598"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-09-26T19:28:26\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-09-26T19:28:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"avionte_bold\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"client_credentials\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"partner.api.haleymarketing\\\",\\\"scope\\\":\\\"avionte.aero.compasintegrationservice\\\"}\",\n            \"call\": \"https://partner-api.avionte.com/authorize/token\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.483553\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"22b8a7cb-7b00-4f60-aedb-b36f31b0f6fc"}],"id":"484f1e85-4b2b-4754-b6fa-dc97c9817338","event":[{"listen":"prerequest","script":{"id":"1018c45a-8497-494c-9198-90169e6e1e04","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2e2ee28a-1e14-4b1c-a40c-09b48de084f1","type":"text/javascript","exec":[""]}}],"_postman_id":"484f1e85-4b2b-4754-b6fa-dc97c9817338","description":""},{"name":"User","item":[{"name":"User Get","id":"5cb1ce1a-5a73-40fc-9161-51bd78e9149f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get","description":"<p>For retrieving rep data.</p>\n\n<ul>\n<li>id - <strong>OPTIONAL</strong> - user ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n    }\n  }\n\n</code></pre>","urlObject":{"path":["user","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"76784f7b-92ef-4707-a05e-1d76315b0613","name":"User Get by ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 391\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Apr 2025 04:20:25 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"452"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"680597"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/user/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"users\": [\n                {\n                    \"email\": \"jdoe@mycompas.c0m\",\n                    \"id\": 391,\n                    \"phone\": \"\",\n                    \"first_name\": \"Jane\",\n                    \"last_name\": \"Doe\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"User GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.265513\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-04-24T04:20:26\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 user returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/users\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.462165\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_user\"\n    },\n    \"atsconnect_message\": \"1 user returned\"\n}"},{"id":"0b58836d-6685-41b1-b97a-edc29f1a39d3","name":"User Get - All Users","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{avionte_bold_api_id}}\",\r\n      \"api_secret\": \"{{avionte_bold_api_secret}}\",\r\n      \"api_un\": \"{{avionte_bold_api_un}}\",\r\n      \"api_subscription_id\": \"{{avionte_bold_api_subscription_id}}\",\r\n      \"api_json_feed_id\": \"{{avionte_bold_api_json_feed_id}}\"      \r\n    },\r\n    \"vendor\": \"avionte_bold\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 21 Jun 2025 20:00:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"25663"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1868300"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/user/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"469\",\n            \"users\": [\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jdoe@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 391,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Doe\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Jane\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 391,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:10:59.817+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john.doe@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 392,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Doe\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"John\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 392,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:11:26.463+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jstaley@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 461,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Staley\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Joe\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 461,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:29:06.14+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mmcdonald@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 465,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"McDonald\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Mark\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 465,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:12:16.943+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bbochey@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 466,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Bochey\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Bruce\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 466,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:12:49.86+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"vdavis@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 468,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Davis\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Vernon\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 468,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:13:33.947+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"buster@mycompas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 469,\n                    \"officeDivision\": null,\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Posey\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Buster\",\n                    \"officeName\": null,\n                    \"email2\": null,\n                    \"userId\": 469,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:13:53.837+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"nbradach@method360.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 268,\n                    \"officeDivision\": null,\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Bradach\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Noah\",\n                    \"officeName\": null,\n                    \"email2\": \"\",\n                    \"userId\": 268,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": null,\n                    \"isArchived\": true,\n                    \"createdDate\": \"2009-03-18T08:49:35.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 269,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Staff4\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"COMPAS\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 269,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2009-03-18T08:55:24.893+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"As2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 267,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Diaz\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Angelina\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 267,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2009-03-18T08:47:12.003+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jack@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 338,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"8 California St. Suite 700\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Franisco\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Smith\",\n                    \"homePhone\": \"(888) 55-COMPAS\",\n                    \"firstName\": \"Jack\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 338,\n                    \"workPhone\": \"(888) 552-6672\",\n                    \"mobilePhone\": \"(415) 735-3179\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2011-03-14T17:19:43.34+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"svesce@20after1.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 350,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"123 Test St. \",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Orinda\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94526\"\n                    },\n                    \"lastName\": \"Vesce\",\n                    \"homePhone\": \"(123) 123-1234\",\n                    \"firstName\": \"Sean\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 350,\n                    \"workPhone\": \"(123) 123-1234\",\n                    \"mobilePhone\": \"(123) 123-1234\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2009-06-11T21:32:58.037+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"james@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 370,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Wright\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"James\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 370,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-02-07T11:27:13.277+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rick@directtech.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 375,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"123 Test. St. \",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Sacramento\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Nelson\",\n                    \"homePhone\": \"(123) 123-1234\",\n                    \"firstName\": \"Rick\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 375,\n                    \"workPhone\": \"(321) 321-4321\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2010-02-01T09:01:51.937+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sshen@fenwick.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 379,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"555 California Street \",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Shen\",\n                    \"homePhone\": \"(415) 875-2300 - Main\",\n                    \"firstName\": \"Shu\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 379,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2011-09-06T13:59:01.087+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"ABerntson@steyer.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 395,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"115 HALL BROTHERS LOOP NW, SUITE 104\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"BAINBRIDGE ISLAND\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"98110 \"\n                    },\n                    \"lastName\": \"Berntson\",\n                    \"homePhone\": \" 206.780.3345 - Main\",\n                    \"firstName\": \"Aaron\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 395,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-04-19T16:01:41.223+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"matthew@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 434,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"8 California St. Suite 700\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Day\",\n                    \"homePhone\": \"415-230-2702 - Office\",\n                    \"firstName\": \"Matthew\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 434,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-06-13T09:22:12.377+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"gcs2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 439,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"221 Pine St.\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94105\"\n                    },\n                    \"lastName\": \"Chang\",\n                    \"homePhone\": \"(415) 230-2702\",\n                    \"firstName\": \"Geoff\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 439,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2011-03-02T09:48:30.577+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Julia.Holian@amllp.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 446,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Holian\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Julia\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 446,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-05-22T09:38:54.767+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"nshelton@steyer.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 470,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"115 HALL BROTHERS LOOP NW, SUITE 104\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"BAINBRIDGE ISLAND\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"WA\",\n                        \"postalCode\": \"98110\"\n                    },\n                    \"lastName\": \"Shelton\",\n                    \"homePhone\": \"206.780.3345 - Main\",\n                    \"firstName\": \"Nicole\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 470,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:14:07.61+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"MBarbo@steyer.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 471,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"115 HALL BROTHERS LOOP NW, SUITE 104\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"BAINBRIDGE ISLAND\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"WA\",\n                        \"postalCode\": \"98110\"\n                    },\n                    \"lastName\": \"Barbo\",\n                    \"homePhone\": \"206.780.3345 - Main\",\n                    \"firstName\": \"Michelle\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 471,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-21T08:27:17.753+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"xdss2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 399,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Small\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"David\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 399,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-07-16T15:33:43.437+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"paul.kliebert@rlstaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 425,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"11500 Northwest Freeway, Suite 345\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Houston\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"TX\",\n                        \"postalCode\": \"97201\"\n                    },\n                    \"lastName\": \"Kliebert \",\n                    \"homePhone\": \"(713) 688-9675\",\n                    \"firstName\": \"Paul\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 425,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2010-02-01T08:58:46.343+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-26T13:50:08.853\",\n                    \"entityId\": 74085,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Los Angeles\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Staff3\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"COMPAS\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 74085,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-06-26T13:50:07.9+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"admin@347group.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-26T13:50:36.87\",\n                    \"entityId\": 74086,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"4168 Douglas Blvd. Ste 300\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Granite Bay\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"95746\"\n                    },\n                    \"lastName\": \"Williams\",\n                    \"homePhone\": \"(916) 244-7688\",\n                    \"firstName\": \"Laura\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 74086,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-06-26T13:50:35.93+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jennifer.haggin@347group.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-26T13:50:46.103\",\n                    \"entityId\": 74087,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"4168 Douglas Blvd. Ste 300\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Granite Bay\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"95746\"\n                    },\n                    \"lastName\": \"Haggin\",\n                    \"homePhone\": \"(916) 242-4347\",\n                    \"firstName\": \"Jennifer\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 74087,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-06-26T13:50:45.15+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-26T13:51:00.447\",\n                    \"entityId\": 74088,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Los Angeles\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Staff5\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"COMPAS\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 74088,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-06-26T13:50:58.433+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-26T13:51:22.54\",\n                    \"entityId\": 74089,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Los Angeles\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"DemoStaff\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"COMPAS\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 74089,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-06-26T13:51:21.587+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Aimee.Thurston@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-24T09:58:31.687\",\n                    \"entityId\": 114781,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Thurston\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Aimee\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 114781,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-24T09:58:31.687+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Melissa.Ebli@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:11:37.9\",\n                    \"entityId\": 115492,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ebli\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Melissa\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115492,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:11:37.9+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Taylor.Yach@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:12:07.46\",\n                    \"entityId\": 115493,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Yach\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Taylor\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115493,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:12:07.46+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kacie.johnson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:12:38.9\",\n                    \"entityId\": 115494,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Saint Paul\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Johnson\",\n                    \"homePhone\": \"9525641214\",\n                    \"firstName\": \"Kacie\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": \"\",\n                    \"userId\": 115494,\n                    \"workPhone\": \"6512892113\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:12:38.9+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Stephen.James@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:13:13.807\",\n                    \"entityId\": 115495,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"James\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Stephen\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115495,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:13:13.807+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mike.allen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T13:51:55.403\",\n                    \"entityId\": 115508,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Allen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115508,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T13:51:55.403+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Courtney.Pergolski@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:09:41.79\",\n                    \"entityId\": 115489,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pergolski\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Courtney\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115489,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:09:41.79+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Eli.Bateman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:10:24.353\",\n                    \"entityId\": 115490,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bateman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Eli\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 115490,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-02-04T12:10:24.353+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tommy.semereaux@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-17T09:56:46.7\",\n                    \"entityId\": 123289,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Semereaux\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tommy\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 123289,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-17T09:56:46.7+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Ilya.Galperin@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-17T11:10:58.293\",\n                    \"entityId\": 123302,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Galperin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ilya\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 123302,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-17T11:10:58.293+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"shaena.silvestri@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-24T10:15:52.267\",\n                    \"entityId\": 151904,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Silvestri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shaena\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 151904,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-24T10:15:52.267+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tan.li@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-17T11:10:58.293\",\n                    \"entityId\": 156389,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Li\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tan\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 156389,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-17T11:10:58.293+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"defcol@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-01T11:51:25.887\",\n                    \"entityId\": 8419676,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Columns\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Default\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 8419676,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-01T11:51:25.887+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"warmup@gmail.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-05-27T15:47:34.7\",\n                    \"entityId\": 11132088,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Up\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Warm\",\n                    \"officeName\": \"Sacramento\",\n                    \"email2\": null,\n                    \"userId\": 11132088,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-05-27T15:47:34.7+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"joshtest@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-10-02T09:52:54.893\",\n                    \"entityId\": 2914395,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"BATest\",\n                    \"homePhone\": null,\n                    \"firstName\": \"JoshTest\",\n                    \"officeName\": \"Seattle\",\n                    \"email2\": null,\n                    \"userId\": 2914395,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-10-02T09:52:54.893+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"santosh.newa@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-23T11:24:25.007\",\n                    \"entityId\": 138845,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Newa\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Santosh\",\n                    \"officeName\": \"Seattle\",\n                    \"email2\": null,\n                    \"userId\": 138845,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-08-23T11:24:25.007+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"angela.boike@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:54:26.61\",\n                    \"entityId\": 111283,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Boike\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Angela\",\n                    \"officeName\": \"Seattle\",\n                    \"email2\": null,\n                    \"userId\": 111283,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:54:26.61+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"admin@compas.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 270,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Clown\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Buddy\",\n                    \"officeName\": \"Seattle\",\n                    \"email2\": \"\",\n                    \"userId\": 270,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2009-03-18T08:57:49.603+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"raymon.hutchison@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-04-14T18:15:11.74\",\n                    \"entityId\": 33868636,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"testerson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"raymon\",\n                    \"officeName\": \"Seattle\",\n                    \"email2\": null,\n                    \"userId\": 33868636,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-04-14T18:15:11.74+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"colleen.johnson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-10-05T09:40:02.11\",\n                    \"entityId\": 16895265,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Johnson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Colleen\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 16895265,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-10-05T09:40:02.11+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"DanK.OAuth.Test1@xtmxt.onmicrosoft.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-09-27T19:56:14.81\",\n                    \"entityId\": 27619008,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kanan_HCM2\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dan_Test\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 27619008,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-09-27T19:56:14.81+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"marketplaceviewnoperms@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-05T15:53:41.3\",\n                    \"entityId\": 27668667,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"ViewNoPerms\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Marketplace\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 27668667,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-05T15:53:41.3+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"akjhfahahah@something.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-05T18:51:02.983\",\n                    \"entityId\": 27670833,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Test\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Image\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 27670833,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-05T18:51:02.983+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"marketplaceviewtest@something.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-05T19:04:17.6\",\n                    \"entityId\": 27671014,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"View\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Marketplace\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 27671014,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-05T19:04:17.6+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"zzrandallzzhcm@test.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2025-02-27T21:33:09.68\",\n                    \"entityId\": 81971534,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"zzHCM\",\n                    \"homePhone\": null,\n                    \"firstName\": \"zzRandall\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 81971534,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2025-02-27T21:33:09.68+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"fts2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 396,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Tolentino\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Fritzie\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 396,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-05-14T15:16:43.463+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rodney@crowded.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-04-25T14:58:07.77\",\n                    \"entityId\": 69312,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Lui\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Rodney\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 69312,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2017-04-25T14:58:06.34+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"brian@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-19T10:56:51.143\",\n                    \"entityId\": 19659,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1234 Test St.\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Vesce\",\n                    \"homePhone\": \"(123) 123-1234\",\n                    \"firstName\": \"Brian\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 19659,\n                    \"workPhone\": \"(123) 123-4321\",\n                    \"mobilePhone\": \"(321) 123-1234\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2014-01-20T11:30:07.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"danv@people20.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:09.33\",\n                    \"entityId\": 19911,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Verhagen\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Daniel\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 19911,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2014-02-03T10:17:05.377+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"shubley@justenergy.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-10-10T18:32:53.317\",\n                    \"entityId\": 20371,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Hubley\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Sabrina\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 20371,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2014-02-24T09:48:05.223+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"integrations-team@hrcloud.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2017-06-27T10:23:40.507\",\n                    \"entityId\": 74152,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Team\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Integrations\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 74152,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2017-06-27T10:23:37.983+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"anne.pike@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:28:18.433\",\n                    \"entityId\": 105197,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pike\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Anne\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105197,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:28:18.433+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bret.zimmerman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:29:06.357\",\n                    \"entityId\": 105199,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55405\"\n                    },\n                    \"lastName\": \"Zimmerman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bret\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105199,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:29:06.357+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"dan.wilde@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:29:35.293\",\n                    \"entityId\": 105200,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wilde\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dan\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105200,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:29:35.293+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"dana.santos@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:30:01.373\",\n                    \"entityId\": 105201,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55101\"\n                    },\n                    \"lastName\": \"Santos\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dana\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105201,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:30:01.373+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"dustin.amesbury@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:30:24.763\",\n                    \"entityId\": 105202,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Amesbury\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dustin\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105202,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:30:24.763+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"eric.skinner@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:30:57.967\",\n                    \"entityId\": 105203,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Skinner\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Eric\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105203,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:30:57.967+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jami.klotz@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:31:28.42\",\n                    \"entityId\": 105204,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Klotz\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jami\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105204,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:31:28.42+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kelcy.modrynski@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:32:03.14\",\n                    \"entityId\": 105205,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1212 Thayer Street\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Wealth Marsh\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55654\"\n                    },\n                    \"lastName\": \"Modrynski\",\n                    \"homePhone\": \"8745123452\",\n                    \"firstName\": \"Kelcy\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105205,\n                    \"workPhone\": \"8746585215\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-10-05T15:32:03.14+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"matt.bower@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:32:26.14\",\n                    \"entityId\": 105206,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bower\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105206,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:32:26.14+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"natasha.wright@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:32:51.293\",\n                    \"entityId\": 105207,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wright\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Natasha\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105207,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-10-05T15:32:51.293+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rachel.sobieck@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:34:04.53\",\n                    \"entityId\": 105208,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sobieck\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rachel\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105208,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:34:04.53+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sailendra.bhattarai@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:34:46.013\",\n                    \"entityId\": 105209,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1234 White house ln\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Las vegas\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"CO\",\n                        \"postalCode\": \"748121\"\n                    },\n                    \"lastName\": \"Bhattarai\",\n                    \"homePhone\": \"6125325351\",\n                    \"firstName\": \"Sailendra\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"sailendra.bhattarai@avionte.com\",\n                    \"userId\": 105209,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:34:46.013+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jen.dye@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-11T11:13:19.953\",\n                    \"entityId\": 105632,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Dye\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jen\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105632,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-11T11:13:19.953+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"james.howell@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-16T11:17:24.02\",\n                    \"entityId\": 105997,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Howell\",\n                    \"homePhone\": null,\n                    \"firstName\": \"James\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 105997,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-16T11:17:24.02+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jeff.maki@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-30T13:44:51.147\",\n                    \"entityId\": 107351,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maki\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jeff\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 107351,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-30T13:44:51.147+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"brigid.isenmann@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-07T09:29:37.93\",\n                    \"entityId\": 108122,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Isenmann\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brigid\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 108122,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-11-07T09:29:37.93+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Aaron.armstrong@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-07T10:02:08.11\",\n                    \"entityId\": 108128,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Armstrong\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Aaron\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 108128,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-11-07T10:02:08.11+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mariya.zechmann@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-05T12:44:23.06\",\n                    \"entityId\": 111520,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Zechmann\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mariya\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 111520,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-05T12:44:23.06+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"erica.gjervold@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-05T12:47:01.653\",\n                    \"entityId\": 111521,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Gjervold\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Erica\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 111521,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-05T12:47:01.653+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"weston.johnson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-20T15:17:25.27\",\n                    \"entityId\": 112654,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Johnson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Weston\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 112654,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-20T15:17:25.27+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"taylor.rooney@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-07T14:27:16.097\",\n                    \"entityId\": 113523,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rooney\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Taylor\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113523,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-07T14:27:16.097+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jason.emerson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:21:37.477\",\n                    \"entityId\": 113952,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"STE 150\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Emerson\",\n                    \"homePhone\": \"2392739507\",\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 113952,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:21:37.477+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Joe.Wertz@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:22:30.273\",\n                    \"entityId\": 113953,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wertz\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joe\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113953,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:22:30.273+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Nick.Larson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:25:24.45\",\n                    \"entityId\": 113957,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road, Suite 150\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Larson\",\n                    \"homePhone\": \"6514024357\",\n                    \"firstName\": \"Nick\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113957,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:25:24.45+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Caroline.Lese@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:27:42.85\",\n                    \"entityId\": 113958,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lese\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Caroline\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113958,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:27:42.85+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Nick.Anderson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:28:29.337\",\n                    \"entityId\": 113959,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Anderson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Nick\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113959,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:28:29.337+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Matt.Gjervold@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:34:02.78\",\n                    \"entityId\": 113962,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"#150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Gjervold\",\n                    \"homePhone\": \"9528076669\",\n                    \"firstName\": \"Matthew\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113962,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:34:02.78+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Joey.Olson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:35:04.447\",\n                    \"entityId\": 113965,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joey\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113965,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:35:04.447+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Jay.Don@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:38:38.65\",\n                    \"entityId\": 113966,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Don\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jay\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113966,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:38:38.65+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Matt.Provost@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:43:32.973\",\n                    \"entityId\": 113968,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Provost\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113968,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:43:32.973+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Lucas.Zwieg@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:46:43.18\",\n                    \"entityId\": 113969,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Zwieg\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Lucas\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113969,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-01-14T11:46:43.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"robert.ohms@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T12:56:57.163\",\n                    \"entityId\": 113996,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ohms\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Robert\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 113996,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T12:56:57.163+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Amy.Sieben@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-15T11:09:27.85\",\n                    \"entityId\": 114076,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"13508 Monterey Ave\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Savage\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55378\"\n                    },\n                    \"lastName\": \"Sieben\",\n                    \"homePhone\": \"9523343672\",\n                    \"firstName\": \"Amy\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114076,\n                    \"workPhone\": \"6513286036\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-15T11:09:27.85+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"travis.brown@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-21T09:16:48.24\",\n                    \"entityId\": 114470,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55123\"\n                    },\n                    \"lastName\": \"Brown\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Travis\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114470,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-21T09:16:48.24+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Jennie.Rogers@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-21T12:51:19.133\",\n                    \"entityId\": 114504,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rogers\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jennie\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114504,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-21T12:51:19.133+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"chaz.williams@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-25T09:59:07.91\",\n                    \"entityId\": 116930,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Williams\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Chaz\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 116930,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-25T09:59:07.91+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"doug@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-01T12:00:37.567\",\n                    \"entityId\": 120627,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Gilbertson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Doug\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 120627,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-01T12:00:37.567+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"doug.gilbertson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-01T18:12:46.873\",\n                    \"entityId\": 120685,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Gilbertson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Doug\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 120685,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-01T18:12:46.873+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"pete.jacoby@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-28T08:17:16.533\",\n                    \"entityId\": 114947,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Jacoby\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Pete\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114947,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-28T08:17:16.533+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ben.Halverson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T08:15:27.777\",\n                    \"entityId\": 115429,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Halverson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ben\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 115429,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T08:15:27.777+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"heather.ingram@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-24T07:12:00.163\",\n                    \"entityId\": 114747,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ingram\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Heather\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114747,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-24T07:12:00.163+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Emily.Hawkins@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-21T12:53:47.697\",\n                    \"entityId\": 114507,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd Suite 150\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Hawkins\",\n                    \"homePhone\": \"6515562121\",\n                    \"firstName\": \"Emily\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 114507,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-01-21T12:53:47.697+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Mitch.Rudolph@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-21T12:54:48.51\",\n                    \"entityId\": 114508,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rudolph\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mitch\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 114508,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-21T12:54:48.51+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"hyung.choi@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-19T13:42:59.037\",\n                    \"entityId\": 144043,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Choi\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Hyung\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 144043,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-09-19T13:42:59.037+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Benjamin.Fuller@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-06-04T13:22:23.887\",\n                    \"entityId\": 127635,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"6215 Highland Hills Dr\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Austin\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"78731\"\n                    },\n                    \"lastName\": \"Fuller\",\n                    \"homePhone\": \"5125605753\",\n                    \"firstName\": \"Benjamin\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"Benjamin.Fuller@avionte.com\",\n                    \"userId\": 127635,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-06-04T13:22:23.887+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"leiaorgana@2emails.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-19T07:58:04.113\",\n                    \"entityId\": 133766,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Organa\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Leia\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 133766,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-07-19T07:58:04.113+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"brad.wilzbacher@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-19T12:54:58.643\",\n                    \"entityId\": 133868,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wilzbacher\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brad\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 133868,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-07-19T12:54:58.643+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kate.cochran@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-19T13:05:52.23\",\n                    \"entityId\": 133871,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Cochran\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kate\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 133871,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-07-19T13:05:52.23+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kelly.carlson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-09T06:51:10.97\",\n                    \"entityId\": 121370,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Carlson\",\n                    \"homePhone\": \"6122366399\",\n                    \"firstName\": \"Kelly\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": \"\",\n                    \"userId\": 121370,\n                    \"workPhone\": \"6512890502\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-09T06:51:10.97+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"steve.thess@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-09T08:24:22.477\",\n                    \"entityId\": 121389,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Thess\",\n                    \"homePhone\": \"6362331334\",\n                    \"firstName\": \"Steve\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 121389,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-09T08:24:22.477+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Theresa.McGlothlen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-01T07:58:01.84\",\n                    \"entityId\": 124354,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"McGlothlen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Theresa\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 124354,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-01T07:58:01.84+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jacob.constant@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-01T13:36:50.58\",\n                    \"entityId\": 124409,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Constant\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jacob\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 124409,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-01T13:36:50.58+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"emily.peterson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-01-08T13:47:35.067\",\n                    \"entityId\": 5223552,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Peterson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Emily\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 5223552,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-01-08T13:47:35.067+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kathy.moening@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-01-25T14:59:08.12\",\n                    \"entityId\": 5640506,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Moening\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kathy\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 5640506,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-01-25T14:59:08.12+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"customer-access@pendo.io\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-03-10T14:50:19.52\",\n                    \"entityId\": 7518950,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Holly\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Angela\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 7518950,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-03-10T14:50:19.52+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rajc5@comcast.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-03T17:39:54.533\",\n                    \"entityId\": 270629,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chauhab\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Raj\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 270629,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-03T17:39:54.533+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"manderson@awardstaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-04-09T09:53:22.703\",\n                    \"entityId\": 490578,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Anderson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 490578,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-04-09T09:53:22.703+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"justin.ortiz@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-01T15:16:04.187\",\n                    \"entityId\": 791978,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ortiz\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Justin\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 791978,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"6513358613\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-05-01T15:16:04.187+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Michael.Reis@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-01T15:18:53.273\",\n                    \"entityId\": 791980,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Reis\",\n                    \"homePhone\": \"16128675309\",\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"Boston\",\n                    \"email2\": null,\n                    \"userId\": 791980,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-01T15:18:53.273+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"ashley.purdy@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-21T11:16:37.84\",\n                    \"entityId\": 158164,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Purdy\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ashley\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": null,\n                    \"userId\": 158164,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-11-21T11:16:37.84+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"stephanie.bauer@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-05T10:38:35.35\",\n                    \"entityId\": 115605,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bauer\",\n                    \"homePhone\": \"2186548978\",\n                    \"firstName\": \"Stephanie\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": null,\n                    \"userId\": 115605,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-02-05T10:38:35.35+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"chris.wargo@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T15:21:46.273\",\n                    \"entityId\": 114017,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wargo\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Chris\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": null,\n                    \"userId\": 114017,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T15:21:46.273+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tony.poetz@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-13T13:27:15.257\",\n                    \"entityId\": 109929,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Poetz\",\n                    \"homePhone\": \"6126367204\",\n                    \"firstName\": \"Tony\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": null,\n                    \"userId\": 109929,\n                    \"workPhone\": \"6513283036\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-11-13T13:27:15.257+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bas2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 460,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Billie\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Augustine\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 460,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:28:19.887+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rrs2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 472,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Ross\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Richard\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 472,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-06-08T14:57:34.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"pss2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 467,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Sitov\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Peter\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 467,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-01T10:13:11.95+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ads2@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 397,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Del Vecchio\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Adriana\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 397,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-06-01T16:30:56.403+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"ann@mantek.us\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 450,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Neale\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Ann\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 450,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-03-22T12:39:24.227+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tim@tchresource.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 451,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"MA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Healy\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Tim\",\n                    \"officeName\": \"Dallas\",\n                    \"email2\": \"\",\n                    \"userId\": 451,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-06-11T17:03:07.423+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"randy@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 251,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"(333) 333-3333\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"8 California St. Suite 300\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco 2\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Long\",\n                    \"homePhone\": \"(415) 203-2931\",\n                    \"firstName\": \"Kristen\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": \"\",\n                    \"userId\": 251,\n                    \"workPhone\": \"(415) 394-6400\",\n                    \"mobilePhone\": \"(111) 111-1111\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2010-01-31T19:29:11.157+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jennifer.haselberger@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-02T12:09:31.813\",\n                    \"entityId\": 113147,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"413 Burlington Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Saint Paul\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55119\"\n                    },\n                    \"lastName\": \"Haselberger\",\n                    \"homePhone\": \"6514975004\",\n                    \"firstName\": \"Jennifer\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": \"\",\n                    \"userId\": 113147,\n                    \"workPhone\": \"6512890958\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-02T12:09:31.813+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"avionteux@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-13T13:17:50.043\",\n                    \"entityId\": 118299,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Oakley\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Annie\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": null,\n                    \"userId\": 118299,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-03-13T13:17:50.043+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"michael@alpinegroup.io\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-21T12:58:55.267\",\n                    \"entityId\": 8836781,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Genson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Michael\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": null,\n                    \"userId\": 8836781,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-21T12:58:55.267+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"cameron.smith@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-14T07:45:38.087\",\n                    \"entityId\": 156455,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"IL\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Smith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Cameron\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": null,\n                    \"userId\": 156455,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-11-14T07:45:38.087+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tim.woodham@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-14T07:46:57.96\",\n                    \"entityId\": 156457,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Tampa\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"FL\",\n                        \"postalCode\": \"33609\"\n                    },\n                    \"lastName\": \"Woodham\",\n                    \"homePhone\": \"8134589095\",\n                    \"firstName\": \"Tim\",\n                    \"officeName\": \"Solutions\",\n                    \"email2\": \"\",\n                    \"userId\": 156457,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-11-14T07:46:57.96+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"natasha.khan@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-19T12:56:30.94\",\n                    \"entityId\": 144032,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Khan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Natasha\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": null,\n                    \"userId\": 144032,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-09-19T12:56:30.94+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"joe@gem.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-20T15:38:33.13\",\n                    \"entityId\": 126259,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Totten\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joe\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": null,\n                    \"userId\": 126259,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-20T15:38:33.13+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"aviontetest100@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-13T13:34:16.547\",\n                    \"entityId\": 116178,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Doe\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": null,\n                    \"userId\": 116178,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-13T13:34:16.547+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"allison.floeter@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-07T10:08:58.747\",\n                    \"entityId\": 113462,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Floeter\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Allison\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": null,\n                    \"userId\": 113462,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-01-07T10:08:58.747+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jeff@softwareplacement.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 458,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Calannio\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Jeff\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": \"\",\n                    \"userId\": 458,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2012-06-06T13:41:43.703+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"leck@gene.C0M\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:04.85\",\n                    \"entityId\": 426,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Eck\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Lance\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": \"\",\n                    \"userId\": 426,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2010-02-01T09:07:23.017+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2014-11-06T14:43:09.33\",\n                    \"entityId\": 22008,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Staff6\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"COMPAS\",\n                    \"officeName\": \"Los Angeles\",\n                    \"email2\": \"\",\n                    \"userId\": 22008,\n                    \"workPhone\": \"\",\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"North America\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2014-05-02T10:22:52.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"greg.lalonde@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-23T14:57:15.177\",\n                    \"entityId\": 114735,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"123 Test rd.\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"San Francisco\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"AL\",\n                        \"postalCode\": \"94111\"\n                    },\n                    \"lastName\": \"Lalonde\",\n                    \"homePhone\": \"123-123-1234\",\n                    \"firstName\": \"Greg\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 114735,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-23T14:57:15.177+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"tim.leonard@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T06:12:54.83\",\n                    \"entityId\": 121153,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55075\"\n                    },\n                    \"lastName\": \"Leonard\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tim\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 121153,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-08T06:12:54.83+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john.stinson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T06:14:06.673\",\n                    \"entityId\": 121154,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Stinson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 121154,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-08T06:14:06.673+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"matt.mover@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-23T10:39:42.953\",\n                    \"entityId\": 126550,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Movern\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 126550,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-05-23T10:39:42.953+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Jason.Sharma@SerentCapital.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-23T10:40:46.39\",\n                    \"entityId\": 126551,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sharma\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 126551,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-05-23T10:40:46.39+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"brandon.rothe@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-01T17:05:18.233\",\n                    \"entityId\": 124422,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rothe\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brandon\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 124422,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-05-01T17:05:18.233+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"evan.wright@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-06-29T11:06:26.343\",\n                    \"entityId\": 1527118,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Wright\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Evan\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 1527118,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-06-29T11:06:26.343+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"joshua.hiemstra.fake@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-07-08T15:03:31.69\",\n                    \"entityId\": 1545840,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hiemstra\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joshua\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 1545840,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-07-08T15:03:31.69+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kelly.rinehart@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-10T11:24:35.377\",\n                    \"entityId\": 20645132,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rinehart\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kelly\",\n                    \"officeName\": \"San Diego\",\n                    \"email2\": null,\n                    \"userId\": 20645132,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-01-10T11:24:35.377+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"matt.leveque@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-11-03T11:14:51.327\",\n                    \"entityId\": 18223602,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"LeVeque\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 18223602,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-11-03T11:14:51.327+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mantis@lgratuitys.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-06-01T12:40:24.857\",\n                    \"entityId\": 24249997,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCM\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Temp\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 24249997,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-06-01T12:40:24.857+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jlo@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-10T08:09:39.317\",\n                    \"entityId\": 193251,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lopez\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jennifer\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 193251,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-01-10T08:09:39.317+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"brenda.peterson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-03T09:04:43.983\",\n                    \"entityId\": 270267,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Peterson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brenda\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 270267,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-03T09:04:43.983+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jill@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-07T08:14:10.83\",\n                    \"entityId\": 290809,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Garcia\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jill\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 290809,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-07T08:14:10.83+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"joseph.boykin@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-20T06:34:56.65\",\n                    \"entityId\": 126098,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Boykin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joseph\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 126098,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-20T06:34:56.65+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Rena.Daitzchman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-22T06:44:35.317\",\n                    \"entityId\": 123518,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road, Suite 150\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Daitzchman\",\n                    \"homePhone\": \"6129634940\",\n                    \"firstName\": \"Rena\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 123518,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-22T06:44:35.317+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:02:06.12\",\n                    \"entityId\": 150727,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sabbagh\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Andre\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150727,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:02:06.12+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"schatman@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:03:13.37\",\n                    \"entityId\": 150728,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chatman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"S\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150728,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:03:13.37+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"arisabbagh@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:04:11.807\",\n                    \"entityId\": 150729,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sabbagh\",\n                    \"homePhone\": null,\n                    \"firstName\": \"AriAnna\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150729,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:04:11.807+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bweathers@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:04:51.243\",\n                    \"entityId\": 150730,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Weather\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bryan\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150730,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:04:51.243+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rarato@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:05:28.117\",\n                    \"entityId\": 150731,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"717-391-9740\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Arato\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rita\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150731,\n                    \"workPhone\": \"717-391-6000\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:05:28.117+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"idelgado@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:06:00.243\",\n                    \"entityId\": 150732,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Delgado\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Iasha\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 150732,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:06:00.243+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"lpiatek@allegiancestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T05:06:44.18\",\n                    \"entityId\": 150733,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"7173919740\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"PA\",\n                        \"postalCode\": \"\"\n                    },\n                    \"lastName\": \"Piatek\",\n                    \"homePhone\": \"\",\n                    \"firstName\": \"Lynn\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": \"\",\n                    \"userId\": 150733,\n                    \"workPhone\": \"7173916000\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T05:06:44.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"brenda@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-03T09:51:40.297\",\n                    \"entityId\": 160144,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"DO NOT USE\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brenda\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 160144,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-12-03T09:51:40.297+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rachel@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-05T11:58:31.94\",\n                    \"entityId\": 160914,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Larson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rachel\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 160914,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-12-05T11:58:31.94+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Jason.Ortner@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:24:35.47\",\n                    \"entityId\": 113956,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ortner\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 113956,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-01-14T11:24:35.47+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jennifer.boggio@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-16T09:23:25.043\",\n                    \"entityId\": 110204,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Boggio\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jen\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 110204,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-11-16T09:23:25.043+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"hampton.chen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-20T09:32:13.857\",\n                    \"entityId\": 110501,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Hampton\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 110501,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-11-20T09:32:13.857+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"brittany.bybee@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:46:45.063\",\n                    \"entityId\": 111268,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bybee\",\n                    \"homePhone\": \"6128128878\",\n                    \"firstName\": \"Brittany\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111268,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:46:45.063+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"becky.fox@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:47:19.517\",\n                    \"entityId\": 111270,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Fox\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Becky\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111270,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:47:19.517+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"parris.vitela@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:48:06.283\",\n                    \"entityId\": 111272,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vitela\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Parris\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111272,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:48:06.283+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"savannah.bie@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:48:50.783\",\n                    \"entityId\": 111273,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bie\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Savannah\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111273,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:48:50.783+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"toni.geurts@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:49:56.017\",\n                    \"entityId\": 111275,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Geurts\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Toni\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111275,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:49:56.017+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Hugh.Gilpatric@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:51:18.847\",\n                    \"entityId\": 111278,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Gilpatric\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Hugh\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111278,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:51:18.847+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Jerry.Olson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:51:59.05\",\n                    \"entityId\": 111279,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55068\"\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": \"6122097118\",\n                    \"firstName\": \"Jerry\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111279,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:51:59.05+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"adam.moddrell@insights.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:53:03.073\",\n                    \"entityId\": 111280,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd.\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Moddrell\",\n                    \"homePhone\": \"6512896369\",\n                    \"firstName\": \"Adam\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": \"\",\n                    \"userId\": 111280,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:53:03.073+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sarah.lowrie@avionte.comx\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:53:32.32\",\n                    \"entityId\": 111281,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lowrie\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sarah\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111281,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:53:32.32+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jredmond@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-04T11:02:07.487\",\n                    \"entityId\": 111417,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"CA\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Redmond\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joni\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111417,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-04T11:02:07.487+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"dwebb@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-04T11:02:29.707\",\n                    \"entityId\": 111418,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Webb\",\n                    \"homePhone\": null,\n                    \"firstName\": \"David\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111418,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-04T11:02:29.707+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sborusak@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-04T11:02:53.677\",\n                    \"entityId\": 111419,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Borusak\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sidney\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111419,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-04T11:02:53.677+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"ssilvestri@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-04T11:04:35.503\",\n                    \"entityId\": 111420,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Silvestri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shaena\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111420,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-04T11:04:35.503+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"btaleghani@mycompas.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-04T11:07:03.957\",\n                    \"entityId\": 111421,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chalk\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brandon\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111421,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-04T11:07:03.957+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bridget.roepke@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:54:57.31\",\n                    \"entityId\": 111284,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Roepke\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bridget\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111284,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:54:57.31+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"chris.kedrowski@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-06-14T21:15:27.887\",\n                    \"entityId\": 111286,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": \"string\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"string\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"string\",\n                        \"street2\": \"string\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"string\"\n                    },\n                    \"lastName\": \"Kedrowski\",\n                    \"homePhone\": \"string\",\n                    \"firstName\": \"Chris\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": \"string\",\n                    \"userId\": 111286,\n                    \"workPhone\": \"string\",\n                    \"mobilePhone\": \"999-428-7454\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:57:56.247+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"clare.soderling@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:58:33.65\",\n                    \"entityId\": 111287,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"454 Main Lane\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55122\"\n                    },\n                    \"lastName\": \"Soderling\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Clare\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111287,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:58:33.65+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dale.hessedal@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:59:10.18\",\n                    \"entityId\": 111288,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hessedal\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dale\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111288,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:59:10.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"eli.peterson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:59:36.57\",\n                    \"entityId\": 111289,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Peterson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Eli\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111289,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T10:59:36.57+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jason.worman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:00:02.57\",\n                    \"entityId\": 111290,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Worman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111290,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T11:00:02.57+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jonathan.vue@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:00:28.427\",\n                    \"entityId\": 111291,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vue\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jonathan\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111291,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T11:00:28.427+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kyle.glasgow@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:00:58.457\",\n                    \"entityId\": 111292,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Glasgow\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kyle\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111292,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T11:00:58.457+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"marissa.spock@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:01:23.427\",\n                    \"entityId\": 111293,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Spock\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Marissa\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111293,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T11:01:23.427+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"shane.blegen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:02:00.47\",\n                    \"entityId\": 111294,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Blegen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shane\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111294,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T11:02:00.47+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"susie.dejager@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:02:24.173\",\n                    \"entityId\": 111295,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"DeJager\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Susie\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 111295,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T11:02:24.173+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"aries.dendy@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T08:43:56.22\",\n                    \"entityId\": 121205,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Dendy\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Aries\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 121205,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-08T08:43:56.22+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"cassandra.davis@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T08:44:35.92\",\n                    \"entityId\": 121206,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Davis\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Cassandra\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 121206,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-08T08:44:35.92+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"ethan.beckwith@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T08:46:03.187\",\n                    \"entityId\": 121207,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Beckwith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ethan\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 121207,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-08T08:46:03.187+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"stephen.delwiche@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-08T09:32:02.88\",\n                    \"entityId\": 121231,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Delwiche\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Stephen\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 121231,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-04-08T09:32:02.88+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"isaac.rawaysmith@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-14T11:17:14.89\",\n                    \"entityId\": 118359,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Raway-Smith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Isaac\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 118359,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-03-14T11:17:14.89+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"anne.whigham@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-01T05:51:44.743\",\n                    \"entityId\": 117275,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Whigham\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ann\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 117275,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-03-01T05:51:44.743+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"diana.chance@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-01T05:52:41.073\",\n                    \"entityId\": 117276,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chance\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Diana\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 117276,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-03-01T05:52:41.073+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"uxteam@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-13T08:58:36.763\",\n                    \"entityId\": 118249,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Team\",\n                    \"homePhone\": null,\n                    \"firstName\": \"UX\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 118249,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-03-13T08:58:36.763+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"andreamstanger@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-24T07:16:35.35\",\n                    \"entityId\": 114748,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nicks\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Stevie\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 114748,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-24T07:16:35.35+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Austin.Douglas@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-16T13:35:19.147\",\n                    \"entityId\": 125748,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Douglas\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Austin\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 125748,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-16T13:35:19.147+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Jazmine.Cordaro@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-11T06:14:40.587\",\n                    \"entityId\": 121568,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Cordaro\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jazmine\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 121568,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-11T06:14:40.587+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ashley.Williams@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-06-06T08:54:13.433\",\n                    \"entityId\": 127818,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Williams\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ashley\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 127818,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-06-06T08:54:13.433+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"chris.miller@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-17T13:46:04.4\",\n                    \"entityId\": 133514,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Miller\",\n                    \"homePhone\": \"612-840-7620\",\n                    \"firstName\": \"Chris\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 133514,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-07-17T13:46:04.4+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"matthew.feller@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-18T11:01:35.64\",\n                    \"entityId\": 133648,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Feller\",\n                    \"homePhone\": \"7632185338\",\n                    \"firstName\": \"Matthew\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 133648,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-07-18T11:01:35.64+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"adam.pellegrino@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-11T08:59:25.537\",\n                    \"entityId\": 149094,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pellegrino\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Adam\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 149094,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-11T08:59:25.537+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"antione.bennett@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-19T00:07:35.83\",\n                    \"entityId\": 22976814,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bennett\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Antione\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 22976814,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-04-19T00:07:35.83+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"neeraj.nittoori@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-07-21T21:18:42.533\",\n                    \"entityId\": 26099140,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nitttoori\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Neeraj\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 26099140,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-07-21T21:18:42.533+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"odell.tuttle@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-08T19:36:14.097\",\n                    \"entityId\": 26906449,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Tuttle\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Odell\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 26906449,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-08T19:36:14.097+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jonathan.schroeder@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-31T20:54:47.05\",\n                    \"entityId\": 27218807,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Schroeder\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jon\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 27218807,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-08-31T20:54:47.05+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"seth.nugent@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-24T19:26:17.923\",\n                    \"entityId\": 21977557,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nugent\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Seth\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 21977557,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-24T19:26:17.923+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"katietesting@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-09-07T21:36:26.527\",\n                    \"entityId\": 38900219,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Signature\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sammy\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 38900219,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-09-07T21:36:26.527+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Test123@superrito.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-01-17T17:08:40.07\",\n                    \"entityId\": 44504968,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Test smith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test Smith\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 44504968,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-01-17T17:08:40.07+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"athurston@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-21T11:16:55.18\",\n                    \"entityId\": 158165,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Thurston\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Aimee\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 158165,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-11-21T11:16:55.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Erin.plummer@Avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-10-05T08:23:44.313\",\n                    \"entityId\": 3384084,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Plummer\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Erin\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 3384084,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-10-05T08:23:44.313+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"andrea.olson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-16T09:38:36.75\",\n                    \"entityId\": 137374,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": \"6125907705\",\n                    \"firstName\": \"Andrea\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 137374,\n                    \"workPhone\": \"6513286062\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-08-16T09:38:36.75+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Demitu.Bogale@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-21T12:49:03.513\",\n                    \"entityId\": 151038,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bogale\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Demitu\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 151038,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-21T12:49:03.513+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Andrea.stanger@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-24T09:57:43.983\",\n                    \"entityId\": 114780,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Stanger\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Andrea\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 114780,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-24T09:57:43.983+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"rachel.graff@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-16T09:42:00.75\",\n                    \"entityId\": 110206,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Saint Paul\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Graff\",\n                    \"homePhone\": \"6512226666\",\n                    \"firstName\": \"Rachel\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 110206,\n                    \"workPhone\": \"6515562121\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-11-16T09:42:00.75+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"lauren.hoen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-16T09:42:59.013\",\n                    \"entityId\": 110207,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Hoen\",\n                    \"homePhone\": \"1234567890\",\n                    \"firstName\": \"Lauren\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 110207,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-11-16T09:42:59.013+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kevin.tompkins@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-16T09:43:43.2\",\n                    \"entityId\": 110208,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Tompkins\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kevin\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 110208,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-11-16T09:43:43.2+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kristine.olson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-03-26T10:44:25.66\",\n                    \"entityId\": 120012,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kristine\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 120012,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-03-26T10:44:25.66+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Kristina.Langsten@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-14T11:42:41.943\",\n                    \"entityId\": 113967,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Langsten\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kristina\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 113967,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-14T11:42:41.943+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"test@test.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-16T11:10:34.71\",\n                    \"entityId\": 137402,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User2\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"O'Neil Consulting \",\n                    \"email2\": null,\n                    \"userId\": 137402,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-08-16T11:10:34.71+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ryan.Hoff@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-06-05T08:30:56.607\",\n                    \"entityId\": 127695,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hoff\",\n                    \"homePhone\": \"9522329767\",\n                    \"firstName\": \"Ryan\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 127695,\n                    \"workPhone\": \"6513286055\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-06-05T08:30:56.607+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Patrick.Tengco@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-04-16T16:36:39.5\",\n                    \"entityId\": 123245,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Tengco\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Patrick\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 123245,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-04-16T16:36:39.5+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Joni.Redmond@Avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-02T15:55:35.027\",\n                    \"entityId\": 124525,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Redmond\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joni\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 124525,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-02T15:55:35.027+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"melissa.kester@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-21T11:04:01.757\",\n                    \"entityId\": 116728,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kester\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Melissa\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 116728,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-02-21T11:04:01.757+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jon.rutten@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-07-30T11:13:14.59\",\n                    \"entityId\": 1873118,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rutten\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jonny\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 1873118,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-07-30T11:13:14.59+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"blampkins@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-06T15:28:48.937\",\n                    \"entityId\": 8463942,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lampkins\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ben\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 8463942,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-06T15:28:48.937+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sales@text-em-all.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-21T11:14:48.543\",\n                    \"entityId\": 8836226,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hoffman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Thomas\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 8836226,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-21T11:14:48.543+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"levi@staffccs.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-26T13:12:16.443\",\n                    \"entityId\": 159338,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hayes\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Levi\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 159338,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-11-26T13:12:16.443+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sean.ree@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-10T09:10:47.467\",\n                    \"entityId\": 193377,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"3815 Ballantrae Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55122\"\n                    },\n                    \"lastName\": \"Ree\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sean\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 193377,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-10T09:10:47.467+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ben.Rethmeier@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-23T20:16:52.283\",\n                    \"entityId\": 224532,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rethmeier\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ben\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 224532,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-23T20:16:52.283+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Dan.Kimmel@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-03-17T10:41:10.28\",\n                    \"entityId\": 427868,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kimmel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dan\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 427868,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-03-17T10:41:10.28+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"shawn.roush@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-10-05T15:35:10.373\",\n                    \"entityId\": 105210,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Roush\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shawn\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 105210,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-10-05T15:35:10.373+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"chris.miller@no. com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-11-10T09:48:23.083\",\n                    \"entityId\": 18295915,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Test\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Chris\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 18295915,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-11-10T09:48:23.083+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"automationtestHcm@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-14T15:22:00.947\",\n                    \"entityId\": 20668025,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"TestHcm\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Automation\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 20668025,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-01-14T15:22:00.947+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-10T11:28:52.703\",\n                    \"entityId\": 14303171,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"DePolis\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Nancy\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": \"\",\n                    \"userId\": 14303171,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-08-10T11:28:52.703+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"derek.bolyard@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-19T14:22:01.93\",\n                    \"entityId\": 22977701,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bolyard\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Derek\",\n                    \"officeName\": \"Acertitude\",\n                    \"email2\": null,\n                    \"userId\": 22977701,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-04-19T14:22:01.93+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john.karthaus@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-05-20T06:35:37.213\",\n                    \"entityId\": 126101,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Karthaus\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 126101,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-05-20T06:35:37.213+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"melissa.blackstad@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-19T06:43:42.07\",\n                    \"entityId\": 137556,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Blackstad\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Melissa\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 137556,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-08-19T06:43:42.07+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"peggy.esch@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-28T14:03:04.807\",\n                    \"entityId\": 139654,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Road\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Esch\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Peggy\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 139654,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-08-28T14:03:04.807+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Austin.Rueda-Pippin@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-29T12:07:45.683\",\n                    \"entityId\": 139802,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rueda-Pippin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Austin\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 139802,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-08-29T12:07:45.683+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john.karthaus@gmail.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-10-02T13:18:28.433\",\n                    \"entityId\": 146869,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sterling\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Everett\",\n                    \"officeName\": \"TEG\",\n                    \"email2\": null,\n                    \"userId\": 146869,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-10-02T13:18:28.433+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-30T15:22:23.287\",\n                    \"entityId\": 146416,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 146416,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-09-30T15:22:23.287+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Shawn.Crawford@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-12T12:28:11.793\",\n                    \"entityId\": 156107,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Crawford\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shawn\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 156107,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-11-12T12:28:11.793+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"matt@staffccs.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-10T09:44:46.663\",\n                    \"entityId\": 162196,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Telmanik\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 162196,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-12-10T09:44:46.663+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rich@staffccs.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-10T09:45:31.833\",\n                    \"entityId\": 162198,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hughes\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rich\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 162198,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-12-10T09:45:31.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"binod.paudel@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-17T22:16:33.14\",\n                    \"entityId\": 168652,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Paudel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Binod\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 168652,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-12-17T22:16:33.14+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dpatel@atriumstaff.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-12-18T08:28:50.673\",\n                    \"entityId\": 168741,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Patel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dhara\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 168741,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-12-18T08:28:50.673+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john@hannaresource.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:30:53.147\",\n                    \"entityId\": 190960,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Coffee\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190960,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:30:53.147+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"ben@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:31:34.957\",\n                    \"entityId\": 190962,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Harrison\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ben\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190962,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:31:34.957+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"becky@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:32:12.707\",\n                    \"entityId\": 190963,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Carter\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Becky\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190963,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:32:12.707+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"aphillips@PRDOTHAN.COM\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:32:56.24\",\n                    \"entityId\": 190964,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Phillips\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Anna\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190964,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:32:56.24+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"aharden@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:33:37.833\",\n                    \"entityId\": 190967,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Harden\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Adam\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190967,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:33:37.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"marybeth@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:34:18.38\",\n                    \"entityId\": 190969,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maddox\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mary Beth\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190969,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:34:18.38+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"ksaliba@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:34:56.91\",\n                    \"entityId\": 190970,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Saliba\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Katie\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190970,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:34:56.91+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jculbreth@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:35:33.05\",\n                    \"entityId\": 190973,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Culbreth\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Julie\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190973,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:35:33.05+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kpipkins@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:36:20.97\",\n                    \"entityId\": 190974,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pipkins\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Katie\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190974,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:36:20.97+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jmckeown@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:37:00.69\",\n                    \"entityId\": 190975,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"McKeown\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jeff\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190975,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:37:00.69+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kkellen@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:37:39.987\",\n                    \"entityId\": 190979,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kellen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Katie\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190979,\n                    \"workPhone\": \"952-303-3042\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:37:39.987+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"kchambers@prdothan.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-01-08T07:38:14.377\",\n                    \"entityId\": 190982,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chambers\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kammy\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 190982,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-01-08T07:38:14.377+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sophia_morgan@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T13:49:23.86\",\n                    \"entityId\": 963487,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Morgan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sophia\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963487,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T13:49:23.86+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"amanda_fowler@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:01:37.783\",\n                    \"entityId\": 963696,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Fowler\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Amanda\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963696,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:01:37.783+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"charlene_olson@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:02:06.347\",\n                    \"entityId\": 963698,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Charlene\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963698,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:02:06.347+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"afuentes@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:02:34.333\",\n                    \"entityId\": 963699,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Fuentes\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Alma\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963699,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:02:34.333+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"wesley_payne@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:03:02.91\",\n                    \"entityId\": 963700,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Payne\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Wesley\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963700,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:03:02.91+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mark_roden@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:03:28.523\",\n                    \"entityId\": 963701,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Roden\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mark\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963701,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:03:28.523+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"john_christensen@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:03:51.62\",\n                    \"entityId\": 963703,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Christensen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963703,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:03:51.62+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"alan_lively@richards.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-05-27T16:04:15.597\",\n                    \"entityId\": 963704,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lively\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Alan\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 963704,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-05-27T16:04:15.597+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"SP_Test@Test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-14T09:53:01.81\",\n                    \"entityId\": 325553,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"SP_Test\",\n                    \"homePhone\": null,\n                    \"firstName\": \"SP_Test\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 325553,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-14T09:53:01.81+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mfindlater@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-06-08T14:59:32.273\",\n                    \"entityId\": 11745251,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Findlater\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mary Sue\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 11745251,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-06-08T14:59:32.273+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Ankita.Pokale@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-06-18T09:26:11.96\",\n                    \"entityId\": 12374776,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pokale\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ankita\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 12374776,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-06-18T09:26:11.96+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Matt.Schmeichel@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-10-21T16:02:09.857\",\n                    \"entityId\": 3697799,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Schmeichel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matt\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 3697799,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-10-21T16:02:09.857+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"joel.lunde@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-04T12:11:03.21\",\n                    \"entityId\": 115491,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"18450 Avon Court\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eden Prairie\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55346\"\n                    },\n                    \"lastName\": \"Lunde\",\n                    \"homePhone\": \"6122080524\",\n                    \"firstName\": \"Joel\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": \"joel.lunde@avionte.com\",\n                    \"userId\": 115491,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-04T12:11:03.21+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mandy@fake.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-11-29T21:15:55.56\",\n                    \"entityId\": 19387593,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"zzTest\",\n                    \"homePhone\": \"5467894564\",\n                    \"firstName\": \"zzMandy\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 19387593,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-11-29T21:15:55.56+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"doug@jobrobotix.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-11-17T18:03:32.75\",\n                    \"entityId\": 41795133,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kloos\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Doug\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 41795133,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-11-17T18:03:32.75+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rochelle.kamont@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-02-07T20:55:08.033\",\n                    \"entityId\": 31456242,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kamont\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rochelle\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 31456242,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-02-07T20:55:08.033+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"robert.montoya@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-01-30T18:26:34.633\",\n                    \"entityId\": 31139873,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1005 Formal Pl\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Apex\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"NC\",\n                        \"postalCode\": \"27502\"\n                    },\n                    \"lastName\": \"Montoya\",\n                    \"homePhone\": \"9199244901\",\n                    \"firstName\": \"Robert\",\n                    \"officeName\": \"Branch name\",\n                    \"email2\": null,\n                    \"userId\": 31139873,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-01-30T18:26:34.633+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"robby.thayer@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-06-05T11:28:20.253\",\n                    \"entityId\": 127730,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Thayer\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Robby\",\n                    \"officeName\": \"(Core Branch Name 2)\",\n                    \"email2\": null,\n                    \"userId\": 127730,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-06-05T11:28:20.253+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Nguyen.Huynh@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-07-31T08:53:46.22\",\n                    \"entityId\": 135236,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Huynh\",\n                    \"homePhone\": \"5072714555\",\n                    \"firstName\": \"Nguyen\",\n                    \"officeName\": \"(Core Branch Name 2)\",\n                    \"email2\": null,\n                    \"userId\": 135236,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-07-31T08:53:46.22+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"test.user@test.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-08-16T07:03:05.33\",\n                    \"entityId\": 137305,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 137305,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-08-16T07:03:05.33+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jamesbarnes@email.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-19T09:49:10.213\",\n                    \"entityId\": 143987,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Barnes\",\n                    \"homePhone\": null,\n                    \"firstName\": \"James\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 143987,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-09-19T09:49:10.213+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Steven.Tousignant@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-24T07:43:59.033\",\n                    \"entityId\": 144792,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Tousignant\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Steven\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 144792,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-09-24T07:43:59.033+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Test2@superrito.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-09-30T15:43:56.343\",\n                    \"entityId\": 146418,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User2\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 146418,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-09-30T15:43:56.343+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Daniel.Kopseng@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-03-05T10:02:56.29\",\n                    \"entityId\": 395276,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kopseng\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dan\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 395276,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-03-05T10:02:56.29+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jill.dempsey@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-03-22T21:06:41.78\",\n                    \"entityId\": 22361989,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Dempsey\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jill\",\n                    \"officeName\": \"(Core Branch Name)\",\n                    \"email2\": null,\n                    \"userId\": 22361989,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US (Country of Operation)\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-03-22T21:06:41.78+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"adam@greatrecruiters.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-03-28T19:45:33.453\",\n                    \"entityId\": 22560931,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Recruiters\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Great\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 22560931,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-03-28T19:45:33.453+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"john.stanton@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-11T16:09:01.15\",\n                    \"entityId\": 22818146,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Stanton\",\n                    \"homePhone\": \"603-566-5970\",\n                    \"firstName\": \"John\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 22818146,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-04-11T16:09:01.15+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"matthew.begley@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-27T18:18:55.25\",\n                    \"entityId\": 23017284,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Begley\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Matthew\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 23017284,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-04-27T18:18:55.25+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kelly@reddotmedia.co\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-05-03T17:18:43.34\",\n                    \"entityId\": 23145907,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Robinson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kelly\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 23145907,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-05-03T17:18:43.34+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jeff.stacer@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-05-31T14:34:34.86\",\n                    \"entityId\": 24244086,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Stacer\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jeff\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 24244086,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-05-31T14:34:34.86+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mike.mills@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-05-31T14:49:39.343\",\n                    \"entityId\": 24244260,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Mills\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 24244260,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-05-31T14:49:39.343+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jeremy.troedson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-07-26T15:34:10.42\",\n                    \"entityId\": 26515475,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Troedson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jeremy\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 26515475,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-07-26T15:34:10.42+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Harvey.Homsey@NOne.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-08T16:54:42.373\",\n                    \"entityId\": 26904242,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Homsey\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Harvey\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 26904242,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-08-08T16:54:42.373+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"fadi.hakeem@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-06-20T16:04:17.98\",\n                    \"entityId\": 25123415,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hakeem\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Fadi\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 25123415,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-06-20T16:04:17.98+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jill@svp-partner.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-06-27T17:18:54.44\",\n                    \"entityId\": 25379728,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bush\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jill\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 25379728,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-06-27T17:18:54.44+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"wehrmantraut@svp-partner.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-06-27T17:20:22.34\",\n                    \"entityId\": 25379746,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ehrmantraut\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bill\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 25379746,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-06-27T17:20:22.34+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"justin.pedersen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-22T14:35:22.833\",\n                    \"entityId\": 27080660,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pedersen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Justin\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 27080660,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-22T14:35:22.833+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jamie.flores@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-03T16:06:30.267\",\n                    \"entityId\": 27653450,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"14009 Stoutland Lane\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"El Paso\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"TX\",\n                        \"postalCode\": \"79928\"\n                    },\n                    \"lastName\": \"Flores\",\n                    \"homePhone\": \"915-259-6611\",\n                    \"firstName\": \"Jamie\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 27653450,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-03T16:06:30.267+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"samantha.moniz@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-09-16T16:13:55.253\",\n                    \"entityId\": 27406242,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Moniz\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Samantha\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 27406242,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-09-16T16:13:55.253+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sean.fischer@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-09-27T18:36:31.947\",\n                    \"entityId\": 27617980,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55420\"\n                    },\n                    \"lastName\": \"Fischer\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sean\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 27617980,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-09-27T18:36:31.947+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"adam.hager@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-04T09:55:49.75\",\n                    \"entityId\": 20622895,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hager\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Adam\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 20622895,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-01-04T09:55:49.75+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"phillip.henriques@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-18T17:24:48.527\",\n                    \"entityId\": 20750890,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Henriques\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Phillip\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 20750890,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-01-18T17:24:48.527+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"ryan.landmeier@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-25T15:12:00.747\",\n                    \"entityId\": 20778862,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Landmeier\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ryan\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 20778862,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-01-25T15:12:00.747+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"lindsey.brown@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-03-02T20:33:44.67\",\n                    \"entityId\": 22024640,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Brown\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Lindsey\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 22024640,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-03-02T20:33:44.67+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"erika.kubitschek@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-25T15:15:51.643\",\n                    \"entityId\": 20778899,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Kubitschek\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Erika\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 20778899,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-01-25T15:15:51.643+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dev@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-04T15:25:36.65\",\n                    \"entityId\": 21142033,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Referrals\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Staffing\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 21142033,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-04T15:25:36.65+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"evan.heinze@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-18T18:17:13.69\",\n                    \"entityId\": 21603217,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Heinze\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Evan\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 21603217,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-18T18:17:13.69+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"hunter.traffica@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-18T18:17:55.86\",\n                    \"entityId\": 21603224,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Traffica\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Hunter\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 21603224,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-18T18:17:55.86+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"lyadeski@crimcheck.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-19T13:44:16.627\",\n                    \"entityId\": 15223776,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Yadeski\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Loren\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 15223776,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-08-19T13:44:16.627+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Lakshmi.Manjunath@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-02-03T20:31:03.843\",\n                    \"entityId\": 31375620,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Manjunath\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Lakshmi\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 31375620,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-02-03T20:31:03.843+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"carlos.moret@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-02-07T14:57:30.757\",\n                    \"entityId\": 31451386,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Moret\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Carlos\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 31451386,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-02-07T14:57:30.757+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"ross.dannenberg@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-02-07T14:58:41.677\",\n                    \"entityId\": 31451398,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Dannenberg\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ross\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 31451398,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-02-07T14:58:41.677+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"david.webb@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-12-05T15:52:25.607\",\n                    \"entityId\": 29393492,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Webb\",\n                    \"homePhone\": null,\n                    \"firstName\": \"David\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 29393492,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-12-05T15:52:25.607+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"agreen@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-01-04T22:26:10.78\",\n                    \"entityId\": 30501563,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Green\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Africa\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 30501563,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-01-04T22:26:10.78+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"ashley@jobsplice.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-01-06T18:15:14.203\",\n                    \"entityId\": 30520718,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55123\"\n                    },\n                    \"lastName\": \"Buckingham\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Ashley\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 30520718,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-01-06T18:15:14.203+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tyler.johnston@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-01-27T15:16:29.62\",\n                    \"entityId\": 30838744,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Johnston\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tyler\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 30838744,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-01-27T15:16:29.62+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"misha.st.clair@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-27T20:38:24.06\",\n                    \"entityId\": 27940399,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"St. Clair\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Misha\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 27940399,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-27T20:38:24.06+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"angie.beaty@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-11-18T18:46:43.59\",\n                    \"entityId\": 29041831,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Beaty\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Angie\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 29041831,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-11-18T18:46:43.59+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kalebroyolson+sisensestaffdemo2@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-21T16:28:58.267\",\n                    \"entityId\": 32494059,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"SisenseTest\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kaleb\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32494059,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-21T16:28:58.267+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"garrett.strange@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-13T14:41:22.21\",\n                    \"entityId\": 32363025,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1136 Copperfield Dr\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Georgetown\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"IN\",\n                        \"postalCode\": \"47122\"\n                    },\n                    \"lastName\": \"Strange\",\n                    \"homePhone\": \"8126539552\",\n                    \"firstName\": \"Garrett\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32363025,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-13T14:41:22.21+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dyamond.lawson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-13T14:42:33.423\",\n                    \"entityId\": 32363041,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lawson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dyamond\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32363041,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-13T14:42:33.423+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sammy.sandwich@testing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-14T14:55:49.24\",\n                    \"entityId\": 32371553,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sandwich\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sammy\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32371553,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-14T14:55:49.24+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"chris.chanko@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-20T15:58:47.61\",\n                    \"entityId\": 32486257,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Chanko\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Chris\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32486257,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-20T15:58:47.61+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"macquinn35@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-04-24T16:39:15.91\",\n                    \"entityId\": 34188258,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"2520 Clairemont Drive\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Carlsbad\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"92117\"\n                    },\n                    \"lastName\": \"Quinn\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Thomas\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": \"macquinn35@gmail.com\",\n                    \"userId\": 34188258,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"7605766885\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-04-24T16:39:15.91+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"tina.herman+1@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-04-24T17:52:36.637\",\n                    \"entityId\": 34189337,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Herman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tina\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 34189337,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-04-24T17:52:36.637+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"kelly@jobsplice.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-05-03T23:59:07.453\",\n                    \"entityId\": 34408776,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"R\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Kelly\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 34408776,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-05-03T23:59:07.453+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"T@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-05-10T13:33:44.36\",\n                    \"entityId\": 34501531,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"T\",\n                    \"homePhone\": null,\n                    \"firstName\": \"T\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 34501531,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-05-10T13:33:44.36+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rachelle@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-27T14:29:59.993\",\n                    \"entityId\": 32910481,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Arnold\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rachelle\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32910481,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-27T14:29:59.993+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"fabricio@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-27T14:59:53.87\",\n                    \"entityId\": 32910891,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Coutinho\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Fabricio\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32910891,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-27T14:59:53.87+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"julia.obrien@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-28T14:27:52.027\",\n                    \"entityId\": 32917749,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"O'Brien\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Julia\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32917749,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-28T14:27:52.027+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mani.reynolds@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-28T14:28:59.79\",\n                    \"entityId\": 32917766,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"181 NW 17th Court\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Pompano Beach\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"FL\",\n                        \"postalCode\": \"33060\"\n                    },\n                    \"lastName\": \"Reynolds\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mani\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 32917766,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-03-28T14:28:59.79+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mstmherman@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-12T21:22:37.03\",\n                    \"entityId\": 43418548,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"tttest\",\n                    \"homePhone\": null,\n                    \"firstName\": \"tttina\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43418548,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-12T21:22:37.03+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"amy.teall@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-12T22:17:27.21\",\n                    \"entityId\": 43419028,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Teall\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Amy\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43419028,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-12T22:17:27.21+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Jenna.Montgomery@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-12T22:18:12.67\",\n                    \"entityId\": 43419031,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Montgomery\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jenna\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43419031,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-12T22:18:12.67+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Mary.Fetterman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-12T22:18:50.923\",\n                    \"entityId\": 43419034,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Fetterman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mary\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43419034,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-12T22:18:50.923+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"suzanne.arroyo@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-12T22:19:36.597\",\n                    \"entityId\": 43419036,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Arroyo\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Suzanne\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43419036,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-12T22:19:36.597+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"missy.dahms@hotmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-11-08T19:19:02.097\",\n                    \"entityId\": 41188414,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Dahms\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Missy\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 41188414,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-11-08T19:19:02.097+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"liam.nguyen@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-11-09T14:07:48.637\",\n                    \"entityId\": 41192299,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nguyen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Liam\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 41192299,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-11-09T14:07:48.637+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"simpson.william@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-14T17:01:41.827\",\n                    \"entityId\": 43437460,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"William\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Simpson\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43437460,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-14T17:01:41.827+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"john.rutan@reddotmedia.co\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-21T17:48:48.64\",\n                    \"entityId\": 43654039,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rutan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"John\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 43654039,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-21T17:48:48.64+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"thepoweroftest@proton.me\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-09-29T14:38:03.403\",\n                    \"entityId\": 39533321,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCMTest\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Adobe\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 39533321,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-09-29T14:38:03.403+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jay.fraser@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-05-30T20:56:47.907\",\n                    \"entityId\": 35205907,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Fraser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jay\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 35205907,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-05-30T20:56:47.907+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Angela.Mcconnell@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-06-21T15:36:23.733\",\n                    \"entityId\": 36711517,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"McConnell\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Angela\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 36711517,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-06-21T15:36:23.733+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"amanda.sargent@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-08-23T20:20:14.35\",\n                    \"entityId\": 38579129,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"342 W 1200 S\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"LEHI\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"84043\"\n                    },\n                    \"lastName\": \"Sargent\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Amanda\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": \"\",\n                    \"userId\": 38579129,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"18013603941\",\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-08-23T20:20:14.35+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Scott.Gahn@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-02-01T18:28:45.393\",\n                    \"entityId\": 47427154,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Gahn\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Scott\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 47427154,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-02-01T18:28:45.393+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"librown1885@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-02-05T14:54:02.85\",\n                    \"entityId\": 47651856,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Brown\",\n                    \"homePhone\": null,\n                    \"firstName\": \"lindsey - TEST\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 47651856,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-02-05T14:54:02.85+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jasonrectoravi@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-02-28T16:10:26.797\",\n                    \"entityId\": 47960133,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rector\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 47960133,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-02-28T16:10:26.797+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Charleston.Carter@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-03-27T18:46:41.433\",\n                    \"entityId\": 49883438,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Carter\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Charleston\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 49883438,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-03-27T18:46:41.433+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"carley.bartlett@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-03-21T13:59:10.35\",\n                    \"entityId\": 22351702,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bartlett\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Carley\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 22351702,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-03-21T13:59:10.35+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"tess.lardie@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-04-09T15:24:38.14\",\n                    \"entityId\": 51629682,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Lardie\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tess\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 51629682,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-04-09T15:24:38.14+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jsmithAvionte+13@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-04-11T19:20:21.497\",\n                    \"entityId\": 51684573,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Alexander\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Grace\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 51684573,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2024-04-11T19:20:21.497+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Yogen.Bista@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:14:27.957\",\n                    \"entityId\": 330606,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bista\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Yogent\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330606,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:14:27.957+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Hemant.Shrestha@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:15:02.007\",\n                    \"entityId\": 330607,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Shrestha\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Hemant\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330607,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:15:02.007+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Lokesh.Maharjan@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:25:06.793\",\n                    \"entityId\": 330644,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maharjan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Lokesh\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330644,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-20T15:25:06.793+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Swez.Manandhar@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:25:37.89\",\n                    \"entityId\": 330647,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Manandhar\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Swez\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330647,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:25:37.89+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Bibek.Pokharel@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:26:07.677\",\n                    \"entityId\": 330648,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pokharel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bibek\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330648,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:26:07.677+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Charmin.Shakya@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:27:04.723\",\n                    \"entityId\": 330649,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Shakya\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Charmin\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330649,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-20T15:27:04.723+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Rivesh.Manandhar@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:27:33.18\",\n                    \"entityId\": 330660,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Manandhar\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rivesh\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330660,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:27:33.18+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Anil.Bhatta@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:28:26.783\",\n                    \"entityId\": 330662,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bhatta\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Anil\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330662,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:28:26.783+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Bijaya.Hatuwal@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:29:28.903\",\n                    \"entityId\": 330665,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hatuwal\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Bijaya\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330665,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:29:28.903+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Jitendra.Nayak@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:29:54.23\",\n                    \"entityId\": 330666,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nayak\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jitendra\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330666,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:29:54.23+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Pikesh.Maharjan@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:30:17.487\",\n                    \"entityId\": 330667,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maharjan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Pikesh\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330667,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-20T15:30:17.487+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Rachana.Maharjan@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:30:48.22\",\n                    \"entityId\": 330668,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maharjan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rachana\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330668,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-20T15:30:48.22+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Rajendra.Khanal@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:31:11.807\",\n                    \"entityId\": 330669,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Khanal\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rajendra\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330669,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:31:11.807+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Shradha.Maharjan@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:31:38.32\",\n                    \"entityId\": 330670,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Maharjan\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Shradha\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330670,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2020-02-20T15:31:38.32+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Umesh.KumarBudha@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-02-20T15:32:05.24\",\n                    \"entityId\": 330671,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"KumarBudha\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Umesh\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 330671,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-02-20T15:32:05.24+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"example@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-01-28T11:21:18.91\",\n                    \"entityId\": 5648792,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Admin\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 5648792,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-01-28T11:21:18.91+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"niraj.shrestha@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-02-03T23:07:19.43\",\n                    \"entityId\": 5746314,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Shrestha\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Niraj\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 5746314,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-02-03T23:07:19.43+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"gcherry@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-06-08T15:00:28.333\",\n                    \"entityId\": 11745259,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Cherry\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Greg\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 11745259,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-06-08T15:00:28.333+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Lindsey.smith@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-11-12T12:30:34.277\",\n                    \"entityId\": 156110,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Smith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Lindsey\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 156110,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-11-12T12:30:34.277+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"brenda.long@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-21T12:52:19.26\",\n                    \"entityId\": 114505,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"zzLong\",\n                    \"homePhone\": null,\n                    \"firstName\": \"zzBrenda\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 114505,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-01-21T12:52:19.26+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"nick.rayman@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-01-07T13:17:42.03\",\n                    \"entityId\": 113509,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rayman\",\n                    \"homePhone\": \"6513080963\",\n                    \"firstName\": \"Nick\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 113509,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2019-01-07T13:17:42.03+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jake.krisnik@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T10:50:37.597\",\n                    \"entityId\": 111277,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1270 Eagan Industrial Rd.\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": \"Suite 150\",\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Krisnik\",\n                    \"homePhone\": \"651-492-4003\",\n                    \"firstName\": \"Jake\",\n                    \"officeName\": \"Brazil\",\n                    \"email2\": null,\n                    \"userId\": 111277,\n                    \"workPhone\": \"651-289-2116\",\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-12-03T10:50:37.597+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"pearce.olson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-11-16T09:40:38.843\",\n                    \"entityId\": 110205,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"123\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Eagan\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"55121\"\n                    },\n                    \"lastName\": \"Olson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Pearce\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 110205,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2018-11-16T09:40:38.843+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tarik.alsadi@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2018-12-03T11:02:50.703\",\n                    \"entityId\": 111296,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Alsadi\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tarik\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 111296,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2018-12-03T11:02:50.703+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"devops@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-12-04T12:51:42.353\",\n                    \"entityId\": 4880310,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ops\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dev\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 4880310,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-12-04T12:51:42.353+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"nowhere@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2020-10-21T13:56:40.137\",\n                    \"entityId\": 3696982,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"TestUser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Aaron\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 3696982,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2020-10-21T13:56:40.137+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"brenda@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-02-23T16:21:48.743\",\n                    \"entityId\": 47895259,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Long\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brenda\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 47895259,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-02-23T16:21:48.743+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dmitry@jobrobotix.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-11-16T15:53:17.327\",\n                    \"entityId\": 41682274,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"B\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dmitry\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 41682274,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-11-16T15:53:17.327+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"emily.christianson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-14T11:06:56.567\",\n                    \"entityId\": 15794833,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Christianson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Emily\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 15794833,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-09-14T11:06:56.567+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mandy.krohn+hcm1@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-09-27T19:37:17.427\",\n                    \"entityId\": 27618772,\n                    \"officeDivision\": \"Technology\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Krohn\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mandy\",\n                    \"officeName\": \"Minneapolis\",\n                    \"email2\": null,\n                    \"userId\": 27618772,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Permanent\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-09-27T19:37:17.427+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sasdfasdf@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-10-04T16:34:22.863\",\n                    \"entityId\": 16893990,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"MyOldContact\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Frankly\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 16893990,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-10-04T16:34:22.863+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"dmarctestingavionte@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-10T11:42:36.157\",\n                    \"entityId\": 14303260,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"TEST\",\n                    \"homePhone\": null,\n                    \"firstName\": \"DMARC\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 14303260,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-08-10T11:42:36.157+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"coquelicote0@xbpantibody.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-08T18:28:06.027\",\n                    \"entityId\": 21453097,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"LimitedUser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sample\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 21453097,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-08T18:28:06.027+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Prashant.Biradar@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-03-12T11:21:42.21\",\n                    \"entityId\": 7548597,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Biradar\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Prashant\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 7548597,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-03-12T11:21:42.21+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mgrapptrack@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-03-15T10:01:15.443\",\n                    \"entityId\": 7839658,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"AppTracker\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Manager\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 7839658,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-03-15T10:01:15.443+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"hcmuser@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-03-05T07:45:16.563\",\n                    \"entityId\": 7290062,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCMUser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Justa\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 7290062,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-03-05T07:45:16.563+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-06T15:04:49.603\",\n                    \"entityId\": 14165216,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"NC\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Green\",\n                    \"homePhone\": null,\n                    \"firstName\": \"DiAn\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 14165216,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-08-06T15:04:49.603+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"nikki@avestaffing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-06T16:59:32.76\",\n                    \"entityId\": 14165606,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"NC\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bonsita\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Nikki\",\n                    \"officeName\": \"EyeOhWha\",\n                    \"email2\": null,\n                    \"userId\": 14165606,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-08-06T16:59:32.76+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Smita.Srivastava@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-03T10:31:42.56\",\n                    \"entityId\": 15571831,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Srivastava\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Smita\",\n                    \"officeName\": \"Oaxaca\",\n                    \"email2\": null,\n                    \"userId\": 15571831,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-09-03T10:31:42.56+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"TesterRosa@nahbra.net\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-22T21:24:57.56\",\n                    \"entityId\": 32505189,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Tssssta\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Testsssss\",\n                    \"officeName\": \"Oaxaca\",\n                    \"email2\": null,\n                    \"userId\": 32505189,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-22T21:24:57.56+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"chris.m.chanko@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-20T16:03:41.497\",\n                    \"entityId\": 32486328,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"ChankoT1\",\n                    \"homePhone\": null,\n                    \"firstName\": \"ChrisT1\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 32486328,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-20T16:03:41.497+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jason.rector@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-05-23T15:49:03.32\",\n                    \"entityId\": 35155514,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rector\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 35155514,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-05-23T15:49:03.32+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"doug.milkowski@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-11-18T18:45:04.457\",\n                    \"entityId\": 29041815,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Milkowski\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Doug\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 29041815,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-11-18T18:45:04.457+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Ereeves@apstemps.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-10T22:18:47.35\",\n                    \"entityId\": 27798642,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Reeves\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Evelyn\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27798642,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-10-10T22:18:47.35+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Philipm@apstemps.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-10T22:19:13.747\",\n                    \"entityId\": 27798646,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"McCarn\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Philip\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27798646,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-10-10T22:19:13.747+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Harryc@apstemps.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-10T22:19:42.67\",\n                    \"entityId\": 27798649,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Crews\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Harry\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27798649,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-10-10T22:19:42.67+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"randy@apstemps.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-10T22:20:05.387\",\n                    \"entityId\": 27798653,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Watts\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Randy\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27798653,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-10-10T22:20:05.387+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jakeg@apstemps.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-10T22:20:29.283\",\n                    \"entityId\": 27798656,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Griffin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jake\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27798656,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-10-10T22:20:29.283+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"nicole.sitter@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-12-14T00:32:36.45\",\n                    \"entityId\": 29612654,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sitter\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Nicole\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 29612654,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-12-14T00:32:36.45+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"example@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-11-07T14:22:28.017\",\n                    \"entityId\": 41174483,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"ExampleB\",\n                    \"homePhone\": null,\n                    \"firstName\": \"ExampleA\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 41174483,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-11-07T14:22:28.017+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"turner90@overcomebf.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-26T08:02:41.103\",\n                    \"entityId\": 15468469,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCMJOSH\",\n                    \"homePhone\": null,\n                    \"firstName\": \"TEST\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 15468469,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-08-26T08:02:41.103+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bsilengo@choicescreening.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-12T14:13:49.123\",\n                    \"entityId\": 14455908,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Silengo\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brian\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 14455908,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-08-12T14:13:49.123+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bardiente@choicescreening.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-12T14:14:22.983\",\n                    \"entityId\": 14455916,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Ardiente\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Brandon\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 14455916,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-08-12T14:14:22.983+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"joe.hiber@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-13T11:48:31.493\",\n                    \"entityId\": 15778945,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hiber\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Joe\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 15778945,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-09-13T11:48:31.493+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"sarah.draper@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-10-29T09:04:10.677\",\n                    \"entityId\": 17908259,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Draper\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sarah\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 17908259,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-10-29T09:04:10.677+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sampleaviontehcmuser@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-11-02T08:37:45.43\",\n                    \"entityId\": 18142293,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCMUser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Sample\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 18142293,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-11-02T08:37:45.43+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"wally.nehls@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-23T13:43:53.73\",\n                    \"entityId\": 16160148,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Nehls\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Wally\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 16160148,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-09-23T13:43:53.73+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"merryweather1556@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-23T14:26:04.067\",\n                    \"entityId\": 16160450,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rayman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Nicholas\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 16160450,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-09-23T14:26:04.067+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"fakehcm@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-28T11:45:36.893\",\n                    \"entityId\": 16336309,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Test\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Spotlight\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 16336309,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-09-28T11:45:36.893+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mitchell.sanford@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-02-28T14:52:02.37\",\n                    \"entityId\": 22005039,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"400 River dr Atp 274\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Wausau\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"WI\",\n                        \"postalCode\": \"54403\"\n                    },\n                    \"lastName\": \"Sanford\",\n                    \"homePhone\": \"2488802150\",\n                    \"firstName\": \"Mitchell\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 22005039,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-02-28T14:52:02.37+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jdscbr@icloud.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-25T02:17:03.937\",\n                    \"entityId\": 27099338,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Smith\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jason\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27099338,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-25T02:17:03.937+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"tshoemaker@haleymarketing.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-25T02:23:32.323\",\n                    \"entityId\": 27099339,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Shoemaker\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tiffany\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27099339,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"(716) 320-3209\",\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-25T02:23:32.323+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"grace.alexander@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-26T21:57:56.773\",\n                    \"entityId\": 27172319,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Alexander\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Grace\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27172319,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-26T21:57:56.773+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"david.jarvis@joinedup.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-31T14:20:27.197\",\n                    \"entityId\": 27214508,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Jarvis\",\n                    \"homePhone\": null,\n                    \"firstName\": \"David\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27214508,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-08-31T14:20:27.197+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"example@joynd.io\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-09-14T16:11:58.03\",\n                    \"entityId\": 27391300,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"37 N Orange\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Orlando\",\n                        \"street2\": \"Suite 500\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"32801\"\n                    },\n                    \"lastName\": \"Sheppard\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Dianna\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 27391300,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-09-14T16:11:58.03+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"tjohnson@example.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-08-15T14:27:25.41\",\n                    \"entityId\": 26972586,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Johnston\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Tyler\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 26972586,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2022-08-15T14:27:25.41+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mathew.begley@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-26T14:54:58.12\",\n                    \"entityId\": 23009737,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Begley\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mathew\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 23009737,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-04-26T14:54:58.12+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jackie.oconnor@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-04-12T16:55:10.943\",\n                    \"entityId\": 22824163,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"O'Connor\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jackie\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 22824163,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-04-12T16:55:10.943+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"charles.healy@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-06-14T21:08:40.2\",\n                    \"entityId\": 22372570,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": \"string\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"string\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"string\",\n                        \"street2\": \"string\",\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"string\"\n                    },\n                    \"lastName\": \"Healy\",\n                    \"homePhone\": \"string\",\n                    \"firstName\": \"Charlie\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": \"string\",\n                    \"userId\": 22372570,\n                    \"workPhone\": \"string\",\n                    \"mobilePhone\": \"999-428-1111\",\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-03-24T22:06:45.003+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Alana.Whiteley@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-08-10T09:12:39.663\",\n                    \"entityId\": 14302133,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Whiteley\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Alana\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 14302133,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-08-10T09:12:39.663+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"tjameson@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-07-22T08:36:48.3\",\n                    \"entityId\": 13349608,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Jameson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Taylor\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 13349608,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-07-22T08:36:48.3+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jrohn@workn.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-07-23T06:40:41.753\",\n                    \"entityId\": 13504383,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Rohn\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jake\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 13504383,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-07-23T06:40:41.753+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"daniel.knapper@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-19T09:23:01.373\",\n                    \"entityId\": 8823158,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Knapper\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Daniel\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 8823158,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-19T09:23:01.373+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"josh.dowell@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-05T12:21:10.107\",\n                    \"entityId\": 8459683,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"2316 Espinosa Place\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Highlands Ranch\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"CO\",\n                        \"postalCode\": \"80129\"\n                    },\n                    \"lastName\": \"Dowell\",\n                    \"homePhone\": \"989-295-8219\",\n                    \"firstName\": \"Josh\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": \"josh.dowell@avionte.com\",\n                    \"userId\": 8459683,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-04-05T12:21:10.107+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"charles.hendrick@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-05T12:21:57.787\",\n                    \"entityId\": 8459690,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hendrick\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Charlie\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 8459690,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-04-05T12:21:57.787+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"mikereis22@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-04-26T13:19:56.487\",\n                    \"entityId\": 9329171,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Testing\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 9329171,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-04-26T13:19:56.487+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"eric.farren@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-05-03T16:05:04.447\",\n                    \"entityId\": 9904219,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Farren\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Eric\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 9904219,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-05-03T16:05:04.447+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"meg.joyce@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-05-10T12:10:21.07\",\n                    \"entityId\": 10343506,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Joyce\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Meg\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 10343506,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-05-10T12:10:21.07+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"erin.schmeichel@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-03-12T08:58:13.92\",\n                    \"entityId\": 7547946,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Payne\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Erin\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 7547946,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-03-12T08:58:13.92+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"intuser@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-02-19T14:01:44.05\",\n                    \"entityId\": 6718513,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"InternalUser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 6718513,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-02-19T14:01:44.05+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"daren.jackson@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-02-03T09:23:16.817\",\n                    \"entityId\": 5743054,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Jackson\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Daren\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 5743054,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-02-03T09:23:16.817+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"neeraj.nittoori1@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-01-04T14:59:05.11\",\n                    \"entityId\": 5207015,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Meyer\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Chad\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 5207015,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-01-04T14:59:05.11+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"Aviontetest200@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2019-02-13T13:44:29.703\",\n                    \"entityId\": 116179,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"2\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"Eagan\",\n                    \"email2\": null,\n                    \"userId\": 116179,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2019-02-13T13:44:29.703+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"bossman@test.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-01-28T09:57:01.763\",\n                    \"entityId\": 5648313,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bossman\",\n                    \"homePhone\": null,\n                    \"firstName\": \"CEO\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 5648313,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-01-28T09:57:01.763+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"hannah.collins@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-03-07T16:33:32.36\",\n                    \"entityId\": 22046856,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"4600 Roswell Rd Bldg H302\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"Atlanta\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"GA\",\n                        \"postalCode\": \"30342\"\n                    },\n                    \"lastName\": \"Collins\",\n                    \"homePhone\": \"7705709280\",\n                    \"firstName\": \"Hannah\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": \"hannahecollins5@gmail.com\",\n                    \"userId\": 22046856,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-03-07T16:33:32.36+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mike.mckerns@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-01-25T15:13:31.887\",\n                    \"entityId\": 20778875,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"McKerns\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 20778875,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-01-25T15:13:31.887+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"jeff.craig@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-08T08:45:58.757\",\n                    \"entityId\": 15580681,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Craig\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jeff\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 15580681,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2021-09-08T08:45:58.757+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jack@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-09-28T14:59:32.923\",\n                    \"entityId\": 39524640,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Sypek\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Jack\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 39524640,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-09-28T14:59:32.923+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"charlie@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-06-09T15:05:30.31\",\n                    \"entityId\": 36194417,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Levesque\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Charlie\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 36194417,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-06-09T15:05:30.31+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"david@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-06-12T14:43:44.233\",\n                    \"entityId\": 36302624,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Folwell\",\n                    \"homePhone\": null,\n                    \"firstName\": \"David\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 36302624,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-06-12T14:43:44.233+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"Austin.pippin@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-12-13T21:49:40.83\",\n                    \"entityId\": 43434257,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pippin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Austin\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 43434257,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-12-13T21:49:40.83+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"integrations@asurint.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-10-04T20:47:05.137\",\n                    \"entityId\": 65543914,\n                    \"officeDivision\": \"Internal\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"MN\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Bowen\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Keith\",\n                    \"officeName\": \"InternalEmployees\",\n                    \"email2\": null,\n                    \"userId\": 65543914,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"802-734-3365\",\n                    \"officeRegion\": \"US\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-10-04T20:47:05.137+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"john.doe@email.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-11-28T22:14:08.71\",\n                    \"entityId\": 29273147,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"D\",\n                    \"homePhone\": null,\n                    \"firstName\": \"J\",\n                    \"officeName\": \"British Columbia\",\n                    \"email2\": null,\n                    \"userId\": 29273147,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Canada\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-11-28T22:14:08.71+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"udit.kukreja@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-12-14T00:33:43.51\",\n                    \"entityId\": 29612658,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"118E 60th St\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"New York\",\n                        \"street2\": \"\",\n                        \"county\": null,\n                        \"state_Province\": \"NY\",\n                        \"postalCode\": \"10019\"\n                    },\n                    \"lastName\": \"Kukreja\",\n                    \"homePhone\": \"21479797997\",\n                    \"firstName\": \"Udit\",\n                    \"officeName\": \"Vancouver\",\n                    \"email2\": null,\n                    \"userId\": 29612658,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-12-14T00:33:43.51+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Inactive\",\n                    \"emailAddress\": \"clare.hovland@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-20T18:57:50.247\",\n                    \"entityId\": 32488944,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Hovland\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Clare\",\n                    \"officeName\": \"Vancouver\",\n                    \"email2\": null,\n                    \"userId\": 32488944,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": true,\n                    \"createdDate\": \"2023-03-20T18:57:50.247+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"jsmithAvionte+12@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-04-02T20:35:53.333\",\n                    \"entityId\": 50868229,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": \"1700 sherwoord dr\",\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": \"fredericksburg\",\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": \"22405\"\n                    },\n                    \"lastName\": \"ai\",\n                    \"homePhone\": null,\n                    \"firstName\": \"jamie\",\n                    \"officeName\": \"Vancouver\",\n                    \"email2\": \"\",\n                    \"userId\": 50868229,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"5402736414\",\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-04-02T20:35:53.333+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"scott.m.poeschl@gmail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2021-09-22T15:56:08.52\",\n                    \"entityId\": 16142664,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Poeschl\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Scott\",\n                    \"officeName\": \"Vancouver\",\n                    \"email2\": null,\n                    \"userId\": 16142664,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2021-09-22T15:56:08.52+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"testtest@a.c0m\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-02T21:23:01.267\",\n                    \"entityId\": 32121416,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"User\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Test\",\n                    \"officeName\": \"Talent Only\",\n                    \"email2\": null,\n                    \"userId\": 32121416,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-02T21:23:01.267+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"mike@staffingreferrals.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2023-03-27T14:30:33.543\",\n                    \"entityId\": 32910490,\n                    \"officeDivision\": \"(Core Supplier Name)\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Scarborough\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Mike\",\n                    \"officeName\": \"Talent Only\",\n                    \"email2\": null,\n                    \"userId\": 32910490,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"Brazil\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2023-03-27T14:30:33.543+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sanjib.pokharel+staffdemo2@avionte.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-09-09T15:56:09.62\",\n                    \"entityId\": 63014373,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Pokharel\",\n                    \"homePhone\": null,\n                    \"firstName\": \"sanjib\",\n                    \"officeName\": \"Talent Only\",\n                    \"email2\": null,\n                    \"userId\": 63014373,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-09-09T15:56:09.62+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"sp@noemail.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-11-13T15:51:28.947\",\n                    \"entityId\": 69696053,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"SP LastName\",\n                    \"homePhone\": null,\n                    \"firstName\": \"SP FirstName\",\n                    \"officeName\": \"Talent Only\",\n                    \"email2\": null,\n                    \"userId\": 69696053,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-11-13T15:51:28.947+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rayokiy834@ishyp.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2022-10-07T18:25:01.26\",\n                    \"entityId\": 27683268,\n                    \"officeDivision\": \"Canada\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"HCMuser\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Restricted\",\n                    \"officeName\": \"PEI\",\n                    \"email2\": null,\n                    \"userId\": 27683268,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"East\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2022-10-07T18:25:01.26+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"stephen.zavela+prodavadmin@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-07-03T20:20:20.097\",\n                    \"entityId\": 58045448,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"TesstHRAdmin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Steve\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 58045448,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-07-03T20:20:20.097+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"stephen.zavela+prodavagent@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-07-03T20:23:09.547\",\n                    \"entityId\": 58045472,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"TestHRAgent\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Steve\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 58045472,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-07-03T20:23:09.547+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+prodavadminNetNew@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-07-03T20:31:15.567\",\n                    \"entityId\": 58045548,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"VemuriHRAdmin\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 58045548,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"4698158867\",\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-07-03T20:31:15.567+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+prodavagentNetNew@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-07-03T20:31:58.54\",\n                    \"entityId\": 58045554,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": \"\",\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 58045554,\n                    \"workPhone\": null,\n                    \"mobilePhone\": \"4698158867\",\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-07-03T20:31:58.54+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+NTB@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-08-12T21:37:41.04\",\n                    \"entityId\": 60028350,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 60028350,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-08-12T21:37:41.04+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+ADTT@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-08-12T23:49:26.667\",\n                    \"entityId\": 60028862,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 60028862,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-08-12T23:49:26.667+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+SAMLNO@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-08-13T00:59:51.357\",\n                    \"entityId\": 60028970,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Saml\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 60028970,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-08-13T00:59:51.357+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+PTRE@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-09-03T19:25:39.437\",\n                    \"entityId\": 62707011,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 62707011,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-09-03T19:25:39.437+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+ADT22@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-09-03T19:33:25.98\",\n                    \"entityId\": 62707126,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 62707126,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-09-03T19:33:25.98+00:00\"\n                },\n                {\n                    \"userType\": \"HCM\",\n                    \"smsPhoneNumber\": null,\n                    \"status\": \"Active\",\n                    \"emailAddress\": \"rama.vemuri+ADTT3@equifax.com\",\n                    \"smsForwardingNumber\": null,\n                    \"lastUpdatedDate\": \"2024-09-04T01:26:46.95\",\n                    \"entityId\": 62709390,\n                    \"officeDivision\": \"TestEmployerID\",\n                    \"faxPhone\": null,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"street1\": null,\n                        \"geoCode\": null,\n                        \"schoolDistrictCode\": null,\n                        \"city\": null,\n                        \"street2\": null,\n                        \"county\": null,\n                        \"state_Province\": null,\n                        \"postalCode\": null\n                    },\n                    \"lastName\": \"Vemuri\",\n                    \"homePhone\": null,\n                    \"firstName\": \"Rama\",\n                    \"officeName\": \"Test office\",\n                    \"email2\": null,\n                    \"userId\": 62709390,\n                    \"workPhone\": null,\n                    \"mobilePhone\": null,\n                    \"officeRegion\": \"TestEmployerIDRegion\",\n                    \"isArchived\": false,\n                    \"createdDate\": \"2024-09-04T01:26:46.95+00:00\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"User GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.343895\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-06-21T20:00:55\",\n            \"APIKEY\": \"c3RhZmZkZW1vMjo=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"avionte_bold\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"469 users returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.avionte.com/front-office/v1/users\"\n        },\n        \"vendor\": \"avionte_bold\",\n        \"elapsed\": \"0.554464\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_user\"\n    },\n    \"atsconnect_message\": \"469 users returned\"\n}"}],"_postman_id":"5cb1ce1a-5a73-40fc-9161-51bd78e9149f"}],"id":"59bc992e-8efa-4688-90f4-c7cce3bf7f7c","_postman_id":"59bc992e-8efa-4688-90f4-c7cce3bf7f7c","description":""}],"id":"ac9d7d29-9aa9-4efc-80de-3201abb1cedd","_postman_id":"ac9d7d29-9aa9-4efc-80de-3201abb1cedd","description":""},{"name":"BirdDog","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"b6d5d466-f14c-43a6-b999-d08457e705f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - Your BirdDog username - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your BirdDog password - <b>REQUIRED</b></p>\n</li>\n<li><p>api_id - Your BirdDog API ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2b27f9a5-064d-4cb4-a93a-46cf55bd5725","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:54:35 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"741"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199357"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"restUrl\": null,\n                \"BDBaseApiUrl\": \"https://api.birddoghr.com/v1/\",\n                \"BDAccessToken\": \"xxxxxxxxxxxxxxxxxx\"\n            },\n            \"xstatus\": \"Authenticated\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Access Token\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.980247\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T18:54:36\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"birddog\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"1.017127\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"b6d5d466-f14c-43a6-b999-d08457e705f2"}],"id":"5594e8c9-ed50-43d1-a9ea-d9926ad35d11","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"5594e8c9-ed50-43d1-a9ea-d9926ad35d11"},{"name":"Application","item":[{"name":"Application Get","id":"b00aeeaa-be99-46fd-acdd-e007d020edd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e0e221a9-bf13-4bf1-8617-00296ff1edcc","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:58:37 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"534"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272191"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:58:37\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T18:58:38\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.782624\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"b00aeeaa-be99-46fd-acdd-e007d020edd6"},{"name":"Application Get By ID","id":"81b75741-d50d-48bb-89f1-872266c4b826","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a7af23dd-1a6c-45f7-ae22-199a110eeaaf","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:10:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"533"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272194"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:10:15\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:10:15\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.737711\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"81b75741-d50d-48bb-89f1-872266c4b826"},{"name":"Application Set","id":"310defb1-5f02-42f5-b364-9c599c38c3e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"06628366-78df-4e3c-a09c-813c9134b613","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:11:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"534"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272197"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:11:13\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:11:14\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.676343\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"310defb1-5f02-42f5-b364-9c599c38c3e4"}],"id":"323490ec-5e89-4b07-b342-fae005c8eb34","_postman_id":"323490ec-5e89-4b07-b342-fae005c8eb34","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"4f58d8ef-b41e-45f9-9b06-17bcc60bb57d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b99c681d-d0f4-4d28-9e2b-3e446fdbc25f","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:18:00 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"531"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272203"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:18:01\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:18:01\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.710828\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"4f58d8ef-b41e-45f9-9b06-17bcc60bb57d"},{"name":"Candidate Set","id":"09226666-cad0-4835-9638-163dd0e07af6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f2f5548f-8f69-482b-95ed-6ac9ffb72b73","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:22:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"531"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199367"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:22:03\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:22:03\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.928839\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"09226666-cad0-4835-9638-163dd0e07af6"},{"name":"Candidate Update","id":"3ed415ec-d5d5-4298-976d-4b410ad680fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b7f6faae-8656-4854-9e45-84cd9bf2418a","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:24:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"531"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199370"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:24:42\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:24:42\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.676013\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"3ed415ec-d5d5-4298-976d-4b410ad680fd"},{"name":"Candidate Get By ID","id":"1bfe0300-5b0f-4cf6-90bb-1d10800ff051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c3db02c2-c141-4115-b28a-4032804a7a00","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:25:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"531"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272212"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:25:49\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:25:49\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.81006\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1bfe0300-5b0f-4cf6-90bb-1d10800ff051"},{"name":"Candidate Set Education","id":"af627823-65dc-4405-b24f-a5d87a5039f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f5bb646e-e2c6-4486-b17b-d75cd940a2cb","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:28:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"539"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272215"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:28:51\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:28:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.761128\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"af627823-65dc-4405-b24f-a5d87a5039f1"},{"name":"Candidate Get Education","id":"b41b91cd-d30a-4f4b-a73d-a1cfb7aa92dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1f0066a5-dedf-490e-be04-25e16e4f0491","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:32:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"537"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199382"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:32:52\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:32:52\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.723605\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"b41b91cd-d30a-4f4b-a73d-a1cfb7aa92dd"},{"name":"Candidate Set Work History","id":"a3bb4622-d9e5-493d-a9d3-0076e771e363","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"960d811b-9189-4441-8837-c88ca4d98f04","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:31:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"541"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272218"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:31:25\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:31:25\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.706513\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a3bb4622-d9e5-493d-a9d3-0076e771e363"},{"name":"Candidate Get Work History","id":"a1404216-907a-413e-9a47-fb067dd1dfad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"43a5f827-6062-44cb-9ef4-f5182a703eac","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:29:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"543"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199376"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:29:45\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:29:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.794229\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a1404216-907a-413e-9a47-fb067dd1dfad"}],"id":"03a98ff9-05fd-43ff-add2-8c4657237ddd","_postman_id":"03a98ff9-05fd-43ff-add2-8c4657237ddd","description":""},{"name":"Custom","item":[{"name":"Custom","id":"1afedd7c-b589-4d4c-9e1c-203d44501ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n    \t\t\"api_id\": \"{{api_id}}\",\n    \t\t\"api_un\": \"{{api_un}}\",\n    \t\t\"api_pw\": \"{{api_pw}}\"\n        },\n        \"vendor\":\"birddog\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{}\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to BirdDog via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8bb4a0a5-a59f-41e2-b633-ace6375c7157","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n    \t\t\"api_id\": \"{{api_id}}\",\n    \t\t\"api_un\": \"{{api_un}}\",\n    \t\t\"api_pw\": \"{{api_pw}}\"\n        },\n        \"vendor\":\"birddog\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{}\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:34:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"527"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199385"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:34:55\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:34:55\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.672319\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1afedd7c-b589-4d4c-9e1c-203d44501ad9"}],"id":"06268566-7a24-4f97-b080-4905aa11dbe3","_postman_id":"06268566-7a24-4f97-b080-4905aa11dbe3","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"92c13fd4-8594-4a7c-848d-ccebb3cf548c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3ba232f6-fa53-40aa-946d-eb31b437df3e","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:40:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"534"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199388"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:40:49\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:40:50\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.708363\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"92c13fd4-8594-4a7c-848d-ccebb3cf548c"}],"id":"3c6103e0-2d2f-4205-94af-47cf5178a221","_postman_id":"3c6103e0-2d2f-4205-94af-47cf5178a221","description":""},{"name":"Job","item":[{"name":"Job Get","id":"49c8d1c4-486e-4b36-b0e7-0a47684879cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {}\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"42b57a8e-9782-476a-b07e-0d2ef333e7b6","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Mar 2025 22:59:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"9341"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"395400"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 12,\n            \"count\": 12,\n            \"jobs\": [\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Longer term project&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Typically 5 10's nightshift&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Need to have clean background and drug screening</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Conveyor experience is a MUST; Airport experience is best</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">$30/hr + $100 Daily PD</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2024-09-09T10:04:37.287\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/910460\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 910460,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Atlanta, GA area&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Conveyor experience preferred</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">$33/hr and $90 Daily PD (if applicable)</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Day shift and night shift options&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">MUST have terminating and fiber experience&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Long term project</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2024-09-25T12:51:12.72\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/913414\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 913414,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p><strong>Benefits</strong></p>\\n<p>&nbsp;</p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong><br><br></p>\\n<ul>\\n<li>You must be 18 years old</li>\\n<li>Be able to comply with a fingerprint clearance</li>\\n<li>A valid driver's license will be required</li>\\n<li>A pre-employment drug screen and criminal background check are required</li>\\n<li>Prefer experience working with a diverse population</li>\\n<li>Experience with Microsoft</li>\\n<li>Experience with Procore is a plus but not required</li>\\n<li>2-5 years of Administrative Assistant experience in a construction environment (airport preferred)<br><br></li>\\n</ul>\\n<p><strong>Responsibilities </strong></p>\\n<p>The primary duties of an Administrative Assistant focus on providing support to others. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role. On <strong>any given day, they may undertake a range of tasks, including:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</li>\\n</ul>\\n<ul>\\n<li>Processing responses to the contractor including requests for information and change orders</li>\\n</ul>\\n<ul>\\n<li>Assisting with the badging process</li>\\n<li>Communicating with clients and vendors</li>\\n<li>Support and assist operation managers, supervisors, and staff</li>\\n<li>Preparing communications such as memos, emails, invoices, reports, and other correspondence</li>\\n</ul>\\n<ul>\\n<li>Attendance at periodic construction project team meetings</li>\\n<li>Scheduling appointments and managing calendars</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2024-12-02T11:34:59.093\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/923433\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 923433,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p><strong>Construction Recruiters America Staffing is looking for Baggage Conveyor Millwrights based in Houston, Texas to start February-March 2025.</strong></p>\\n<p>Mechanical Conveyor Installers specialize in assembling, installing, and maintaining conveyor systems. Responsibilities encompass reading blueprints, troubleshooting malfunctions, and ensuring optimal system performance. Expertise in mechanical systems and problem-solving skills are essential.<strong>&nbsp;</strong></p>\\n<p><strong>Benefits</strong></p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities:</strong></p>\\n<p>The primary duties of a Millwright is to focus on installation support. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role.<strong> On&nbsp;any given day, they may undertake a range of tasks, including:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Install mechanical conveyors in accordance with blueprints, specifications, and manufacturer instructions</li>\\n<li>Assemble and align conveyor components, such as motors, pulleys, bearings, belts, chains, and gears</li>\\n<li>Test installed conveyor systems to ensure they meet performance requirements and safety regulations</li>\\n<li>Adjust and modify conveyor components to ensure proper functioning</li>\\n<li>Troubleshoot and diagnose mechanical issues with conveyor systems and perform necessary repairs</li>\\n<li>Document installation and repair activities, including parts used, labor hours, and job completion time</li>\\n<li>Collaborate with project managers, engineers, and other team members to ensure successful completion of conveyor installation projects</li>\\n<li>Provide training to clients on the operation and maintenance of conveyor systems</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Ability to read and interpret mechanical blueprints and schematics</li>\\n<li>Knowledge of conveyor systems and installation practices</li>\\n<li>Experience with welding, cutting, and fabrication of metal components</li>\\n<li>Ability to operate power tools and heavy equipment</li>\\n<li>Physical fitness and ability to lift heavy objects</li>\\n<li>Excellent communication skills to work effectively with team members and clients</li>\\n<li>Availability to work flexible hours and travel as needed</li>\\n<li>Commitment to safety regulations and procedures</li>\\n<li>Be able to comply with a fingerprint clearance</li>\\n<li>A valid driver's license will be required</li>\\n<li>A pre-employment drug screen and criminal background check are required</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2024-12-04T11:10:14.473\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/923886\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 923886,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p>Seeking an experienced Electrical Supervisor for an airport baggage conveyor installation project at Rochester Airport. This is a supervisory roleâ\\u0080\\u0094no tools required. Responsibilities include overseeing the electrical team, attending project meetings, and representing the company professionally.</p>\\n<p>Start after the 1st of the year 2025; likely to run until June 2025</p>\\n<p>$45/hr; Prefer Locals</p>\\n<p>Monday-Friday</p>\\n<p>Requirements:<br>&nbsp; &nbsp; â\\u0080¢ &nbsp; &nbsp;Strong leadership and communication skills<br>&nbsp; &nbsp; â\\u0080¢ &nbsp; &nbsp;Ability to ensure safety, quality, and schedule compliance<br>&nbsp; &nbsp; â\\u0080¢ &nbsp; &nbsp;Previous experience in similar projects preferred</p>\\n<p>Join a great team and make an impact on a high-profile project!<span style=\\\"font-size: 9pt; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2024-12-13T10:53:13.85\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/925209\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Rochester\",\n                        \"zip\": \"14602\",\n                        \"address1\": null,\n                        \"state\": \"NY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 925209,\n                    \"title\": \"Electrician SV\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;MUST be local to Rochester Airport</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Shifts are below. We cannot guarantee additional work to follow, but these are the dates and times we expect to work.&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/10 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/11 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/18 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/19 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/25 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">2/26 7pm-3am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">$22/hr</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-10-21T13:47:13.417\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/917447\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Rochester\",\n                        \"zip\": \"14624\",\n                        \"address1\": null,\n                        \"state\": \"NY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 917447,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p><strong>Construction Recruiters America Staffing is looking for Baggage Conveyor Jr Project Manager based in Houston, Texas to start February 2025.</strong></p>\\n<p><strong>OVERVIEW</strong></p>\\n<p><span style=\\\"color: rgba(0, 0, 0, 1)\\\">The Junior Project Manager </span>assists senior project managers in planning, coordinating, and overseeing project operations by creating timelines, monitoring progress, managing tasks, and communicating with stakeholders, while gaining hands-on experience in project management practices to develop their skills further.</p>\\n<p><strong>Benefits</strong></p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p><strong><span style=\\\"color: rgba(33, 37, 41, 1)\\\">Responsibilities:</span></strong></p>\\n<p><span style=\\\"color: rgba(33, 37, 41, 1)\\\">The primary duties of a Junior Project Manager is to focus on seamless operation of Baggage Handling Systems. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role.</span><strong><span style=\\\"color: rgba(33, 37, 41, 1)\\\">&nbsp;On&nbsp;any given day, they may undertake a range of tasks, including:</span></strong></p>\\n<ul>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Maintenance and repairs: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Performing routine inspections, preventative maintenance, and troubleshooting malfunctions on equipment.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Quality control: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Ensuring compliance with quality standards and safety regulations during installation and operation.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Data collection and analysis: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Monitoring system performance by collecting data, analyzing trends, and generating reports.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Technical support: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Providing on-site technical assistance to clients and other team members.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Project management: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Coordinating with project managers to ensure project timelines and budgets are met.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Documentation and reporting: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Maintaining detailed records of work performed, including progress reports and incident logs.</span></li>\\n<li><span style=\\\"color: rgba(0, 0, 0, 1)\\\"> </span><strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Client communication: </span></strong><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Interacting with clients to address concerns, provide updates, and ensure satisfaction.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>QUALIFICATIONS</strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Strong technical knowledge in relevant engineering disciplines (mechanical, electrical, civil, etc.)&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Problem-solving and analytical skills to diagnose and resolve technical issues&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Hands-on experience with equipment installation, maintenance, and repair&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Ability to read and interpret blueprints, schematics, and technical documents&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Excellent communication and interpersonal skills for client interaction and team collaboration&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\"> </span><span style=\\\"color: rgba(0, 0, 0, 1)\\\">Strong work ethic and ability to work independently in remote locations</span></li>\\n<li>Eligible to work in the United States</li>\\n<li>High School Diploma/GED required</li>\\n<li>Valid driverâ\\u0080\\u0099s license required (with clean driving record)</li>\\n<li>Aviation Industry experience a plus</li>\\n<li>High attention to being organized with attention to detail</li>\\n<li>Excellent communication skills</li>\\n<li>Bilingual in English/Spanish a plus</li>\\n<li>Proficient in MS Office Outlook, Excel, PowerPoint and Word as well working in various software applications (ProCore)</li>\\n<li>Proficient in scheduling (P6 experience a plus)</li>\\n<li>Ability to read, write, speak, and understand the English language, to include documents</li>\\n<li>Pass a background check and drug screen</li>\\n<li>Ability to use electronic devices including IPads/Tablets, Computers, and Mobile Devices</li>\\n<li>Excellent problem-solving skills</li>\\n<li>Ability to work in a fast-paced, high stress environment while handling multiple tasks simultaneously</li>\\n<li>Eligibility to acquire needed credentials and clearances (FAA, TSA, Port Authority, U.S. Customs and U.S. Postal- as applicable)&nbsp;</li>\\n<li>Ability to work any day/shift, including holidays, within a 24/7 operation&nbsp;</li>\\n<li>Must possess the versatility, flexibility, and a willingness to work with constantly changing priorities</li>\\n<li>Must be able to report to work on a regular, consistent, and timely basis; must be prompt and maintain good attendance</li>\\n<li>Must possess the ability to be a self-starter, work independently and as a member of various teams</li>\\n<li>May be assigned other duties as required</li>\\n</ul>\\n<p>To perform this job successfully, an individual must be able to perform each essential requirement satisfactorily. The requirements listed above are representative of the work environment, knowledge, skill, and/or ability. Reasonable accommodation may be made to enable individuals with disabilities to perform the essential requirements.</p>\\n<p>&nbsp;</p>\\n<p><strong>PHYSICAL ACTIVITY/WORKING CONDITIONS MAY INCLUDE:</strong></p>\\n<ul>\\n<li>Prolonged standing and walking in an indoor/outdoor environment as applicable</li>\\n<li>Must be able to climb and work at elevated heights&nbsp;</li>\\n<li>Work in a fast-paced environment</li>\\n<li>Hand/eye coordination is required</li>\\n<li>Must be able to climb ladders</li>\\n<li>Exposure to work in varying climates</li>\\n<li>Must be able to bend, stretch, squat, and kneel</li>\\n<li>Must be able to crawl and crouch, at times, in confined tight spaces</li>\\n<li>Exposure to moderate and at times high noise levels</li>\\n<li>Be able to hear and respond to the spoken voice and to audible alarms</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2025-01-16T10:34:42.373\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/929303\",\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 929303,\n                    \"title\": \"Jr Project Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p>Mechanical Conveyor Installers specialize in assembling, installing, and maintaining conveyor systems. Responsibilities encompass reading blueprints, troubleshooting malfunctions, and ensuring optimal system performance. Expertise in mechanical systems and problem-solving skills are essential.<strong>&nbsp;</strong></p>\\n<p>&nbsp;</p>\\n<p><strong>$30/hr + $110 PD</strong></p>\\n<p><strong>Conveyor installation experience required</strong></p>\\n<p><strong>Located at Palm Beach Int. Airport</strong></p>\\n<p><strong>40 hour work week expected, potential overtime depending on project needs.</strong></p>\\n<p><strong>Late February start date</strong></p>\\n<p><strong>Day shift expected; subject to change</strong></p>\\n<p><strong>Duration 2-3 months</strong></p>\\n<p>&nbsp;</p>\\n<p><strong>Benefits</strong></p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities:</strong></p>\\n<p>The primary duties of a Millwright is to focus on installation support. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role.<strong> On&nbsp;any given day, they may undertake a range of tasks, including:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Install mechanical conveyors in accordance with blueprints, specifications, and manufacturer instructions</li>\\n<li>Assemble and align conveyor components, such as motors, pulleys, bearings, belts, chains, and gears</li>\\n<li>Test installed conveyor systems to ensure they meet performance requirements and safety regulations</li>\\n<li>Adjust and modify conveyor components to ensure proper functioning</li>\\n<li>Troubleshoot and diagnose mechanical issues with conveyor systems and perform necessary repairs</li>\\n<li>Document installation and repair activities, including parts used, labor hours, and job completion time</li>\\n<li>Collaborate with project managers, engineers, and other team members to ensure successful completion of conveyor installation projects</li>\\n<li>Provide training to clients on the operation and maintenance of conveyor systems</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Ability to read and interpret mechanical blueprints and schematics</li>\\n<li>Knowledge of conveyor systems and installation practices</li>\\n<li>Experience with welding, cutting, and fabrication of metal components</li>\\n<li>Ability to operate power tools and heavy equipment</li>\\n<li>Physical fitness and ability to lift heavy objects</li>\\n<li>Excellent communication skills to work effectively with team members and clients</li>\\n<li>Availability to work flexible hours and travel as needed</li>\\n<li>Commitment to safety regulations and procedures</li>\\n<li>Be able to comply with a fingerprint clearance</li>\\n<li>A valid driver's license will be required</li>\\n<li>A pre-employment drug screen and criminal background check are required</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2025-01-15T10:14:24.843\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/929077\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33415\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 929077,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p>Mechanical Conveyor Installers specialize in assembling, installing, and maintaining conveyor systems. Responsibilities encompass reading blueprints, troubleshooting malfunctions, and ensuring optimal system performance. Expertise in mechanical systems and problem-solving skills are essential.<strong>&nbsp;</strong></p>\\n<p>&nbsp;</p>\\n<p><strong>Ft. Lauderdale International Airport</strong></p>\\n<p><strong>$32/hr + </strong><strong>Per Diem if applicable</strong></p>\\n<p><strong>Mid February projected start</strong></p>\\n<p><strong>Day shift; subject to change</strong></p>\\n<p><strong>Monday-Thursday</strong></p>\\n<p>&nbsp;</p>\\n<p><strong>Benefits</strong></p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities:</strong></p>\\n<p>The primary duties of a Millwright is to focus on installation support. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role.<strong> On&nbsp;any given day, they may undertake a range of tasks, including:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Install mechanical conveyors in accordance with blueprints, specifications, and manufacturer instructions</li>\\n<li>Assemble and align conveyor components, such as motors, pulleys, bearings, belts, chains, and gears</li>\\n<li>Test installed conveyor systems to ensure they meet performance requirements and safety regulations</li>\\n<li>Adjust and modify conveyor components to ensure proper functioning</li>\\n<li>Troubleshoot and diagnose mechanical issues with conveyor systems and perform necessary repairs</li>\\n<li>Document installation and repair activities, including parts used, labor hours, and job completion time</li>\\n<li>Collaborate with project managers, engineers, and other team members to ensure successful completion of conveyor installation projects</li>\\n<li>Provide training to clients on the operation and maintenance of conveyor systems</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements:</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<ul>\\n<li>Ability to read and interpret mechanical blueprints and schematics</li>\\n<li>Knowledge of conveyor systems and installation practices</li>\\n<li>Experience with welding, cutting, and fabrication of metal components</li>\\n<li>Ability to operate power tools and heavy equipment</li>\\n<li>Physical fitness and ability to lift heavy objects</li>\\n<li>Excellent communication skills to work effectively with team members and clients</li>\\n<li>Availability to work flexible hours and travel as needed</li>\\n<li>Commitment to safety regulations and procedures</li>\\n<li>Be able to comply with a fingerprint clearance</li>\\n<li>A valid driver's license will be required</li>\\n<li>A pre-employment drug screen and criminal background check are required</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2025-01-21T12:35:07.99\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/929841\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 929841,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">George Bush Intercontinental Airport (locals only)</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Mid-Late February start date</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Dayshift; 50 hour work week; subject to change depending on project needs.&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">$20/hr + $9.08/hr fringe</span></strong></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2025-01-28T10:15:41.703\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/930752\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 930752,\n                    \"title\": \"Semi-Skilled Mechanical\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p style=\\\"text-align: left\\\"><span style=\\\"font-size: 9pt\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: left\\\">&nbsp;</p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">Baggage Conveyor experience is required</span></strong></p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">Austin Bergstrom International Airport</span></strong></p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">Monday - Friday Dayshift 10 hour days; subject to change depending on project needs</span></strong></p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">Duration expected until July 2025</span></strong></p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">$26/hr&nbsp; + $9.12/hr fringe</span></strong></p>\\n<p style=\\\"text-align: left\\\"><strong><span style=\\\"font-size: 9pt\\\">Travel pay may be applicable</span></strong></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt; color: rgba(0, 0, 0, 1)\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2024-10-30T09:49:21.25\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/918949\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Austin\",\n                        \"zip\": \"78719\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 918949,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p>Weâ\\u0080\\u0099re looking for a skilled journeyman electrician to add to our growing team. In this role, it will be your job to assist our customers in the maintenance, repair, and installation of their electrical systems.&nbsp; Weâ\\u0080\\u0099re hoping to hire a journeyman electrician who has already completed an electrician apprenticeship, but we are open to considering the right candidate who has not.</p>\\n<p>MUST have conveyor experience&nbsp;</p>\\n<p>Start date 3/3</p>\\n<p>10pm-5am</p>\\n<p>Pay rate is $31.00/hr taxable PLUS $13.46/hr fringe</p>\\n<p>PD $50 Daily for 7 days as long as you work all available shifts&nbsp;</p>\\n<p>Estimated month and a half to two months duration</p>\\n<p>&nbsp;</p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Benefits</strong></p>\\n<ul>\\n<li>Competitive Pay</li>\\n<li>Employer Paid Dental insurance</li>\\n<li>Employer Paid Vision insurance</li>\\n<li>Employer Paid Life insurance</li>\\n<li>Affordable PPO Health insurance</li>\\n<li>Paid Holidays</li>\\n</ul>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Responsibilities:</strong></p>\\n<p>The primary duties of a Journeyman Electrician is to focus on installation support. Their responsibilities can vary significantly not only from one position to another but also from day to day in the same role.&nbsp;<strong>On&nbsp;any given day, they may undertake a range of tasks, including:</strong></p>\\n<ul>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Read blue prints, schematics, and drawings</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\">Maintain security and limited access to BHS and screening equipment.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements:</strong></p>\\n<ul>\\n<li>General Electrical Journeyman License or Manufacturing Plant Electrical license</li>\\n<li>Electronic schooling in controllers, data gathering and solid-state controls, HMI technology, computers or PLC's is preferred.</li>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Three years experience working with automated baggage handling or materials handling systems is preferred.</li>\\n<li>Familiarity with medium and low voltage systems including repairs and adjustments</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n<li>Experience working in an aviation or industrial setting is desirable.</li>\\n<li>Ability to obtain and maintain eligibility for unescorted access to secure areas of the airport is required.</li>\\n<li>Valid driver's license is required.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Skills and Abilities:</strong></p>\\n<ul>\\n<li>Must possess strong trouble shooting skills and the knowledge to use computers and software to do so.</li>\\n<li>Strong mechanical aptitude.</li>\\n<li>Ability to:\\n<ul>\\n<li>Work in tight spaces and at heights.</li>\\n<li>Work in noisy, heated environment in and around fast-moving equipment.</li>\\n<li>Lift and move up to 100 pounds with or without assistance.</li>\\n<li>Follow instructions and meet deadlines in a fast-paced working environment.</li>\\n<li>Work independently, with little or no supervision.</li>\\n<li>Exercise good judgment in the absence of specific direction.</li>\\n<li>Communicate well both orally and in writing.</li>\\n<li>Work cooperatively with internal and external customers including the Transportation Security Administration (TSA), Airport Operations Supervisors (AOS), Portland Airline Consortium (PAC), airport tenants, and airline personnel.</li>\\n</ul>\\n</li>\\n</ul>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2025-02-12T10:27:11.443\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/933014\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 933014,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"4.76282\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-03-03T23:00:00\",\n            \"APIKEY\": \"Q29uc3RydWN0aW9uUmVjcnVpdGVyc0FQSVVTRVI6dW5AOWdAREdqRA==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"birddog\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"12 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.birddoghr.com/v1/Jobs?jobstatus=open\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"5.135511\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"12 jobs returned\"\n}"}],"_postman_id":"49c8d1c4-486e-4b36-b0e7-0a47684879cd"},{"name":"Job Get By ID","id":"c5b1f1d8-2ddc-4f04-8972-3ce478430031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n    \t\t\"id\": 910460\r\n    \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - job ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_query\": {\n      \"id\": 502737\n    }\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"93a69679-a64f-4f77-a67b-7de5735d1335","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n    \t\t\"id\": 910460\r\n    \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Mar 2025 22:55:09 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2102"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3639931"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 1,\n            \"count\": 1,\n            \"jobs\": [\n                {\n                    \"status\": \"open\",\n                    \"description\": \"<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Longer term project&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Typically 5 10's nightshift&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Need to have clean background and drug screening</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Conveyor experience is a MUST; Airport experience is best</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">$30/hr + $100 Daily PD</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2024-09-09T10:04:37.287\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/910460\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": \"910460\",\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"5.599255\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-03-03T22:55:15\",\n            \"APIKEY\": \"Q29uc3RydWN0aW9uUmVjcnVpdGVyc0FQSVVTRVI6dW5AOWdAREdqRA==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"birddog\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.birddoghr.com/v1/Jobs?jobstatus=open&jobid=910460\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"5.957835\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 jobs returned\"\n}"}],"_postman_id":"c5b1f1d8-2ddc-4f04-8972-3ce478430031"},{"name":"Job Search","id":"a26ab6a2-b00f-494c-94e8-57b6b7567bf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n    \t\t\"status\": \"closed\"\r\n    \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<ul>\n<li><p>status - <strong>OPTIONAL</strong> - open, closed, on-hold, or pending</p>\n</li>\n<li><p>jobtitle - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {\n            \"status\": \"closed\"\n        }\n  }\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"26032b14-e506-4aed-8625-e58ec67de8a3","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n    \t\t\"status\": \"closed\"\r\n    \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Mar 2025 22:59:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"121190"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"395397"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 300,\n            \"count\": 300,\n            \"jobs\": [\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-01-02T10:39:45.153\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/289770\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33126\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 289770,\n                    \"title\": \"TEST APPLICATION Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-01-09T13:49:44.85\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/292347\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Antonio\",\n                        \"zip\": \"78216\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 292347,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">ID JM License Required</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 month duration anticipated</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">40+ hour work week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start immediate upon successful completion of pre-employment screening</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$25/hr&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-01-15T09:53:50.127\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/293585\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boise\",\n                        \"zip\": \"83701\",\n                        \"address1\": null,\n                        \"state\": \"ID\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 293585,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and warehouse management as well as welding and hands on fabrication on new construction of airport conveyor system. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>Hourly Wage : $25.85 ; Fringe $6.35</p>\\n<p>EL Paso, TX</p>\\n<p>Duration TBD</p>\\n<p>Must successfully complete pre-screen drug screening and background check</p>\\n<p>40 hour work week; OT is not guaranteed or anticipated</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">MUST have a welding certification</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">MUST be well versed on conveyor installation&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 12px;\\\">Welding certification is required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-01-22T14:53:33.993\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/295727\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79936\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"Recruiter@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 295727,\n                    \"title\": \"Warehouse Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Location: Oklahoma City, OK&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate: $12/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: Long term</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start: Immediate upon completion of pre-screening&nbsp;</span></p>\\n<p>&nbsp;<strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-01-12T12:45:25.83\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/293291\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Oklahoma City\",\n                        \"zip\": \"73179\",\n                        \"address1\": null,\n                        \"state\": \"OK\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 293291,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p>&nbsp;Location: El Paso, TX</p>\\n<p>Duration: TBD</p>\\n<p>Pay Rate: $15/hr</p>\\n<p>40 hour work week</p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"background-color: #ffffff; color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\\n<p><span style=\\\"font-size: 9pt; background-color: #ffffff; color: #ff0000;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-01-12T13:01:34.303\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/293297\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 293297,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;Location: EL Paso, TX</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Hours: Monday-Friday 40 hour work week expected</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate: $14/hr</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-01-31T08:58:19.1\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/298258\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 298258,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">MUST be well versed on header steel</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">MUST pass pre-employment background and drug screening</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">MUST be able to work at an independent level&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">LOCAL AREA ONLY at this time, PD is not being offered</span></strong></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Job Details:</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Pay Rate: $23/hr taxable + $8.89/hr non taxed fringe pay&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Duration: Expected 2-3 month project; subject to change depending on job needs</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Anticipated 40+ hour work week</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Start date set for 4/3/18</span></strong></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-02-07T09:38:30.693\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/300789\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Antonio\",\n                        \"zip\": \"78216\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 300789,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-02-12T09:12:03.14\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/302065\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 302065,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-02-12T09:14:07.73\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/302066\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Mcallen\",\n                        \"zip\": \"78501\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 302066,\n                    \"title\": \"General Laborer / Electrical Helper\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-02-12T09:18:53.677\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/302070\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Mcallen\",\n                        \"zip\": \"78501\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 302070,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the <span style=\\\"background-color: #ffffff;\\\">construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"background-color: #ffffff; font-size: 14pt; color: #ff0000;\\\"><strong>MUST HAVE EXTENSIVE EXPERIENCE RUNNING RIGID CONDUIT&nbsp; &nbsp;</strong></span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Location: Louisville, KY</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration:&nbsp;May 2018&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\"><span style=\\\"font-family: 'arial black', sans-serif;\\\">Anticipated</span> Start Date: 3/12/18</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Rate: $24 taxable <span style=\\\"color: #ff0000;\\\">($70 daily per diem <span style=\\\"font-family: 'arial black', sans-serif;\\\">IF APPLICABLE</span>)&nbsp;</span></span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-02-07T10:26:29.933\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/300819\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Louisville\",\n                        \"zip\": \"40213\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 300819,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ff0000; font-size: 12pt;\\\"><strong>MUST HAVE EXTENSIVE EXPERIENCE RUNNING RIGID CONDUIT</strong></span></span></p>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Requirements</span></strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li>Exposure to various road, traffic, and inclement weather conditions</li>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 10pt;\\\">Location: Louisville, KY</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 10pt;\\\">Duration: May 2018</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 10pt;\\\">Anticipated Start Date: 3/12/18</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"font-size: 12pt;\\\">Rate: $24 taxable ($70 daily per diem IF APPLICABLE)</span></strong></span></p>\\n<p>&nbsp;</p>\\n<p>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-03-05T14:10:00.713\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/311454\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Louisville\",\n                        \"zip\": \"40018\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"Recruiter@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 311454,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 12pt;\\\"><strong>MUST HAVE EXTENSIVE EXPERIENCE RUNNING RIGID CONDUIT</strong></span></p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><strong>Location:&nbsp;Miami, FL</strong></span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><strong>Duration: May 2018 *may change based on project needs*</strong></span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><strong>Anticipated Start Date: 3/29/18</strong></span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><strong>Rate: $26 taxable ($70 daily per diem IF APPLICABLE)</strong></span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-03-14T11:19:11.777\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/313954\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33122\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"Recruiter@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 313954,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;Rate: $14/HR</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;Start Date: ASAP&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-03-15T14:20:39.55\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/314560\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 314560,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: ASAP&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Rate: $23.02 hourly; $6.35 fringe&nbsp; </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Hours: Projected 40 hours per week&nbsp;&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-03-20T08:51:34.677\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/315378\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 315378,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26.00 per hour $7.78 Fringe working for 3 weeks starting asap for two Millwrights and we need a General Laborer to travel with you paying $13.00 per hour $2.24 Fringe. We pay the hotel.&nbsp; Working 60 hours per week.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE MILLWRIGHT CONVEYOR EXPERIENCE. TEXT 954-649-8403 IF YOU ARE INTERESTED.</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-04-05T08:37:53.033\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/321421\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 321421,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-04-10T13:00:03.627\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/322793\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33331\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 322793,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">LOCALS ONLY</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Location San Antonio, TX</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: June 5th</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$25/hr taxable + $6.35/hr fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">EST. 40 hour work week Monday-Friday</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-04-10T14:07:56.12\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/322862\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Antonio\",\n                        \"zip\": \"78216\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 322862,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Full-Time, permanent position with well-known electrical contractor based out of Lake Park, FL. Immediate hire following successful completion of pre-screening drug screening and background check. Light travel to various jobs sites throughout Broward and Palm Beach county as needed.</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Salary range $75,000-$85,000 depending upon experience</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Paid holidays and vacation pay after a year with the company</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Resumes required; formal interviews will be arranged should qualifications meet and/or exceed requirements.</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Job Responsibilities: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Attend Weekly Project Managers Meetings at Corporate Office. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Responsible for planning/preparing all contract administration, executing and </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">directing project activities. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Review and study project documents including estimates, design drawings, </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">specifications, customer proposals and contracts. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Collaborate with Engineers, Programmers, and Technical personnel to gather </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">correct information regarding project logistics and avoid future electrical </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span> <span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Travel to jobsites regularly to verify project scope and specifications, company </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">standards, and compliance are within local and National Electric Code. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Work closely with each Project Superintendent to provide high-level supervision of various aspects of project management for each project they manage including: job start coordination, vendor agreements, material and rental agreement management, purchase order process, subcontract </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">agreements, submittals, and change orders. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Manage all project-related expenses, materials, and budget tasks. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Follow and enforce proper safety regulations and company policies regarding </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">installation and maintenance. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Develop and maintain strong client relationships. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Build and maintain relationships with the inspectors and other trades. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Ensure quality of work and address any problems or issues related to the </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span> <span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Create documentation for future reference, reviewing electrical installation for correct functioning and providing oversight for accuracy and consistency to electrical standards. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n</ul>\",\n                    \"date_added\": \"2018-04-09T11:50:43.853\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/322355\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 322355,\n                    \"title\": \"Electrical Project Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">The recruiter serves as&nbsp;the intermediary between our clients and&nbsp;potential employees seeking a career move or temporary assignment.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Your primary role is to fill job positions and to put people back to work. This role offers great rewards for those that get impressive results.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Strong work ethic, ability to adapt to project demands and drive is imperative to success with the Company.</span></p>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Job Details:</span></strong></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start Date: Immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay Scale:&nbsp;TBD</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Hours: Monday-Friday 8am-4pm; Must be available after office hours and weekends&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Duration: Seasonal</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Responsibilities:</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Attract applicants by placing job advertisements based on job descriptions and job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant qualifications by interviewing applicants, analyzing responses, verifying references, comparing employee skills and experience to job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant requirements with client representatives</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Key Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Highly proficient in Social Media, Phone, Email and Texting</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Face to face meetings with clients and employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent negotiation skills, job interviewing techniques, and organizational skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Analytical and methodical in your approach to problems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Be an excellent judge of character</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proficient with social media </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Act quickly and have good judgment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Arrange phone interviews with project manager</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Coordinating schedules with client field representatives for start dates, times and locations; arrange travel pay and lodging for employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Verify references</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Running background checks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Setting up pre-employment and random drug screens</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Track employee job site history</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 10pt;\\\"><strong>&nbsp;</strong></span></em></span></p>\\n<p><span style=\\\"color: #ff0000;\\\"><em>Employment is contingent upon successful completion of pre-screening drug screen and national background check</em></span></p>\",\n                    \"date_added\": \"2018-04-12T09:55:02.933\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/323435\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jupiter\",\n                        \"zip\": \"33458\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 323435,\n                    \"title\": \"Recruiter\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">START DATE: Monday 4/16</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Est. Duration: 2 weeks&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate: 22/hr + $80 PD if applicable</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Bristol, PA&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-04-13T10:31:39.817\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/323856\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Bristol\",\n                        \"zip\": \"19007\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 323856,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-04-13T11:50:02.907\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/323912\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 323912,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Location: Chicago, IL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate: $24 + $70 Daily PD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be willing to travel</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date upon successful completion of pre-screening processes</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-04-16T10:22:32.023\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/324921\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60603\",\n                        \"address1\": null,\n                        \"state\": \"IL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 324921,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be within a journeymen capacity with experience on baggage systems**</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Monday 5/21/18-5/24/18 (4 nights)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$25/hr&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-01T08:19:40.727\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/329533\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33412\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 329533,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>MUST have an active CDL License **</p>\\n<p>Long term project (2-3 years)</p>\\n<p>Monday-Friday 7:00am-3:30pm</p>\\n<p>Start date ASAP</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$22/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Local to Miami, FL</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-01T12:12:52.527\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/329691\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33126\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 329691,\n                    \"title\": \"CDL Driver\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">LOCALS ONLY</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 50 hour work week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$29.85 + $10.53 Fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Long term assignment&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-01-11T11:35:10.047\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/292942\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 292942,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking qualified Utah licensed or recipical electricians to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports, UPS Facilities and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE A UT JOURNEYMAN ELECTRICAL LICENSE OR RECIPROCAL LICENSE&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">2 SHIFT SCHEDULES (MONDAY-THURSDAY 10-HOUR DAYS OR WEDNESDAY-SATURDAY 10-HOUR DAYS)</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">$30/HR JOURNEYMAN</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">$24 - $26 APPRENTICE</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">ESTIMATED 5 MONTH DURATION -Job Starts Monday, May 14, 2018</span></strong></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-07T14:41:11.633\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/331395\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84103\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 331395,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have experience assembling conveyors from drawings and conveyor components **</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date May 29, 2018&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration 45-60 days estimated&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate $36.87/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-01T08:16:42.58\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/329531\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 329531,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$40 + $100</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">TPA Mechanical Supervisor&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start 6/5/18</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Anticipated duration 2 years&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-25T07:02:48.663\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/336710\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 336710,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Miami UPS</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">2 week duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$26 + $90&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-31T09:46:51.883\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/338021\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33182\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 338021,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-06-01T13:49:15.437\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/338522\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 338522,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date 6/7/18</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have active CDL&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-06-06T13:35:56.083\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/339720\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Saint Rose\",\n                        \"zip\": \"70087\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 339720,\n                    \"title\": \"Warehouse Worker/CDL Driver\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have vast experience with conveyor systems</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be able to work within a journeyman capacity</span></p>\\n<p>58 HOUR WORK WEEK : M-F 7AM-5:30PM; SATURDAY 7AM-END TIME MAY VARY&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$24 + $80 daily Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Location: West Deptford, NJ</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: 6/25/18</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have an OSHA 10</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-06-08T08:17:22.683\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/340353\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Paulsboro\",\n                        \"zip\": \"08066\",\n                        \"address1\": null,\n                        \"state\": \"NJ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 340353,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking self-motivated individuals to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">6/20-6/26&nbsp;night shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">6/28-7/25&nbsp;day shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$14/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have a hard hat, work boots, safety vest or safety colored shirt&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-06-15T07:59:16.487\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/342278\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 342278,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with&nbsp;mechanical work in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration estimated 1 month&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to El Paso Airport</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday; occasional weekends 7am-5:30pm (subject to change depending on project needs)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have a clean background and drug screen</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have reliable transportation</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have basic hand tools and PPE</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of&nbsp;1-year experience within mechanical trade</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-07-16T08:34:36.07\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/349854\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 349854,\n                    \"title\": \"Semi Skilled Mechanical\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date 9/4/2018-10/12/2018</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">*Must bring safety vest, work boots, hard hat and safety glasses first day of work</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Night Shift 9pm-5am</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Est. 40 hour work week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have a clean background and drug screening&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to MSP&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-07-16T10:07:16.937\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/349917\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Saint Paul\",\n                        \"zip\": \"55111\",\n                        \"address1\": null,\n                        \"state\": \"MN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 349917,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Richmond, KY</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Est. duration 1 year</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Est. 50+ hour work week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have reliable transportation&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Warehouse experience preferred&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-07-16T10:13:49.66\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/349927\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 349927,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Immediate Opening for Electrical Project supervisor for a large UPS project</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">estimated 2 month duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$31/hr + $80 Daily Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have vast experience in conveyor installation&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-07-23T11:49:38.92\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/351844\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37210\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 351844,\n                    \"title\": \"Electrical Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration 1 year, potential continued employment on other project sites&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$40/hr + $100 Daily Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Richmond, KY</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start immediate upon prescreening clearance&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have supervision experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have vast rigid experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Enclose any/all applicable certifications and thorough summary of experience as it pertains to the electrical and/or supervision trade</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-07-24T12:12:21.213\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/352441\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 352441,\n                    \"title\": \"Electrical Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 week duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16.95/hr</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-08-01T07:25:10.207\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/354686\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 354686,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be familiar with running rigid conduit**</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration estimated&nbsp;6 weeks</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Monday-Saturday 10 hour shifts....potential for&nbsp;LOTS of Overtime&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">$24/hr and $70 DAILY per diem&nbsp;</span></strong></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">ONLY 3 openings remaining, time is money! Apply or contact us today to join the CRAS team and be a part of creating a piece of history!&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-10T12:34:43.223\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/332426\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84111\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 332426,\n                    \"title\": \"Electrical Traveler\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Nashville, TN&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 2-3 weeks</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Potential to work lots of Overtime&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4-6 Openings remaining&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-08-08T08:53:54.627\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/356657\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37207\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 356657,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have 5+ years experience, preferably within the Airport setting on conveyor systems</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Locals only at this time&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start September 4th anticipated to run through late October/early November&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Badging required</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$32.61 + $14.44 Fringe&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-08T09:03:15.083\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/356664\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97220\",\n                        \"address1\": null,\n                        \"state\": \"OR\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 356664,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">New Orleans, LA</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-16T17:50:07.487\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/360284\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 360284,\n                    \"title\": \"Warehouse worker\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Locals to El Paso</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">6 month duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-17T13:30:43.333\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/360531\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 360531,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration 3 weeks with potential to move to another site within 60 mile radius (long term)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-17T14:04:49.387\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/360556\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lexington\",\n                        \"zip\": \"40502\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 360556,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have experience with Rigid Conduit</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Journeyman level electrician with supervisory experience preferred</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration estimated 3 weeks with potential to move to a separate site within 60 mile radius (longer term)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$32 + $80</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-17T14:07:42.81\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/360558\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lexington\",\n                        \"zip\": \"40502\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 360558,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$22/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Locals only</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have BHS experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">6 month duration anticipated</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-29T12:49:56.43\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/363456\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 363456,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$13/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">6 month duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-08-29T12:51:21.86\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/363458\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 363458,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 9.0pt; color: black;\\\">Airport Baggage Handling System (BHS) Operation and Maintenance (O&amp;M) Manager Job Responsibilities:</span></strong></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Oversee</span> <span style=\\\"font-size: 9.0pt;\\\">and </span><span style=\\\"font-size: 9.0pt;\\\">D</span><span style=\\\"font-size: 9.0pt;\\\">irect</span> <span style=\\\"font-size: 9.0pt;\\\">the</span> <span style=\\\"font-size: 9.0pt;\\\">O&amp;M Services.&nbsp; Shall be available, on site and immediately reachable by cell phone at all times.&nbsp; This will include attendance for regularly scheduled and on demand meetings.&nbsp; The Manager shall be in charge of and have overall responsibility for the work to be carried out under this Contract and as such shall devote his/her time exclusively to this task.&nbsp; Must provide an equal level replacement when the O&amp;M Manager is absent due to disability, vacation, or other reason.&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Immediate opening</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 6 month duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to El Paso, TX</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$60k annual salary</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: black;\\\">O&amp;M Manager Job Duties:</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide all personnel, supplies and materials necessary to perform the administration and operation of the BHS O&amp;M This includes, but not limited to:</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Supervision of multi-shift maintenance and clerical staff</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Personnel employment and administration, which includes interviewing, hiring, training, airport security badging, parking, taxes, and salaries.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Personnel training</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safety</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Budget control and invoicing</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Financial reporting, including payroll and benefits administration</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Staffing</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintenance scheduling and supervision of all subsystem of preventative maintenance, all non-scheduled failure repair tasks, respond and rectify all fault conditions.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintenance and inventory reporting</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interface with the airport and BHS equipment suppliers for reimbursement of spare parts and labor under warranty</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Develop preventive maintenance program</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Supervise non-scheduled and emergency repairs</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Inventory management including purchasing, disbursement, expediting, receiving, storage, inventory control and warranty reimbursements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain computerized maintenance and inventory control program</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Track the warranty period for all components, labor hours for repair and costs</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain BHS performance statistics and reports</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain control and purchasing of all spare parts</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Coordinate activities and system down-time with the airport and affected airlines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Preparation</span> <span style=\\\"font-size: 9.0pt;\\\">and</span> <span style=\\\"font-size: 9.0pt;\\\">submittal</span> <span style=\\\"font-size: 9.0pt;\\\">of</span> <span style=\\\"font-size: 9.0pt;\\\">BHS</span> <span style=\\\"font-size: 9.0pt;\\\">operational</span> <span style=\\\"font-size: 9.0pt;\\\">and</span> <span style=\\\"font-size: 9.0pt;\\\">maintenance</span> <span style=\\\"font-size: 9.0pt;\\\">reports</span> <span style=\\\"font-size: 9.0pt;\\\">to airport.</span>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">On-call 365/24/7 and work occasional evenings and weekends.&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledge of word processing, spreadsheet, and project management software.</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Ability to work around moving machinery, in outside weather conditions, and on an active Airport ramp near vehicles and aircraft.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Cleanliness of equipment and system and surrounding area. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">All other duties as assigned.</span></li>\\n</ul>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-29T13:15:25.063\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/363474\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 363474,\n                    \"title\": \"Operations and Maintenance Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Long term project</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Salt Lake City, UT&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have strong BHS background&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Tentative start date 9/24/18&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be able to obtain security clearance&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$35/hr + $7.47/hr Fringe&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-31T10:38:59.313\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/364257\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 364257,\n                    \"title\": \"Mechanical Site Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>&nbsp;</p>\\n<p>Seeking self motivated individual to oversee safety operations at active construction site. Construction Recruiters is a reputable staffing agency within the industrial and commercial industry, specializing on conveyor systems. Employment with CRAS is a rewarding experience with opportunity to grow and acquire new skills applicable to the construction industry. The company provides all employees 25k in life insurance employer paid, affordable BlueCross/BlueShield health insurance, as well as voluntary insurance options.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Start Date - ASAP</p>\\n<p>Duration expected to run through Feb. 2019</p>\\n<p>Shift schedule M-F 40 hour work week; subject to change depending on site needs<br /><br />$32/hr</p>\\n<p>Airport experience preferred&nbsp;</p>\\n<p>Must have a minimum of OSHA 30</p>\\n<p>Must have previous experience within trade</p>\\n<p>&nbsp;</p>\\n<p>Employment with CRAS is contingent upon successful completion of pre-employment background and drug screening.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Minimum Requirements:</p>\\n<ul>\\n<li>To be considered, all applicants must have at least: OSHA 30 in Construction and At least 3 years of professional safety experience in the field as a Safety Professional</li>\\n<li>Any of the following certifications: OSHA 500, OSHA 510, CSP, CHST, LSP (Is a plus)</li>\\n<li>Preferred CPR, First Aid, and AED certification</li>\\n<li>Eligible to work in the US, pass a background check with criminal history and pass a drug test</li>\\n<li>Physical stamina to stand or travel regularly</li>\\n</ul>\",\n                    \"date_added\": \"2018-09-12T13:37:30.673\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/367390\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 367390,\n                    \"title\": \"Site Safety Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Seeking Locals to Nashville, TN&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date 11/26/18 (will need to coordinate badging appointment 2-3 weeks prior to go live)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated Completion Date 5/15/19</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">M-F 7am-5pm (potential to work extended hours or weekends as project mandates)&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$23.95/hr + $11.36 Fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have vast BHS/conveyor experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must work at a journeyman level&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-09-13T10:12:54.05\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/367689\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 367689,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Starting in 2 weeks&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Project duration estimated 6 months</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$27/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have vast BHS/conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-09-13T14:10:22.363\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/368083\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30328\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 368083,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Start date within 2 weeks&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">must be local to Tampa airport</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">M-F (8 hour shifts)</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">3-5 minimum experience required</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Long term project (estimated 3 years)</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-09-21T14:13:08.39\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/370179\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 370179,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start 3rd week of October for estimated 2 week duration, 40 hour work week&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-02-22T08:39:43.483\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/305340\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"Recruiter@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 305340,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to OKC</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$12/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Shift times TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Long term duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-09-25T09:33:07.647\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/370864\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Oklahoma City\",\n                        \"zip\": \"73159\",\n                        \"address1\": null,\n                        \"state\": \"OK\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 370864,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to OKC</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 1-2 month project</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">M-F 8 hour shifts</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$12/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2018-09-25T09:34:20.94\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/370865\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Oklahoma City\",\n                        \"zip\": \"73159\",\n                        \"address1\": null,\n                        \"state\": \"OK\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 370865,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must be local to Denver, CO</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Electrical License preferred; Must be journeymen level</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have previous conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 weeks estimated duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Potential for lots of overtime</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$32/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2018-09-27T11:06:37.173\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/371726\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Aurora\",\n                        \"zip\": \"80014\",\n                        \"address1\": null,\n                        \"state\": \"CO\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 371726,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to El Paso, TX</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 weeks worth of work estimated</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Availability to start ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be 3rd or 4th year apprentice level electrician&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">3-4 years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-03T10:30:05.31\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/373546\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79925\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 373546,\n                    \"title\": \"Apprentice level Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to El Paso, TX</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have 3-4 year apprentice level mechanical experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">3 weeks worth of work estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Availability to start ASAP</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 3-4 year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-03T10:32:37.33\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/373549\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"El Paso\",\n                        \"zip\": \"79936\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 373549,\n                    \"title\": \"Apprentice Level Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with warehouse management in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated start December 2018 (long term duration)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">40 hour work week; OT not guaranteed</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">M-F Day shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Tampa, FL&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$38.58/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Job Responsibilities: Track materials, equipment, and supplies by directing receiving, warehousing, and distribution services; supervising staff.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Warehouse Manager Job Duties:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintains receiving, warehousing, and distribution operations by initiating, coordinating, and enforcing program, operational, and personnel policies and procedures.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Complies with federal, state, and local warehousing, material handling, and shipping requirements by studying existing and new legislation; enforcing adherence to requirements; advising management on needed actions.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safeguards warehouse operations and contents by establishing and monitoring security procedures and protocols.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Controls inventory levels by conducting physical counts; reconciling with data storage system.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintains physical condition of warehouse by planning and implementing new design layouts; inspecting equipment; issuing work orders for repair and requisitions for replacement.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintains warehouse staff by orienting, and training employees.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintains warehouse staff job results by coaching, counseling, and disciplining employees; planning, monitoring, and appraising job results.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintains professional and technical knowledge by attending educational workshops; reviewing professional publications; establishing personal networks; participating in professional societies.</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Contributes to team effort by accomplishing related results as needed.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Warehouse Manager Skills and Qualifications:</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Supervision, Developing Budgets, Safety Management, Developing Standards, Managing Processes, Surveillance Skills, Inventory Control, Reporting Skills, Analyzing Information, Equipment Maintenance, Judgment</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Potential exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt; color: red;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non-DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-03T11:02:17.323\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/373568\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 373568,\n                    \"title\": \"Warehouse Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must be local to Richwood, KY</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have 3-4 years electrical experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Long term duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have experience with rigid conduit</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Potential OT; not guaranteed&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$24/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-03T11:05:11.73\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/373571\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 373571,\n                    \"title\": \"Apprentice Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have 4-5 years experience in supervision; preferably mechanical background</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">project duration estimated 5 months</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">shift schedule TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Availability ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$32/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Chicago, IL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-05T09:26:28.42\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/374212\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Chicago\",\n                        \"zip\": \"60666\",\n                        \"address1\": null,\n                        \"state\": \"IL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 374212,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a Millwright apprentice to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Salt Lake City, UT</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$22/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Dayshift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-10-17T13:10:56.347\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/377411\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 377411,\n                    \"title\": \"Millwright Apprentice\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Apprentice Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Somerset, NJ Locals Only</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$20/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">pallet racking&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have basic hand tools and PPE</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have mechanical aptitude&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">1 week worth of work possibly more</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Referral incentive available&nbsp;&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Openings ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-11-05T11:09:47.05\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/382571\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Somerset\",\n                        \"zip\": \"08873\",\n                        \"address1\": null,\n                        \"state\": \"NJ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 382571,\n                    \"title\": \"Apprentice Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be well versed on BHS Systems&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">long term duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Immediate</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$50/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have supervisory experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Project is local to Tampa airport&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-30T13:02:58.807\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/363877\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 363877,\n                    \"title\": \"Project Manager\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-11-19T08:21:05.823\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/386411\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33614\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 386411,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Certified welder/Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Charlotte, NC</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration estimated 3 weeks</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Night Shift 9pm-5am</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$40/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have a 3g welding certification&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-11-26T12:41:01.753\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/387638\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 387638,\n                    \"title\": \"Millwright/Certified Welder\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Long term project (2-3 years)</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday-Friday Dayshift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">$22/hr</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-12-07T10:06:02.43\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/390536\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 390536,\n                    \"title\": \"CDL Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Long term duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have experience on conveyor systems</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must be at a journeyman capacity</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$35.35/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day shift anticipated minimum 40 hour work week</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Welding certification preferred&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-12-07T10:18:26.303\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/390543\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 390543,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with&nbsp;mechanical work in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to New Orleans</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday; occasional weekends 7am-5:30pm (subject to change depending on project needs)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have a clean background and drug screen</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have reliable transportation</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have basic hand tools and PPE</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of&nbsp;1-year experience within mechanical trade</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-12-07T13:05:29.753\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/390602\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 390602,\n                    \"title\": \"Semi Skilled Mechanical\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Saint Rose\",\n                        \"zip\": \"70087\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Job located in Indianapolis</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Long term duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have conveyor experience, preferable experience with header steel</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$24 + $80 Daily per diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Welding certification preferred </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-12-12T10:39:14.98\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/391427\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Plainfield\",\n                        \"zip\": \"46168\",\n                        \"address1\": null,\n                        \"state\": \"IN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 391427,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Acworth, GA</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">M-F 1/14/18 8am-5pm; additional schedule to follow&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-01-11T14:58:34.23\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/398798\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Acworth\",\n                        \"zip\": \"30102\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 398798,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Savanna, GA&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26.40/hr + $14.05/hr Fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have prior conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-01-17T10:34:44.583\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/400277\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Savannah\",\n                        \"zip\": \"31408\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 400277,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have vast conveyor installation experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be willing and able to travel. This position is going to require a vast amount of travel</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$25/hr + $45/day PD Hotel cost is covered by employer</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Prefer certified welders/millwright</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Potential to start ASAP</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-01-25T08:37:38.4\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/402452\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Wichita\",\n                        \"zip\": \"67213\",\n                        \"address1\": null,\n                        \"state\": \"KS\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 402452,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;MUST be local to Nashville, TN&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be a certified forklift operator&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date - March 4th</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Tentative completion date - May 10th&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Shift time TBD&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-01-25T08:30:16.793\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/402439\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 402439,\n                    \"title\": \"Certified forklift operator\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">dayshift M-F</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">locals only&nbsp;&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-02-14T11:14:03.537\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/408597\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 408597,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Project is long term and located in the Miami, FL area</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have prior supervisory experience, specifically within the construction industry. </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be comfortable with computer programs including but not limited to Microsoft excel, word and office&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have extensive knowledge of conveyor installation</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Pay rate is determined based off experience. This is a salary position. </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Immediate openings available&nbsp;&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-02-18T13:47:04.013\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/409578\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33126\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 409578,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Must be local to Phoenix, AZ</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">project estimated to last until June 2019</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">$14/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Dayshift estimated 40 hour work week&nbsp;&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-03-05T09:50:13.44\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/414491\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 414491,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be proficient with running rigid conduit</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start upon clearance of prescreening; estimated 30 day duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">8 hour days 7 days/week (Must be able to be on call outside of shift time)</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$32/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-09-24T09:09:15.287\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/370456\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 370456,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Full-Time, salary position with well-known electrical contractor. Immediate hire following successful completion of pre-screening drug screening and background check. Travel may be required.&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Salary range TBD depending upon experience</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Benefit options will be discussed further in interview</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Resumes required; formal interviews will be arranged should qualifications meet and/or exceed requirements.</span></strong></p>\\n<p><strong><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Job Responsibilities: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Attend Weekly Project Managers Meetings at Corporate Office. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Responsible for planning/preparing all contract administration, executing and </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">directing project activities. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Review and study project documents including estimates, design drawings, </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">specifications, customer proposals and contracts. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Collaborate with Engineers, Programmers, and Technical personnel to gather </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">correct information regarding project logistics and avoid future electrical </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span> <span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Travel to jobsites regularly to verify project scope and specifications, company </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">standards, and compliance are within local and National Electric Code. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Work closely with each Project Superintendent to provide high-level supervision of various aspects of project management for each project they manage including: job start coordination, vendor agreements, material and rental agreement management, purchase order process, subcontract </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">agreements, submittals, and change orders. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Manage all project-related expenses, materials, and budget tasks. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Follow and enforce proper safety regulations and company policies regarding </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">installation and maintenance. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Develop and maintain strong client relationships. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Build and maintain relationships with the inspectors and other trades. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Ensure quality of work and address any problems or issues related to the </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span> <span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">Create documentation for future reference, reviewing electrical installation for correct functioning and providing oversight for accuracy and consistency to electrical standards. </span><span style=\\\"font-size: 10.0pt; color: #01154d;\\\">â\\u0080¨</span></li>\\n</ul>\",\n                    \"date_added\": \"2019-05-20T09:12:10.313\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/439153\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 439153,\n                    \"title\": \"Electrical Project Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33126\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-05-27T13:20:47.317\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/441046\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fairfax\",\n                        \"zip\": \"22030\",\n                        \"address1\": null,\n                        \"state\": \"VA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 441046,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration estimated 1 year</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have vast rigid experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must work with journeyman capacity; license preferred not required</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Richmond, KY</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$26/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-07-16T10:11:43.293\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/349925\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 349925,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;$28/hr</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">Seeking locals only at this time&nbsp;</span></em></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-18T12:09:15.753\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/334787\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33126\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 334787,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-05-27T13:18:23.003\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/441045\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77061\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 441045,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Several locations are available; will be discussed in further detail during interview.&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have prior construction supervisor experience, particularly within the conveyor industry&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Salary TBD&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Benefits will be discussed in further detail during interview</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-05-20T09:15:47.143\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/439157\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cincinnati\",\n                        \"zip\": \"45226\",\n                        \"address1\": null,\n                        \"state\": \"OH\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 439157,\n                    \"title\": \"Project Supervisor\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a semi skilled mechanical worker to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Openings ASAP</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Tampa, FL&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">6:00am-4:30pm</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">estimated 3 month duration remaining&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$23.85/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 1 year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-05-14T10:10:13.82\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/437578\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 437578,\n                    \"title\": \"Semi skilled mechanical worker\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">40 hour work week give or take depending on site needs</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 month duration estimated&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16.95/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-05-30T11:15:10.033\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/442086\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 442086,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience, preferably FedEx experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be within a journeyman capacity&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date July 15th&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr + $70 PD&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-06-06T09:03:14.58\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/443952\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97218\",\n                        \"address1\": null,\n                        \"state\": \"OR\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 443952,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p>CM shall provide technical assistance and support to CO during construction. CMR shall be knowledgeable in construction practices including applicable building codes, applicable safety regulations (must have a minimum of Occupational Safety and Health Administration (OSHA) 30-hour construction safety training), cost breakdown estimating and negotiating, and technical writing. CMR shall also be computer literate and able to open and manipulate Oracle Primavera Project and Microsoft (MS) Project, Word, Excel, and SharePoint files.</p>\\n<p><strong>General Details:</strong></p>\\n<p>Immediate opening available, project estimated to run at least through December 2019</p>\\n<p>MUST be local to Gering, Nebraska&nbsp;</p>\\n<p>Salary range - $57,000 - $61,000 depending upon experience</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>Core Competencies REQUIRED:</strong></span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><em>Communications -&nbsp;</em></p>\\n<p>c. Coordinate with Client, Construction Contractor, and others as needed. d. Draft project related correspondence for Client review and issuance.</p>\\n<p>e. Document controversial issues encountered/problems experienced by or with Construction Contractor.</p>\\n<p>f. Participate in conference calls with CO and other parties as necessary.<br />g. Provide Client with information needed to resolve disputes with Construction Contractor.</p>\\n<p>h. Reports: Provide to CO a report of findings and recommendations upon completion of all reviews listed below.</p>\\n<p>i. SharePoint: Upload to Client/DSC SharePoint Project website documents noted below within one week of generating. Government Cost Estimates and documents containing Personal Identifying Information (PII) (e.g. certified payrolls) shall not be shared using the Client/DSC SharePoint Project website.</p>\\n<p>j. Deliverables: Reports, reviews, evaluations, design work, etc. shall be delivered to CO within one week unless otherwise noted by CO.</p>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><em>Meetings</em></p>\\n<p>a. Arrange, attend, and facilitate a variety of meetings including, but not limited to, weekly progress meetings at project site.</p>\\n<p>b. Chair meetings between Client and Construction Contractor except for pre-construction conference which will be chaired by CO.</p>\\n<p>c. Prepare written meeting minutes.</p>\\n<p>d. Attend Contractor led weekly and monthly safety meetings.</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p>Submittal Reviews: a. Review, comment, and process Construction Contractor&rsquo;s Division 01 Specifications and technical and informational submittals. Monitor Construction Contractor compliance with submittals.</p>\\n<p>b. Review Construction Contractor&rsquo;s baseline and progress schedules. Prepare and submit DSC Baseline Schedule Review Checklist, Schedule Update Worksheet, and Schedule Update Log.</p>\\n<p>c. Confirm Construction Contractor&rsquo;s certified payrolls have been submitted for on-site labors and mechanics. Review for accuracy and compliance with construction contract requirements and perform labor interviews periodically.</p>\\n<p>d. Review Construction Contractor&rsquo;s requests for payments and associated documents. Complete DSC Construction Payment Request Checklist for each construction invoice. Upload draft pay estimate documents and completed Construction Payment Request Checklist to Client/DSC SharePoint Project website.</p>\\n<div class=\\\"page\\\" title=\\\"Page 2\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p>e. Receive, log, and review Construction Contractor&rsquo;s submittals for completeness, accuracy and compliance with construction contract documents. Track submittals as required through completion of process and update Submittal Tracking log on Client/DSC SharePoint Project website.</p>\\n<p>f. Review and process Construction Contractor&rsquo;s Requests for Information (RFI). Assist in resolution of, draft response to, track, and follow up on RFIs.</p>\\n<p>g. Review Construction Contractor Quality Control (CQC) Daily Reports for accuracy, completeness and compliance with construction contract documents.</p>\\n<p>h. Review Construction Contractor&rsquo;s Operation &amp; Maintenance (O&amp;M) manuals, warranties, guarantees, and closeout requirements. Verify they are complete and in compliance with construction contract documents.</p>\\n<div class=\\\"page\\\" title=\\\"Page 2\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><em>Construction Modifications: </em></p>\\n<p>a. Draft scoping documents for possible construction contract modifications. Scoping documents shall cite relevant Division 01 Specifications sections and shall include appropriate sketches illustrating work to be performed. Conduct fact finding as necessary.</p>\\n<p>b. Prepare Government Cost Estimates with breakdown of labor, materials and equipment costs for proposed construction contract modifications.</p>\\n<p>c. Review Construction Contractor proposals, requests for equitable adjustment, and claims for additional cost and/or time.</p>\\n<p>d. Draft written proposal analysis explaining cost difference between Government estimate and Contractor&rsquo;s proposed cost for Client review.</p>\\n<p>e. Draft written pre-negotiation objectives for Client review. f. Draft written record of negotiations for Client review.</p>\\n<div class=\\\"page\\\" title=\\\"Page 2\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><em>General Inspections </em></p>\\n<p>a. Inspect work of Construction Contractor for progress, workmanship, quality and conformance with contract documents, applicable building codes, and safety standards. Complete Daily Report for each day of on-site construction activities. At end of each week, upload reports to the Client/DSC SharePoint Project website.</p>\\n<p>b. Inspector(s) shall be knowledgeable in construction practices including applicable building codes, applicable safety regulations (must have a minimum of Occupational Safety and Health Administration (OSHA) 30-hour construction safety training).</p>\\n<p>c. Monitor Construction Contractor compliance with Accident Prevention Plans (APP) and applicable safety requirements. Document safety issues on CMR Daily Log.</p>\\n<p>d. Perform surveys of construction quantities.</p>\\n<p>e. Take appropriate photographs (sRGB (standard Red Green Blue) color images in JPEG (Joint Photographic Experts Group) format at a pixel resolution of not less than 1600 x1200) that document construction progress and problems such as capturing items that will not be seen later, etc. Upload a minimum of three digital photographs of each work activity weekly to the Client/DSC SharePoint Project website.</p>\\n<p>f. Review and verify Construction Contractor&rsquo;s project record drawings are updated to reflect changes and work completed before each monthly progress payment.</p>\\n<p>g. Upon notification by Construction Contractor that work is substantially complete, perform inspection and draft deficiency list for Client review. Generate cost estimate for each item on deficiency list.</p>\\n<div class=\\\"page\\\" title=\\\"Page 3\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><em>Architect/Engineer (A/E) Inspections: </em></p>\\n<p>a. Coordinate critical point, special, beneficial, and final inspections by Design Staff or other Inspectors so construction work can be reviewed in a timely and efficient manner.</p>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-06-12T07:29:25.857\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/445440\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 445440,\n                    \"title\": \"Construction Project Manager\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Gering\",\n                        \"zip\": \"69341\",\n                        \"address1\": null,\n                        \"state\": \"NE\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start&nbsp;ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day shift M-F</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">ONLY 1 WEEK DURATION MUST BE LOCAL TO NEW ORLEANS*</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST BE ABLE TO START MONDAY 6/24</span></p>\\n<p><span style=\\\"font-size: 12px;\\\">$31.15/hr + $10.10/hr fringe&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-05-31T07:32:50.947\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/337940\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 337940,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE PRIOR WAREHOUSE MANAGEMENT/SUPERVISORY EXPERIENCE</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST BE LOCAL TO SALT LAKE CITY, UT</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$22/HR</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day shift estimated 40+ hour work week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration TBD&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-06-21T08:53:50.317\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/448552\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 448552,\n                    \"title\": \"Warehouse worker\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Rexburg, Idaho</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have rigging experience; prefer welding certified&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start July 1st&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day shift 40+ hours/week&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-06-24T10:52:44.95\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/448913\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Rexburg\",\n                        \"zip\": \"83440\",\n                        \"address1\": null,\n                        \"state\": \"ID\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 448913,\n                    \"title\": \"Millwright/Rigger\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">4 openings for journeymen level conveyor installers</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date July 23-July 26&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Project is located in Orlando, FL</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr + $80 Daily PD (Project scheduled to last for 3 days)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-07-03T09:15:16.793\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/452383\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 452383,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Dallas, TX&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">1 week duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-07-10T08:35:58.26\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/453821\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Addison\",\n                        \"zip\": \"75001\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 453821,\n                    \"title\": \"General Laborer/Semi Skilled Mechanical\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">3 day project in Orlando, FL</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift time 8-1630 or 7-1530&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">July 23rd-July 26th</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr + $80 PD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-07-11T08:00:17.697\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/454116\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 454116,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Phoenix, AZ</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Conveyor experience required</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26/hr&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">10 day project beginning Friday 7/19</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2019-07-16T13:05:47.037\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/455828\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85001\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 455828,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have scissor lift certification</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">2-3 week duration estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start ASAP upon pre screening clearance&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr + $80 Daily PD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-07-18T09:36:25.47\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/456393\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Amsterdam\",\n                        \"zip\": \"12010\",\n                        \"address1\": null,\n                        \"state\": \"NY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 456393,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Orlando, FL area</span></p>\\n<p style=\\\"text-align: center;\\\">MUST have conveyor experience</p>\\n<p style=\\\"text-align: center;\\\">Start date July 29th</p>\\n<p style=\\\"text-align: center;\\\">Duration TBD</p>\\n<p style=\\\"text-align: center;\\\">$28/hr + $50 Daily PD</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-07-22T07:10:27.79\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/457026\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Winter Park\",\n                        \"zip\": \"32789\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 457026,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">3 month duration&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday-Friday Dayshift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">$22/hr</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-07-30T08:11:53.873\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/459434\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 459434,\n                    \"title\": \"CDL Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have conveyor experience</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$28.00 an hour $50.00 Daily Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain a conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to the proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-08-12T10:37:03.167\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/463635\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 463635,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Brownsburg\",\n                        \"zip\": \"46112\",\n                        \"address1\": null,\n                        \"state\": \"IN\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate $14.68 Per Hour . THIS JOB STARTS AUGUST 26TH THROUGH SEPTEMBER 20TH.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry. This is a&nbsp; testing project for 2 weeks at the New Airport.&nbsp;</span></p>\\n<p><strong><u>Baggage Tester Job Description</u></strong></p>\\n<p>Construction Recruiters America Staffing is looking for self-motivated people to test a baggage conveyor system at the Airport.</p>\\n<p>&nbsp;<strong><u>Responsibilities</u></strong></p>\\n<ul>\\n<li>Baggage handlers must do a considerable amount lifting and moving of baggage to test a new Baggage Handling Conveyor system for the Airport</li>\\n<li>You are required to handle customer baggage at several points between customer departure and arrival</li>\\n<li>Lift heavy luggage, under pressure and quickly onto carts and conveyors testing the new system for jams and backups in a safe and cautious manner</li>\\n<li>You must be attentive at all times to your surroundings</li>\\n<li>Stand 100% of the time</li>\\n<li>Bending, crawling, stretching 100% of the time</li>\\n</ul>\\n<p><strong><u>Requirements</u></strong></p>\\n<ul>\\n<li>Have the ability to lift heavy bags</li>\\n<li>Be physically fit to work, it's important to be physically strong</li>\\n<li>Stay alert and pay attention to equipment and others around you</li>\\n<li>Requires adaptability because of changing hours and schedules.</li>\\n<li>Shift work is required and must be available to work day, evening, night and weekends shifts</li>\\n<li>A clean background, fingerprinting required to work at the Airport</li>\\n<li>Reading and mathematical skills</li>\\n<li>Oral and written communication skills</li>\\n<li>Must be legal to work in the US</li>\\n</ul>\\n<ul>\\n<li>Must be able to provide a resume or employment history</li>\\n<li>At least 21 years of age</li>\\n</ul>\\n<p><strong><u>Preferred Job Requirements</u></strong></p>\\n<ul>\\n<li>Prior experience working at the Airport</li>\\n<li>Prior experience as a baggage handler or ramp agent</li>\\n</ul>\\n<p><strong><u>Working Conditions</u></strong></p>\\n<p>Exposure to various inclement weather conditions, loud noise, exposure to dust, heat or cold and other seasonal weather changes</p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-08-13T13:53:14.717\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/464211\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 464211,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>$30.00 an Hour and $7.47 Fringe per Hour</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Working in the warehouse staging conveyor for the Airport, welding is a plus+</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Long term project</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Health Insurance, Dental and Vision Offered</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2018-08-17T08:57:22.09\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/360332\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 360332,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>$16.00 an hour. Must be able to work 60 hours per week.</p>\\n<p>&nbsp;</p>\\n<p>Must support the Journeyman onsite.</p>\\n<p>Be able to run EMT</p>\\n<p>Must be able to mount junction boxes</p>\\n<p>Must be dependable and reliable</p>\\n<p>Be aware of your surroundings at all times.</p>\",\n                    \"date_added\": \"2019-08-19T09:17:41.237\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/465653\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Erlanger\",\n                        \"zip\": \"41018\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 465653,\n                    \"title\": \"Apprentice Electrician\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with safety on site at the Airport to support the new construction of Baggage Handling Conveyor Systems.&nbsp;<span style=\\\"font-size: 10pt; color: black;\\\">In accordance with company policies and procedures, the Safety Person is responsible for monitoring the working conditions of the employees to ensure that all activity is compliant with state and federal regulations. The Safety Person shall enforce all the company&rsquo;s health and safety guidelines, processes and procedures to promote a safe work environment for all employees on the job site.</span></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><span style=\\\"font-size: 10pt; color: black;\\\">$20.00 an hour, overtime is not guaranteed.</span></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Assist in weekly safety meetings for employees and coordinate meetings as required</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Conduct new hire orientations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Address any work-place related health issues and accidents</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Conducts accident and near miss investigations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Report and investigate employee inquiries, suggestions and complaints of safety</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Maintain required safety and health documents/files</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Assists in processing workers compensation documentation</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Assist in training employees in safety procedures</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Inspect working conditions to ensure daily activities are compliant with OSHA regulations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Maintains MSDS books, when applicable</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Conduct periodic/weekly safety audits</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Ensure that the workforce is in compliance with machine safety </span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Maintains Emergency Action plan</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Performs PPE assessments and ensures that all employees stay compliant with OSHA safety policies and procedures</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Ensures compliance with fire protections systems &amp; NFPA codes</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Maintain clean and safe work environment in and around assigned area and throughout office area as requested</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Perform other job-related duties as assigned</span></li>\\n</ul>\\n<p style=\\\"font-size: medium; color: #000000;\\\"><strong><span style=\\\"font-size: 10pt; color: black;\\\">JOB REQUIREMENTS / QUALIFICATIONS:</span></strong></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">3-5 years of work experience in OSHA standards for the General Industry</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Demonstrates broad knowledge of state and federal safety guidelines for the workplace</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Exhibits knowledge of appropriate emergency protocols</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Possesses knowledge of legal repercussions of workplace accidents</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Demonstrates familiarity with job site environment</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Communicates clearly and effectively</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Exhibits strong organizational skills</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Possesses solid problem solving and analytical abilities</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Works well with a team</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Possesses strong writing skills</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Demonstrates ability to remain calm and cool headed in an event of an emergency</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Proficient in Microsoft Office (Excel, Word, PowerPoint, etc.)</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">OSHA-10 but prefer OSHA-30. </span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Must have CPR certification&nbsp;</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Bilingual in English/Spanish is preferred</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Noisy environment, standing, bending, walking 100% of the time</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-03T15:13:20.61\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/469962\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 469962,\n                    \"title\": \"Safety Person Semi-Skilled\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">12 weeks duration anticipated $30.00 per Hour and $50.00 Daily Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">50-60 hours a week</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start immediate upon successful completion of pre-employment screening</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-03T10:35:30.95\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/469759\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 469759,\n                    \"title\": \"Journeyman Conveyor Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Plymouth\",\n                        \"zip\": \"53073\",\n                        \"address1\": null,\n                        \"state\": \"WI\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with mechanical work in support of new construction on the conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>Must be local to Houston, TX</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$20/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have a clean background and drug screen</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have reliable transportation</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have basic hand tools and PPE</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within the manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain a conducive worksite environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to the proper maintenance of project assignment</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of&nbsp;1-year experience within mechanical trade</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">The employee must possess a valid drivers&rsquo; license issued by the resident state&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and pushcarts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to the various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-04T16:41:44.987\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/470480\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 470480,\n                    \"title\": \"Semi Skilled Mechanical\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Pay Rate $14.68 Per Hour . THIS JOB STARTS AUGUST 26TH THROUGH SEPTEMBER 20TH.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry. This is a&nbsp; testing project for 2 weeks at the New Airport.&nbsp;</span></p>\\n<p><strong><u>Baggage Tester Job Description</u></strong></p>\\n<p>Construction Recruiters America Staffing is looking for self-motivated people to test a baggage conveyor system at the Airport.</p>\\n<p>&nbsp;<strong><u>Responsibilities</u></strong></p>\\n<ul>\\n<li>Baggage handlers must do a considerable amount lifting and moving of baggage to test a new Baggage Handling Conveyor system for the Airport</li>\\n<li>You are required to handle customer baggage at several points between customer departure and arrival</li>\\n<li>Lift heavy luggage, under pressure and quickly onto carts and conveyors testing the new system for jams and backups in a safe and cautious manner</li>\\n<li>You must be attentive at all times to your surroundings</li>\\n<li>Stand 100% of the time</li>\\n<li>Bending, crawling, stretching 100% of the time</li>\\n</ul>\\n<p><strong><u>Requirements</u></strong></p>\\n<ul>\\n<li>Have the ability to lift heavy bags</li>\\n<li>Be physically fit to work, it's important to be physically strong</li>\\n<li>Stay alert and pay attention to equipment and others around you</li>\\n<li>Requires adaptability because of changing hours and schedules.</li>\\n<li>Shift work is required and must be available to work day, evening, night and weekends shifts</li>\\n<li>A clean background, fingerprinting required to work at the Airport</li>\\n<li>Reading and mathematical skills</li>\\n<li>Oral and written communication skills</li>\\n<li>Must be legal to work in the US</li>\\n</ul>\\n<ul>\\n<li>Must be able to provide a resume or employment history</li>\\n<li>At least 21 years of age</li>\\n</ul>\\n<p><strong><u>Preferred Job Requirements</u></strong></p>\\n<ul>\\n<li>Prior experience working at the Airport</li>\\n<li>Prior experience as a baggage handler or ramp agent</li>\\n</ul>\\n<p><strong><u>Working Conditions</u></strong></p>\\n<p>Exposure to various inclement weather conditions, loud noise, exposure to dust, heat or cold and other seasonal weather changes</p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-09-11T17:57:36.86\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/472318\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 472318,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Port of Miami $28.00 an hour Must be local NO Per Diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">16 weeks left onsite then transfer to MIA Airport for long-term project&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-16T12:40:34.877\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/473316\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Miami\",\n                        \"zip\": \"33132\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 473316,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;$26.00 per hour and 40-50 hours a week. OT not guaranteed.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Job opening after this at the Port of Miami.</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-17T10:57:30.257\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/473676\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 473676,\n                    \"title\": \"Airport Conveyor Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 1 year</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$32.63/hr + $12.23/hr fringe&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-23T11:39:25.7\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/475119\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 475119,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to assist with mechanical work in support of new construction on the conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$20/hr plus per diem</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have a clean background and drug screen</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have reliable transportation</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have basic hand tools and PPE</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within the manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain a conducive worksite environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to the proper maintenance of project assignment</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of&nbsp;1-year experience within mechanical trade</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">The employee must possess a valid drivers&rsquo; license issued by the resident state&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and pushcarts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to the various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-26T12:45:15.737\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/476191\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 476191,\n                    \"title\": \"Semi Skilled Mechanical\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Houston Airport (IAH)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Anticipated long term duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 40 hrs/week M-F dayshift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start upon clearance of pre-screenings</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Responsibilities </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Formatting, editing, and producing project documents, including reports to client, contractor, design engineering team, and government agencies</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Correspondence</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Updating project specifications</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Technical memos</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Processing responses to the contractor including requests for information and change orders</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Proficiency with Microsoft Word, Excel, and Project </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Potential opportunities with assistance in tracking project budgets and exception reports </span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Attendance at periodic construction project team meetings </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">&nbsp;</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Requirements</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Previous support experience, preferably in the construction or engineering industry</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Background must include proficiency with MS Word, Outlook, Access, and Excel</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Working knowledge of MS Project, Primavera and data management software (i.e. Procore, Workbench) preferred. Candidates Must possess excellent communication skills and be able to work with the project manager, contractor, owner, design team, and inspectors</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">High School Diploma or Equivalent, and two to four year related experience and/or training</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to write routine reports and correspondence, speak effectively to clients, read and interpret documents such as safety rules and operating instructions, math and reasoning ability</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Excellence in time management; attention to detail and the ability to learn quickly</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Professional, positive, and energetic attitude</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Valid drivers&rsquo; license</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to work well in a team</span></li>\\n<li><span style=\\\"font-size: 9.0pt; color: #444444;\\\">Ability to multi-task and prioritize duties</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-09-27T08:20:51.73\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/476433\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 476433,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-09-30T13:18:49.923\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/476958\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 476958,\n                    \"title\": \"Safety Manager \",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">IMMEDIATE OPENING!!!!</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28.00 PAY RATE</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$80.00 DAILY PER DIEM</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-08-15T14:10:30.687\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/465121\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Erlanger\",\n                        \"zip\": \"41018\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 465121,\n                    \"title\": \"Journeyman Conveyor Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date Monday 10/7/2019</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated 50 hours/week</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated 3-4 weeks remaining&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-01T09:00:05.52\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/477215\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 477215,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Night shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">3-4 weeks&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-03T08:30:08.657\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/478189\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 478189,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Pay Rate $31.20 Fringe $14.73&nbsp;&nbsp;</p>\\n<p>Shift starts 7:00 am - 4:30 pm Mon-Fri, schedule subject to change on workload demands</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems in the FLL Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors, ticket counters, sorters<br /></span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred but no required<br /></span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-04T16:40:47.063\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/478914\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 478914,\n                    \"title\": \"Airport Conveyor Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33314\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Seeking Locals to Nashville, TN&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">10/7/2019 (will need to coordinate badging appointment 2-3 weeks prior to go live)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated Completion Date 11/15/2019</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">M-F 7am-5pm (potential to work extended hours or weekends as project mandates)&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$23.95/hr + $11.36 Fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have vast BHS/conveyor experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must work at a journeyman level&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-04T17:24:50.907\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/478919\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 478919,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start upon clearance of pre employment screening</p>\\n<p>MUST have conveyor experience&nbsp;</p>\\n<p>Estimated 50 hours/week</p>\\n<p>$28/hr + $60 daily per diem</p>\\n<p>Graveyard shift&nbsp;</p>\\n<p>Estimated 3-4 weeks remaining&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2019-10-08T08:32:17.563\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/479393\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 479393,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2019-10-09T10:16:20.017\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/479866\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Palm Beach Gardens\",\n                        \"zip\": \"33418\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 479866,\n                    \"title\": \"Business Development \",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have a Kentucky Electrical License</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have vast rigid conduit experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have prior conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date estimated 10/21/19 - mid December</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28.39/hr + $18.98/hr fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-14T12:44:11.687\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/480944\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hebron\",\n                        \"zip\": \"41048\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 480944,\n                    \"title\": \"Journeyman Licensed Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Pay Rate $25.95 Fringe $8.65&nbsp; Construction starts December 9, 2019 Job scheduled to August 2021</p>\\n<p>Shift starts 7:00 am - 4:30 pm Mon-Fri, schedule subject to change on workload demands</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems in the FLL Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors, ticket counters, sorters<br /></span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred but no required<br /></span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-08-29T06:31:26.217\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/468698\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 468698,\n                    \"title\": \"Airport Conveyor Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Project estimated start first week in January 2020</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor installation experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $4.66/hr fringe&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-11-18T08:08:41.217\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/488929\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29170\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 488929,\n                    \"title\": \"Millwright Conveyor Installer \",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">The recruiter serves as&nbsp;the intermediary between our clients and&nbsp;potential employees seeking a career move or temporary assignment.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Your primary role is to fill job positions and to put people back to work. This role offers great rewards for those that get impressive results.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Strong work ethic, ability to adapt to project demands and drive is imperative to success with the Company.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Prior recruitment experience is not required however a wealth of Apple product knowledge along with the ability to multitask and good communication skills is essential</span></p>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Job Details:</span></strong></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start Date: Immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay Scale: $16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Hours: Monday-Friday 8am-4pm; Must be available after office hours and weekends&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Responsibilities:</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Attract applicants by placing job advertisements based on job descriptions and job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant qualifications by interviewing applicants, analyzing responses, verifying references, comparing employee skills and experience to job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant requirements with client representatives</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Key Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Highly proficient in Social Media, Phone, Email and Texting</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Face to face meetings with clients and employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent negotiation skills, job interviewing techniques, and organizational skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Analytical and methodical in your approach to problems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Be an excellent judge of character</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proficient with social media </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Act quickly and have good judgment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Arrange phone interviews with project manager</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Coordinating schedules with client field representatives for start dates, times and locations; arrange travel pay and lodging for employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Verify references</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Running background checks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Setting up pre-employment and random drug screens</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Track employee job site history</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 10pt;\\\"><strong>&nbsp;</strong></span></em></span></p>\\n<p><span style=\\\"color: #ff0000;\\\"><em>Employment is contingent upon successful completion of pre-screening drug screen and national background check</em></span></p>\",\n                    \"date_added\": \"2019-11-18T08:21:10.697\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/488934\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 488934,\n                    \"title\": \"Recruiter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Jacksonville, FL&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have rigid conduit experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have prior conveyor installation experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated start January 2020</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-11-18T10:58:14.9\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/489030\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jacksonville\",\n                        \"zip\": \"32218\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 489030,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Long term duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have experience on conveyor systems</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must be at a journeyman capacity</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$35.35/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day shift anticipated minimum 40 hour work week</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have a current Scissor Lift certification and a Fork Lift certification is preferred.</span><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2019-10-25T19:13:49.873\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/484101\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 484101,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start upon clearance of pre employment screening</p>\\n<p>MUST have conveyor experience&nbsp;</p>\\n<p>Estimated 50 hours/week</p>\\n<p>$28/hr + $60 daily per diem</p>\\n<p>Graveyard shift&nbsp;</p>\\n<p>Estimated 3-4 weeks remaining&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-01-07T12:29:01.1\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/499129\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 499129,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p>Estimated duration: 6 months</p>\\n<p>Must have experience on conveyor systems</p>\\n<p>Must be at a journeyman capacity</p>\\n<p>$35.35/hr</p>\\n<p>Day shift anticipated minimum 40 hour work week. Subject to change to nightshift.</p>\\n<p>Must have a current Scissor Lift certification and a Fork Lift certification is preferred.&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Effectively report any deficiencies to proper authority ensuring safe operation</li>\\n<li>Ability to perform physical requirements necessary as applicable to project</li>\\n<li>Comply with and maintain conducive work site environment</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Take an active role in organization and planning of daily responsibilities</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li>Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</li>\\n</ul>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Minimum of 4-year experience within the industrial mechanical industry</li>\\n<li>Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Mig/Stick Welding experience is preferred</li>\\n<li>You are required to provide your own basic hand tools and PPE</li>\\n</ul>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-01-08T13:03:33.373\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/499536\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 499536,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">IMMEDIATE OPENING AVAILABLE</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to TPA (Tampa, FL)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16.95 / hour</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have active Forklift Certification</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift. Monday to Friday</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be able to pass ALL pre-employment screenings</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-01-16T08:50:48.09\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/501649\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 501649,\n                    \"title\": \"General Laborer / Forklift Operator\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must have an active welding certification&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to TPA (Tampa, FL)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$36.93 / hour. (No Per Diem)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day Shift. Monday to Friday</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be able to pass ALL pre-employment screenings</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-01-16T08:59:01.8\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/501657\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 501657,\n                    \"title\": \"Millwright / Certified Welder\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 1 year</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$32.63/hr + $12.23/hr fringe&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-01-20T15:31:22.69\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/502737\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 502737,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</p>\\n<p>MUST be local to Houston Airport (IAH)</p>\\n<p>$16/hr</p>\\n<p>Anticipated long term duration</p>\\n<p>Estimated 40 hrs/week M-F dayshift&nbsp;</p>\\n<p>Start upon clearance of pre-screenings</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Report&nbsp;on-site&nbsp;to&nbsp;the&nbsp;project&nbsp;Superintendent</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Orientation/On-board&nbsp;of&nbsp;new&nbsp;labor.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Change&nbsp;orders to be submitted to Project Manager</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Payroll submission</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;Human&nbsp;resources related&nbsp;activities.&nbsp;Handling&nbsp;or&nbsp;accepting&nbsp;labor personal info&nbsp;and&nbsp;sensitive&nbsp;material.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;&nbsp;Draft&nbsp;Daily&nbsp;Reports&nbsp;for&nbsp;Superintendent and submit.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;&nbsp;Document&nbsp;Control&nbsp;(physical&nbsp;or&nbsp;e-filing&nbsp;in&nbsp;organized fashion)&nbsp;of&nbsp;MTRs,&nbsp;safety&nbsp;reports,&nbsp;toolbox&nbsp;talks,&nbsp;etc.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;&nbsp;Draft&nbsp;RFIs&nbsp;&nbsp;for&nbsp;approval&nbsp;by&nbsp;the&nbsp;Superintendent,&nbsp;submit&nbsp;upon&nbsp;approval,&nbsp;track&nbsp;progress.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;Work&nbsp;Station:&nbsp;upkeep,&nbsp;cleaning,&nbsp;office&nbsp;supplies&nbsp;stocking.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">&nbsp;&nbsp;Assist&nbsp;purchasing/procurement&nbsp;of&nbsp;material,&nbsp;tools&nbsp;&amp;&nbsp;supplies&nbsp;needed. Order&nbsp;&amp;&nbsp;track&nbsp;their&nbsp;deliveries.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Closeout&nbsp;Document preparation&nbsp;&ndash;&nbsp;review&nbsp;specifications&nbsp;with&nbsp;Project&nbsp;Manager, create&nbsp;a&nbsp;list&nbsp;of submittals&nbsp;needed and&nbsp;gather&nbsp;necessary&nbsp;items&nbsp;at&nbsp;the direction&nbsp;of&nbsp;the&nbsp;Project&nbsp;Manager.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Timesheets&nbsp;&ndash;&nbsp;inputting&nbsp;time&nbsp;only.&nbsp;To&nbsp;be&nbsp;reviewed, approved and&nbsp;submitted&nbsp;by&nbsp;Superintendent&nbsp;to&nbsp;payroll.</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Craft Request&nbsp;forms/dispatch call- submit&nbsp;to&nbsp;union&nbsp;hall at&nbsp;the&nbsp;direction&nbsp;of&nbsp;the&nbsp;Superintendent</span></li>\\n<li style=\\\"font-size: 11pt; color: #000000;\\\"><span style=\\\"font-size: 10pt;\\\">Needs to have OSHA 10</span></li>\\n</ul>\\n<p><em>&nbsp;</em></p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-01-21T10:14:23.223\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/502941\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 502941,\n                    \"title\": \"Administrative Assistant\",\n                    \"category\": \"Administrative Support Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">The recruiter serves as&nbsp;the intermediary between our clients and&nbsp;potential employees seeking a career move or temporary assignment.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Your primary role is to fill job positions and to put people back to work. This role offers great rewards for those that get impressive results.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Strong work ethic, ability to adapt to project demands and drive is imperative to success with the Company.</span></p>\\n<p><strong><span style=\\\"font-size: 10pt;\\\">Job Details:</span></strong></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start Date: Immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay Scale: TBD</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Hours: Monday-Friday 8am-3pm; Must be available after office hours and weekends&nbsp;</span></p>\\n<p><span style=\\\"font-size: 13.3333px;\\\">Must be local to Palm Beach Gardens/West Palm Beach area&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Responsibilities:</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Attract applicants by placing job advertisements based on job descriptions and job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant qualifications by interviewing applicants, analyzing responses, verifying references, comparing employee skills and experience to job qualifications</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Determine applicant requirements with client representatives</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Key Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Highly proficient in Social Media, Phone, Email and Texting</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Face to face meetings with clients and employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent negotiation skills, job interviewing techniques, and organizational skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Analytical and methodical in your approach to problems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Be an excellent judge of character</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proficient with social media </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Act quickly and have good judgment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Arrange phone interviews with project manager</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Coordinating schedules with client field representatives for start dates, times and locations; arrange travel pay and lodging for employees</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Verify references</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Running background checks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Setting up pre-employment and random drug screens</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Track employee job site history</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 10pt;\\\"><strong>&nbsp;</strong></span></em></span></p>\\n<p><span style=\\\"color: #ff0000;\\\"><em>Employment is contingent upon successful completion of pre-screening drug screen and national background check</em></span></p>\",\n                    \"date_added\": \"2020-01-27T10:20:13.257\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/504362\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 504362,\n                    \"title\": \"Recruiter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Project estimated start first week in January 2020</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor installation experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $4.66/hr fringe&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-03T08:28:39.843\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/506379\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 506379,\n                    \"title\": \"Millwright Conveyor Installer \",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29170\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrical apprentice to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T10:56:12.403\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507300\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29170\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507300,\n                    \"title\": \"Electrical Apprentice\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-02-05T10:59:02.363\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507302\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507302,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Mechanical Semiskilled to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T11:24:20.67\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507317\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29169\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507317,\n                    \"title\": \"Mechanical Semiskilled\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Supervisor to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T12:55:07.18\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507358\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77061\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507358,\n                    \"title\": \"Millwright Supervisor\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Lead to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T13:02:22.633\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507363\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77061\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507363,\n                    \"title\": \"Millwright Lead\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Welder to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T13:30:51.337\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507379\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507379,\n                    \"title\": \"Millwright Welder\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Supervisor to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T13:55:17.59\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507407\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507407,\n                    \"title\": \"Millwright Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\">Seeking a Warehouse Supervisor to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p>Must have experience on conveyor systems</p>\\n<p>Must be at a journeyman capacity</p>\\n<p>Day shift anticipated minimum 40 hour work week. Subject to change to nightshift.</p>\\n<p>Must have a current Scissor Lift certification and a Fork Lift certification is preferred.&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Effectively report any deficiencies to proper authority ensuring safe operation</li>\\n<li>Ability to perform physical requirements necessary as applicable to project</li>\\n<li>Comply with and maintain conducive work site environment</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Take an active role in organization and planning of daily responsibilities</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li>Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</li>\\n</ul>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Minimum of 4-year experience within the industrial mechanical industry</li>\\n<li>Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Mig/Stick Welding experience is preferred</li>\\n<li>You are required to provide your own basic hand tools and PPE</li>\\n</ul>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-02-06T07:12:23.713\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507582\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507582,\n                    \"title\": \"Warehouse Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Supervisor to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-06T08:15:06.323\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507604\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507604,\n                    \"title\": \"Millwright Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Saint Rose\",\n                        \"zip\": \"70087\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified Electrician Apprentice to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-06T08:50:23.467\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507620\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507620,\n                    \"title\": \"Electrician Apprentice\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified journeyman electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-06T09:33:34.12\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507648\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29169\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507648,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a semi skilled mechanic to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start&nbsp; upon clearance of pre-employment screening</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">1pm-9:30pm Daily excluding weekends for 30 days</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$18/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<p>&nbsp;</p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-05T07:36:33.47\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/507200\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kenner\",\n                        \"zip\": \"70062\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 507200,\n                    \"title\": \"Semi-skilled Mechanic\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$35.41 + $14.84 fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Portland</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">6am-4pm M-F projected shift schedule</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-17T07:25:17.4\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/510457\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97218\",\n                        \"address1\": null,\n                        \"state\": \"OR\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 510457,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a millwright apprentice to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$29.32 + $10.68 fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Portland</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">6am-4pm M-F projected shift schedule</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-17T09:17:07.07\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/510505\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 510505,\n                    \"title\": \"Millwright Apprentice\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97218\",\n                        \"address1\": null,\n                        \"state\": \"OR\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p>Orlando, FL</p>\\n<p>$20/hr</p>\\n<p>5x8 shift</p>\\n<p>Duration: 6 months expected</p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Needs forklift driving and proficient in loading trucks - strapping /rigging etc</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\"><strong>Must be forklift certified&nbsp;</strong></span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-26T07:36:31.787\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/513134\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 513134,\n                    \"title\": \"Forklift Operator\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 1 year</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$32.63/hr + $12.23/hr fringe&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-03-03T11:14:34.69\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/514697\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 514697,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated 60 hour work week</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$29.07/hr + $16.22/hr fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-13T07:25:02.027\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/509568\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"43219\",\n                        \"address1\": null,\n                        \"state\": \"OH\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 509568,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start date TBD&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">60 hour work week estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$21.90 + $8.60 fringe&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-02-13T07:30:02.497\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/509572\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"43219\",\n                        \"address1\": null,\n                        \"state\": \"OH\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 509572,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright/Certified Welder to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have an active welding certification</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must be local to Othello, WA</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$32/ hour</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">40+ hours a week estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration: TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 5-year experience within the industrial mechanical industry</span></li>\\n<li><strong><span style=\\\"font-size: 9.0pt;\\\">Must be certified welder</span></strong></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-03-13T07:57:31.48\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/517569\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 517569,\n                    \"title\": \"Millwright/Certified Welder\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Othello\",\n                        \"zip\": \"99344\",\n                        \"address1\": null,\n                        \"state\": \"WA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p>&nbsp;</p>\\n<p>Seeking a seasoned Millwright to assist in support of new construction on conveyor systems in the FLL Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry</p>\\n<p>Pay Rate $25.95 Fringe $8.65&nbsp;&nbsp;</p>\\n<p>Shift starts 7:00 am - 4:30 pm Mon-Fri, schedule subject to change on workload demands</p>\\n<p>Duration TBD&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors, ticket counters, sorters</li>\\n<li>Effectively report any deficiencies to proper authority ensuring safe operation</li>\\n<li>Ability to perform physical requirements necessary as applicable to project</li>\\n<li>Comply with and maintain conducive work site environment</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Take an active role in organization and planning of daily responsibilities</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li>Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</li>\\n</ul>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Minimum of 4-year experience within the industrial mechanical industry</li>\\n<li>Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Mig/Stick Welding experience is preferred but no required</li>\\n<li>You are required to provide your own basic hand tools and PPE</li>\\n</ul>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Exposure to various road, traffic, and inclement weather conditions</li>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"job_req_info\\\"><br />\\n<p>&nbsp;</p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2020-03-13T12:33:18.863\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/517682\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 517682,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Seeking a self-motivated individual to assist with safety on site at the Airport to support the new construction of Baggage Handling Conveyor Systems.&nbsp;In accordance with company policies and procedures, the Safety Person is responsible for monitoring the working conditions of the employees to ensure that all activity is compliant with state and federal regulations. The Safety Person shall enforce all the company&rsquo;s health and safety guidelines, processes and procedures to promote a safe work environment for all employees on the job site.&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Must be local to Orlando, FL</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Dayshift 40 hours estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Pay rate TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Duration TBD</span></p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>Responsibilities</strong></span></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Assist in weekly safety meetings for employees and coordinate meetings as required</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Conduct new hire orientations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Address any work-place related health issues and accidents</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Conducts accident and near miss investigations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Report and investigate employee inquiries, suggestions and complaints of safety</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Maintain required safety and health documents/files</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Assists in processing workers compensation documentation</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Assist in training employees in safety procedures</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Inspect working conditions to ensure daily activities are compliant with OSHA regulations</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Maintains MSDS books, when applicable</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Conduct periodic/weekly safety audits</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Ensure that the workforce is in compliance with machine safety </span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Maintains Emergency Action plan</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Performs PPE assessments and ensures that all employees stay compliant with OSHA safety policies and procedures</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Ensures compliance with fire protections systems &amp; NFPA codes</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Maintain clean and safe work environment in and around assigned area and throughout office area as requested</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Perform other job-related duties as assigned</span></li>\\n</ul>\\n<p style=\\\"font-size: medium; color: #000000;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>JOB REQUIREMENTS / QUALIFICATIONS:</strong></span></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">3-5 years of work experience in OSHA standards for the General Industry</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"color: #000000;\\\"><strong><span style=\\\"font-size: 10pt;\\\">Must have OSHA 30</span></strong></span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Demonstrates broad knowledge of state and federal safety guidelines for the workplace</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Exhibits knowledge of appropriate emergency protocols</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Possesses knowledge of legal repercussions of workplace accidents</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Demonstrates familiarity with job site environment</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Communicates clearly and effectively</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Exhibits strong organizational skills</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Possesses solid problem solving and analytical abilities</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Works well with a team</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Possesses strong writing skills</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Demonstrates ability to remain calm and cool headed in an event of an emergency</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Proficient in Microsoft Office (Excel, Word, PowerPoint, etc.)</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">OSHA-10 but prefer OSHA-30. </span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Must have CPR certification&nbsp;</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Bilingual in English/Spanish is preferred</span></li>\\n<li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Moderate mechanical aptitude</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Noisy environment, standing, bending, walking 100% of the time</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-03-23T11:31:59.253\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/519781\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 519781,\n                    \"title\": \"Construction Safety Person\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Local to Phoenix, AZ</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$31/hr&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-01T09:37:11.073\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/521604\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85001\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 521604,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Phoenix, AZ</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-04-01T09:57:26.83\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/521613\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85001\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 521613,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday-Friday Dayshift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">$22/hr</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-16T06:49:26.72\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/524663\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 524663,\n                    \"title\": \"CDL Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking an apprentice Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have prior conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Portland, OR</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$29.32 + $10.68 fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Night shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated to run through May</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Assist in Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 2-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-16T06:55:20.553\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/524665\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Portland\",\n                        \"zip\": \"97218\",\n                        \"address1\": null,\n                        \"state\": \"OR\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 524665,\n                    \"title\": \"Millwright Apprentice \",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright Welder to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Tampa, FL</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have active welding cert.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have prior conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$36.93/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-16T07:38:05.683\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/524672\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 524672,\n                    \"title\": \"Millwright Welder\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Aspen, CO</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Starting 5/11/2020&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-22T11:56:49.953\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/525634\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Aspen\",\n                        \"zip\": \"81611\",\n                        \"address1\": null,\n                        \"state\": \"CO\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 525634,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Estimated duration 3 weeks</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">$28/hr + $50 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Day shift 50+ hours a week</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-23T12:29:47.487\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/526000\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Antonio\",\n                        \"zip\": \"78216\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 526000,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Provide overall on-site administrative and technical management for a wide range of airport construction projects.&nbsp;CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">Immediate opening for an Electrical Project Supervisor</p>\\n<p style=\\\"text-align: center;\\\"><strong>Must have vast experience in conveyor installation&nbsp;</strong></p>\\n<p style=\\\"text-align: center;\\\">Pay rate: $35+/hr (DOE)</p>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Plans, leads, and coordinates junior superintendents and subcontractors work activities</li>\\n<li>Provide guidance for junior superintendents and monitor subcontractor personnel</li>\\n<li>Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</li>\\n<li>Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</li>\\n<li>Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems.</li>\\n<li>Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</li>\\n<li>Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction.</li>\\n<li>Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred.</li>\\n<li>Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets.</li>\\n<li>Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements.</li>\\n<li>Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget.</li>\\n<li>Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals.</li>\\n<li>Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity.</li>\\n<li>Report progress back to the Site Manager/Project Manager</li>\\n<li>Responsible for assuring that work is performed according to legal requirementsâ\\u0080¨</li>\\n<li>Perform additional assignments as directed by superiors or as required for successful project completion.</li>\\n<li>Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Qualifications:</strong></p>\\n<ul>\\n<li>Advanced knowledge of the airport construction industry, risk management and field operations required.</li>\\n<li>Excellent organizational, leadership, communication and analytical skills are necessities.</li>\\n<li>Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups</li>\\n<li>Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings.</li>\\n<li>Working knowledge of company computer systems and software necessary.â\\u0080¨</li>\\n<li>Must have comprehensive understanding of safety regulations and the application of loss control measures.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Exposure to various road, traffic, and inclement weather conditions</li>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-05-11T08:03:34.36\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/529079\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 529079,\n                    \"title\": \"Electrical Project Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;Immediate Opening</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to South Carolina</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">2 week duration estimated</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $4.66/hr fringe</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-04-06T07:57:55.787\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/522529\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29170\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 522529,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Columbia, SC&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Anticipated 1 week of work possibly longer</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Immediate start upon clearance of pre-employment screening</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-06-26T10:55:03.9\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/540433\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Columbia\",\n                        \"zip\": \"29170\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 540433,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p>Orlando, FL</p>\\n<p>$20/hr</p>\\n<p>5x8 shift</p>\\n<p>Duration: 6 months expected</p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Needs forklift driving and proficient in loading trucks - strapping /rigging etc</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\"><strong>Must be forklift certified&nbsp;</strong></span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-07-09T11:59:45.02\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/542862\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 542862,\n                    \"title\": \"Forklift Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-size: 10pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems in the FLL Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Must be local</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay Rate $25.95/hr + Fringe $8.65/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start date immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Shift starts 7:00 am - 4:30 pm Mon-Fri, schedule subject to change on workload demands</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Duration TBD</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors, ticket counters, sorters</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Minimum of 4-year experience within the industrial mechanical industry</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Mig/Stick Welding experience is preferred but no required</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2020-07-13T07:54:20.147\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/543363\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 543363,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong><u>Construction Safety Coordinator</u></strong></span><u></u></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><u>Must be local to Orlando Airport</u></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><u>M-F Dayshift</u></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><u>$33.50/hr</u></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><u>Immediate start upon clearance of pre-employment screening</u></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><u>6 month duration estimated</u></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>Job Overview:</strong></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Reporting to the Site Management, this position will enhance, administer and assist in the overall administration of the Health, Safety, Environment Program for the Vanderlande North America MCO South Project.&nbsp;&nbsp; This Coordinator will provide safety inspections, walk-throughs, and other documented work and will provide this documentation to Site Management and the project Safety Manager working remotely.&nbsp;&nbsp; The Coordinator will review daily work and status and make sure all issues are tracked, countermeasures established, and issues closed.&nbsp; The coordinator will take an active role in HSE training and for safety-related items such as emergency supplies and PPE.&nbsp;&nbsp; The coordinator will be the subject matter point person for all safety-related items at the site. &nbsp;&nbsp;Additionally, the coordinator will take an active role in the COVID-19 Infectious Disease Plan execution.&nbsp; In this role, the coordinator will support corporate safety and health plans while providing support to safety and health training.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>Job Tasks and Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Conduct organized administration of a comprehensive construction safety program.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Ensure compliance with applicable law and safety requirements for worksite conditions, processes, training, inspections, and auditing.&nbsp;</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Ensure that installation, operation, and maintenance operations departments receive excellent service in safety program administration, guidance, and support.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Ensure that the company maintains effective and independent administration of compliance and tracking of training, inspections, and audits through our cloud-based system.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Identify and eliminate injury possibilities.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Perform periodic site safety audits and inspections.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Report on safety status, findings, and progress.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Conduct training sessions for company corporate and technical employees.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Audit and evaluate safety of construction and the site trailers.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Develop reports with action items and follow up to ensure completion of action items.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Analyze accident/incident trends and develop/implement recommendations to improve safety behaviors and safety record.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Write procedures in organized, clear, compliant, and professional manner.&nbsp;</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Respond quickly to reports of safety incidents, manage investigations, and remedial actions.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Manage the responsibility for establishment and maintenance of effective communication and coordination with company personnel and all levels of Management.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Establish and maintain good working relationships with the peers, management, and site personnel.</span></li>\\n</ul>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>&nbsp;</strong></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>Knowledge-Skills-Abilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Ability to accurately perceive safety issues using senses, including Detect, Determine, Perceive, Identify, Recognize, Judge, Observe, Inspect, Estimate, and Assess.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Good Understanding of construction and industrial safety requirements.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Good written and oral communication skills.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Good organizational skills.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">High levels of independence and assertiveness, and high ethical standards.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Ability to effectively explain and integrate safety requirements with operational efficiencies.</span></li>\\n</ul>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>&nbsp;</strong></span></p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>Basic Qualifications:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">OSHA 30 Certificate for Construction.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Experience with construction safety programs.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Operations are in secured areas of airports. Ability to pass background checks to the extent required by airport authorities is required.</span></li>\\n</ul>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><strong>Preferred Qualifications:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Experience with Automated Material Handling Systems</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Experience in energy protection procedures and energized work.</span></li>\\n<li><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\">Experience managing construction safety programs.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: 'times new roman', times, serif; font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: 'times new roman', times, serif;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-08-19T07:58:58.353\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/551669\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 551669,\n                    \"title\": \"Construction Safety Coordinator\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have active Texas Journeyman or master electrical license</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration 8+ month estimated</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Dayshift; subject to change depending on project needs</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr per diem is to be discussed&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Openings for the week after next </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-08-21T12:08:26.72\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/552289\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 552289,\n                    \"title\": \"Texas Journeyman Licensed Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Apply ASAP to get on the project these openings will not last long!</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Official start week is 9/6/2020</span></strong></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">I have 2 shift options:</span></p>\\n<p><span style=\\\"font-size: 12px;\\\"><strong>Monday-Thursday 3:30am-1:30pm AND Friday-Sunday 3:30am-9:30am</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\"><strong>OR&nbsp;</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\"><strong>Monday-Thursday 1:30pm-7:30pm AND Friday-Sunday 9:30-7:30pm&nbsp;</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$18/hour</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration is TBD</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-08-05T15:11:54.897\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/548909\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Philadelphia\",\n                        \"zip\": \"19153\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 548909,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE TX APPRENTICE LICENSE</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Anticipated 3 month duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor and rigid experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$20/hr taxable + $3.98/hr fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-09-14T14:18:41.85\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/557524\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 557524,\n                    \"title\": \"Texas Apprentice Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE TX JOURNEYMAN LICENSE</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Anticipated 3 month duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor and rigid experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr taxable + $3.98/hr fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-09-14T14:21:53.77\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/557528\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 557528,\n                    \"title\": \"Texas Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\">Seeking a Warehouse Supervisor to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p>$24/hour</p>\\n<p>Day shift M-F (subject to change)</p>\\n<p>Estimated start date: Early October</p>\\n<p>Estimated duration: 9 months</p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 11.0pt;\\\">Responsibilities:</span></strong></p>\\n<ul>\\n<li>Analyze shipment logs</li>\\n<li>Review the timelines of scheduled deliveries</li>\\n<li>Track inventory levels</li>\\n<li>Make suggestions for productivity improvements</li>\\n<li>Optimize employee workflow</li>\\n<li>Ensure that the warehouse equipment in properly maintained</li>\\n<li>Ensure that safe work practices are observed</li>\\n</ul>\\n<p><span style=\\\"font-size: 11.0pt;\\\"><br /><strong>Requirements and Qualifications:</strong></span></p>\\n<ul>\\n<li>Experience as a warehouse supervisor or similar role</li>\\n<li>Forklift Operation Certification (preferred)</li>\\n<li>Proficient in Excel</li>\\n<li>Excellent interpersonal and communication skills. Team player</li>\\n<li>OSHA 10 certification is preferred</li>\\n</ul>\\n<p><span style=\\\"font-size: 11.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 11.0pt;\\\">Physical Considerations: </span></strong></p>\\n<ul>\\n<li>Must be able to stand; if required, for 8 hour periods</li>\\n<li>Must be able to walk continuously; if required, for 8 hour periods</li>\\n<li>Must have the visual capability to observe and comprehend movement of persons</li>\\n<li>Must have the capability to hear and speak at normal levels</li>\\n<li>Capability to regularly lift objects at least 50 lbs.</li>\\n<li>Capability to occasionally lift objects that might weigh more than 100 lbs.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-09-22T13:14:47.78\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/559414\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 559414,\n                    \"title\": \"Warehouse Supervisor\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Must have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $90 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9pt;\\\">Immediate start date</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9pt;\\\">M-F Day Shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9pt;\\\">Duration anticipated 3+ months</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2020-09-09T11:53:42.487\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/556303\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 556303,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Jose\",\n                        \"zip\": \"95113\",\n                        \"address1\": null,\n                        \"state\": \"CA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$25.49/hr + $11.99/hr fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start ASAP Upon clearance of pre employment screening and airport badging</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration anticipated 2-3 months</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-08-20T14:04:28.863\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/552079\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 552079,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be a competent welder and millwright and have all welding and millwright tools</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have 3g or 4g ACTIVE welding certification</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST pass pre-employment background and drug screen</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$36.93/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">M-Thurs 4 10's&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day Shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2020-08-25T13:20:41.323\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/553069\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 553069,\n                    \"title\": \"Millwright/Welder\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Seeking a seasoned administrative assistant to offer assistance within the industrial construction industry. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units.</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">MUST be local to JFK Airport</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">MUST have OSHA 10 certification</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Pay: $25/hr</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Shift schedule: M-F 6:00am-2:30pm (subject to change)</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Project estimated to run until 2023</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Start upon clearance of pre-screenings (background and drug test)</span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\">Overall support for the on-site Superintendent in the following areas:</span></p>\\n<ul>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Report&nbsp;on-site&nbsp;to&nbsp;the&nbsp;project&nbsp;Superintendent</span></li>\\n<li style=\\\"color: #000000;\\\"><span style=\\\"font-size: 13.3333px; color: #000000; font-family: verdana, geneva, sans-serif;\\\">QAQC, Inspection requests on VEO</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Daily Report submitted on Raken</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Document Control of MTRs, safety reports, toolbox talks, and submitted online</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Liaison for HP Office Engineer</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Liaison for Siemens point of contact</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Logistical Support of Deliveries</span></li>\\n<li style=\\\"color: #000000; font-size: 11pt;\\\"><span style=\\\"font-size: 10pt; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Write up of RFIs, submission, track progress</span></li>\\n<li style=\\\"color: #000000;\\\"><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\"><span style=\\\"font-size: 13.3333px;\\\">Trailer upkeep, cleaning, office supplies</span></span></li>\\n<li style=\\\"color: #000000;\\\"><span style=\\\"font-size: 13.3333px; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Stock safety supplies</span></li>\\n<li style=\\\"color: #000000;\\\"><span style=\\\"font-size: 13.3333px; color: #000000; font-family: verdana, geneva, sans-serif;\\\">Assistance seeking material, supplies for purchasing and procurement purposes</span></li>\\n<li><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\"><span style=\\\"font-size: 13.3333px;\\\">Closeout Document&nbsp;</span><span style=\\\"font-size: 13.3333px;\\\">preparation</span></span></li>\\n<li style=\\\"color: #000000;\\\"><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\"><span style=\\\"font-size: 13.3333px;\\\">Mark up of as-builts at direction of Superintendent/PM</span></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #000000; font-family: verdana, geneva, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2020-10-16T10:24:32.59\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/564961\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 564961,\n                    \"title\": \"Administrative Assistant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jamaica\",\n                        \"zip\": \"11430\",\n                        \"address1\": null,\n                        \"state\": \"NY\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking an administrative assistant to work at a highly skilled and well-respected temporary staffing agency. Looking for someone with a strong work ethic, ability to adapt to project demands and a drive to succeed in the role.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Details:</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start Date: Immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay: $14/hr</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Hours: Monday-Friday 8am-3pm</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Must be local to Palm Beach Gardens/West Palm Beach area&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Filing management</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Assist in mailing, shipping, copying and scanning as needed</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Maintaining office supplies inventory</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Process incoming and outgoing mail and deliveries</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Update employee records</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Running background checks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Verify references</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Setting up pre-employment drug screens</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Assist departments with special projects as necessary</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Key Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">High School Diploma or GED&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proficient with Apple products</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be great with Excel, Word and Outlook</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Highly skilled in phone, email and texting</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent organizational skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Act quickly and have good judgment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Benefits</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Health Insurance, Dental, Vision options available as well as employer paid life insurance ($25,000) after 90 days of employment&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 10pt;\\\"><em>Employment is contingent upon successful completion of pre-screening drug screen and background check</em></span></p>\",\n                    \"date_added\": \"2020-10-26T09:25:51.383\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/567758\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 567758,\n                    \"title\": \"Administrative Assistant \",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking an administrative assistant to work at a highly skilled and well-respected temporary staffing agency. Looking for someone with a strong work ethic, ability to adapt to project demands and a drive to succeed in the role.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Details:</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start Date: Immediate</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Pay: $14/hr</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Hours: Monday-Friday 8am-3pm</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Must be local to Palm Beach Gardens/West Palm Beach area&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Job Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Filing management</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Assist in mailing, shipping, copying and scanning as needed</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Maintaining office supplies inventory</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Process incoming and outgoing mail and deliveries</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Update employee records</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Running background checks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Verify references</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Setting up pre-employment drug screens</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Assist departments with special projects as necessary</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Key Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">High School Diploma or GED&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Proficient with Apple products</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be great with Excel, Word and Outlook</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Highly skilled in phone, email and texting</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Excellent organizational skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Act quickly and have good judgment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Benefits</strong></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Health Insurance, Dental, Vision options available as well as employer paid life insurance ($25,000) after 90 days of employment&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 10pt;\\\"><em>Employment is contingent upon successful completion of pre-screening drug screen and background check</em></span></p>\",\n                    \"date_added\": \"2020-11-06T10:59:15.927\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/570520\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 570520,\n                    \"title\": \"Administrative Assistant \",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start ASAP</p>\\n<p><strong>MUST HAVE EMT EXPERIENCE</strong></p>\\n<p>Estimated 50+ hours/week</p>\\n<p>$27/hr + $80 daily per diem</p>\\n<p>Must be willing to work day or night shift</p>\\n<p>Estimated 6 weeks&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-11-10T11:34:17.623\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/571058\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 571058,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Pittston\",\n                        \"zip\": \"18640\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician apprentice to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start ASAP</p>\\n<p><strong>MUST HAVE EMT EXPERIENCE</strong></p>\\n<p>Estimated 50+ hours/week</p>\\n<p>$22/hr</p>\\n<p>Must be willing to work day or night shift</p>\\n<p>Estimated 6 weeks&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Must support the Journeyman onsite</li>\\n<li>Be able to run EMT</li>\\n<li>Must be able to mount junction boxes</li>\\n<li>Must be dependable and reliable</li>\\n<li>Be aware of your surroundings at all times</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-11-10T11:39:26.143\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/571062\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 571062,\n                    \"title\": \"Apprentice Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Pittston\",\n                        \"zip\": \"18640\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Theodore, AL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$13/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:42:42.28\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572828\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Theodore\",\n                        \"zip\": \"36582\",\n                        \"address1\": null,\n                        \"state\": \"AL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572828,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Oklahoma City, OK</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$14/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:40:45.903\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572827\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Oklahoma City\",\n                        \"zip\": \"73179\",\n                        \"address1\": null,\n                        \"state\": \"OK\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572827,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Carteret, NJ<br /></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:45:27.367\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572830\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Carteret\",\n                        \"zip\": \"07008\",\n                        \"address1\": null,\n                        \"state\": \"NJ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572830,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Jacksonville, FL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:47:05.767\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572831\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jacksonville\",\n                        \"zip\": \"32219\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572831,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Hazelwood, MO</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:48:41.593\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572832\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hazelwood\",\n                        \"zip\": \"63042\",\n                        \"address1\": null,\n                        \"state\": \"MO\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572832,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Wilmer, TX </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2020-11-19T11:20:39.19\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572817\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75355\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572817,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Davenport, FL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:25:13.867\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572820\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Davenport\",\n                        \"zip\": \"33897\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572820,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Durham, NC</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$14/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:36:42.343\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572826\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Durham\",\n                        \"zip\": \"27703\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572826,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Chino, CA</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$19/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:51:15.71\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572834\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Chino\",\n                        \"zip\": \"91710\",\n                        \"address1\": null,\n                        \"state\": \"CA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572834,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Chino, CA</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$19/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 6 weeks</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule: </span><span style=\\\"font-size: 9.0pt;\\\">There are 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandated</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-23T16:36:32.84\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/573512\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 573512,\n                    \"title\": \"Warehouse Associate - $19/hr\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Chino\",\n                        \"zip\": \"91710\",\n                        \"address1\": null,\n                        \"state\": \"CA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor system in a new Amazon distribution center!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-starter with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Carteret, NJ<br /></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated 6 weeks</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule: </span><span style=\\\"font-size: 9.0pt;\\\">There are 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-23T16:30:38.783\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/573510\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 573510,\n                    \"title\": \"Warehouse Associate - $16/hr\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Carteret\",\n                        \"zip\": \"07008\",\n                        \"address1\": null,\n                        \"state\": \"NJ\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">$$ Earn Christmas Money $$</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\"><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Must be local to Jefferson, GA</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start Date: 11/27/20</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">If you are a self-started with a go getter attitude apply for this job!&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Schedule=&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Work week will flip flop each week&nbsp;&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">4 days 1st week; 3 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 days 2nd week; 4 days off 10 hours a day</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">There is 2 shift options morning and evening/night FCFS 10 hours each shift</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Keep boxes moving on conveyor belt</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ff0000;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></span></p>\",\n                    \"date_added\": \"2020-11-19T11:22:17.213\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/572818\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jefferson\",\n                        \"zip\": \"30549\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 572818,\n                    \"title\": \"Warehouse Associate $15/hr \",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>$$ Earn Christmas Money $$</p>\\n<p><strong>Awesome opportunity to test out a package conveyor in a new Amazon distribution center!!</strong></p>\\n<p>$15/hr</p>\\n<p>Must be local to Jefferson, GA</p>\\n<p>Start Date: 11/27/20</p>\\n<p>If you are a self-started with a go getter attitude apply for this job!&nbsp;</p>\\n<p>Schedule=&nbsp;</p>\\n<p>Work week will flip flop each week&nbsp;&nbsp;</p>\\n<p>4 days 1st week; 3 days off 10 hours a day</p>\\n<p>3 days 2nd week; 4 days off 10 hours a day</p>\\n<p>There is 2 shift options morning and evening/night FCFS 10 hours each shift</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Keep boxes moving on conveyor belt</li>\\n<li>Work well under pressure and efficiently&nbsp;</li>\\n<li>Remain attentive to your surroundings at all times while on the job site</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements: Must have a great attitude and willing to take direction from others. Team work, dependability and adaptability is key here!</strong></p>\\n<ul>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-11-25T15:22:00.263\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/573977\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Jefferson\",\n                        \"zip\": \"30549\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 573977,\n                    \"title\": \"Warehouse Associate $15/hr !! \",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start ASAP</p>\\n<p><strong>MUST HAVE EMT EXPERIENCE</strong></p>\\n<p>Estimated 50+ hours/week</p>\\n<p>$27/hr + $80 daily per diem</p>\\n<p>Must be willing to work day or night shift</p>\\n<p>Estimated 6 weeks&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\\n</div>\\n</div>\\n<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"job_req_info\\\">&nbsp;</div>\\n</div>\",\n                    \"date_added\": \"2021-01-08T10:05:10.18\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/582046\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Pittston\",\n                        \"zip\": \"18640\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 582046,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>Start ASAP</p>\\n<p>MUST HAVE EMT EXPERIENCE</p>\\n<p>Estimated 50+ hours/week</p>\\n<p>$22/hr</p>\\n<p>Must be willing to work day or night shift</p>\\n<p>Estimated 6 weeks</p>\\n<p>Responsibilities</p>\\n<p>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit<br />Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches<br />Read blue prints, schematics, and drawings<br />Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)<br />Knowledgeable on electrical maintenance and mechanics of test equipment<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork</p>\\n<p>Requirements</p>\\n<p>Five years of verifiable experience running and bending EMT and rigid conduit<br />Proven experience establishing ability to hang pipe straight and strap it as indicated<br />Prior conveyor experience on Automated Handling Systems<br />Experience with motor controls or panel work<br />Capability to effectively install necessary conduit, fittings, and fixtures as required<br />Pull wire utilizing approved pulling techniques<br />Experience and ability to safely use lifts for non-gravity electrical components on conveyor<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Moderate mechanical aptitude<br />Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates<br />Experience installing varying types of electrical apparatus<br />Capability to terminate medium voltage connections and safely work with medium voltage gear<br />Ability to understand and interpret the NEC<br />Read and follow prints, drawings, and schematics<br />Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</p>\\n<p>Working Conditions</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</p>\\n<p>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</p>\",\n                    \"date_added\": \"2021-01-08T10:22:11.947\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/582064\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Pittston\",\n                        \"zip\": \"18640\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 582064,\n                    \"title\": \"Apprentice Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 9.0pt;\\\">MUST have an R8 certification to apply for this job</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\"><span style=\\\"font-size: 9pt;\\\"><strong>Project is located in </strong></span><span style=\\\"font-size: 12px;\\\"><strong>Connecticut</strong></span><span style=\\\"font-size: 9pt;\\\"><strong>, more information on city will be provided upon interview</strong></span></span></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $100 Daily PD</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 9.0pt;\\\">Overtime is expected, dayshift&nbsp;</span></strong></p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"font-size: 9.0pt;\\\">Start upon prescreening clearance&nbsp;</span></strong></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-02-05T08:34:38.173\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/590241\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Windsor\",\n                        \"zip\": \"06095\",\n                        \"address1\": null,\n                        \"state\": \"CT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 590241,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright / Welder to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be a competent welder and millwright and have all welding and millwright tools</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have 3g or 4g ACTIVE welding certification</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST pass pre-employment background and drug screen</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$36.93/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">M-Thurs 4 10's&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Night Shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-02-12T08:41:30.397\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/592157\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 592157,\n                    \"title\": \"Millwright Welder\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Missoula, MT</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start 1st week of June; runs 6-8 weeks</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">5 10s with every other Friday off</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$34/hr taxable $13.57/hr fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be at a journeyman level&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Airport install experience is a plus </span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-03-22T14:08:54.35\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/602856\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Missoula\",\n                        \"zip\": \"59808\",\n                        \"address1\": null,\n                        \"state\": \"MT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 602856,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST have mechanical foreman experience</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be bilingual&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Located in Tijuana Mexico&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$40 + $100 Daily PD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Starts ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration a year and a half or so estimated&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-03-22T14:41:53.803\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/602878\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33407\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 602878,\n                    \"title\": \"Mechanical Foreman\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">MUST be local to ATL airport</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">4/18-5/20</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">10pm &ndash; 4am</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2021-03-09T08:15:50.81\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/598775\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 598775,\n                    \"title\": \"Baggage Tester/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">MUST be local to ATL airport</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date: April 18th, 2021</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">End date: May 20th, 2021</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Night shift 10pm &ndash; 4am</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2021-03-26T08:41:54.51\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/604330\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 604330,\n                    \"title\": \"Baggage Tester $16/hr\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">$28/hr + $80 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Distribution conveyer experience preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Start ASAP upon clearance of pre-employment background and drug screening</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Anticipated duration 2 months</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: black;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-04-05T12:11:41.043\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/607257\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 607257,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Louisville\",\n                        \"zip\": \"40219\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Provide overall on-site administrative and technical management for a wide range of airport construction projects. </span><span style=\\\"font-size: 9.0pt;\\\">CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">THIS PROJECT IS LOCATED IN TIJUANA MEXICO</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Hourly rate, per diem and travel allocations are TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">long term project</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">BHS experience is ideal</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Fluency in spanish and english is preferred&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Plans, leads, and coordinates junior superintendents and subcontractors work activities </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide guidance for junior superintendents and monitor subcontractor personnel</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure implementation of a safety program adhering to OSHA safety and record keeping requirements</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take lead on productivity issues and monitors work performance and productivity of company employees and subcontractors to ensure project plans and schedule are followed and project is executed effectively and within budget</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advise senior level management of potential problems, work interferences or schedule difficulties, while assisting in circumventing or mitigating such conflicts. Provide assistance to involved contractors in resolving problems. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Major contributor to development of a thoughtful project pre-plan which includes a CPM schedule, work sequences, manpower utilization, material handling and storage requirements and equipment use</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Interfaces with owner, architect and design professionals to ensure compliance to design intent and owner satisfaction. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Facilitates discovery and correction of contract document &ldquo;errors and omissions&rdquo; and problem solving so as to reduce the cost incurred. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure compliance with all internal and external record keeping requirements, with particular emphasis on accurate, properly coded employee automated timecards and accurately codes, fully priced material delivery tickets. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Use current construction management system to perform record-keeping tasks including, composing daily diaries, maintaining project logs and retrieving RFIs, submittal logs and agreements. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Provide liaison between project management, field engineering, estimating and specialty contractors to ensure construction complies with plans, specifications and company quality standards and ensuring project is completed on time and within budget. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Train, motivate and support subordinate employees in developing their capabilities to further company, project and personal development goals. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for continuously expanding and updating professional knowledge and honing training skills in order to enhance individual and team innovation and productivity. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Report progress back to the Site Manager/Project Manager </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Responsible for assuring that work is performed according to legal requirements</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Perform additional assignments as directed by superiors or as required for successful project completion. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Performs all functions and responsibilities in partnership with the company&rsquo;s culture, corporate vision, ethics and code of conduct.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Qualifications: </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of the airport construction industry, risk management and field operations required. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Excellent organizational, leadership, communication and analytical skills are necessities. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to analyze and develop solutions to complex problems and to communicate effectively with diverse groups </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Advanced knowledge of various construction disciplines, scheduling, cost control, quality control and engineering drawings. </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of company computer systems and software necessary.</span><span style=\\\"font-size: 9.0pt;\\\">â\\u0080¨</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must have comprehensive understanding of safety regulations and the application of loss control measures. </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-04-08T07:49:52.227\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/608426\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 608426,\n                    \"title\": \"Foreman \",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems at the FLL Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $25.95/hr + $8.65/hr fringe rate</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Shift Schedule: M-F 7:00 am - 4:30 pm, subject to change based on workload demands</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Project starts in 2 weeks and will last 2+ months</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors, ticket counters, sorters</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Minimum of 4-year experience within the industrial mechanical industry</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Mig/Stick Welding experience is preferred but no required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-01-11T08:27:17.613\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/582735\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33331\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 582735,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Seeking qualified electricians to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Must have conveyer experience</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Start date: April 19th</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Day Shift</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Pay rate: $30/hr + $80 per diem</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Estimated duration: 1 month&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-04-09T08:21:05.753\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/608818\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 608818,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Ellsworth\",\n                        \"zip\": \"04605\",\n                        \"address1\": null,\n                        \"state\": \"ME\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking seasoned Millwrights to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">$27/hr + $70 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Distribution conveyer experience preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Start ASAP upon clearance of pre-employment background and drug screening</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Anticipated duration 2-3 months</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: black;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-04-09T09:04:41.097\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/608843\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 608843,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"North Little Rock\",\n                        \"zip\": \"72117\",\n                        \"address1\": null,\n                        \"state\": \"AR\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"><strong>Description:&nbsp;</strong></span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">The Administrative Assistant assists the Project Manager in a variety of administrative duties such as data entry, compiling and submitting reports, and other related functions.&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Qualifications:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">At least 2-4 years of administrative experience</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">General knowledge of the Construction industry</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Proficiency in Microsoft Office (Word, Excel, Outlook, etc.)</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Excellent verbal and written communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Ability to manage time and complete assigned projects</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Strong attention to detail</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Pay rate: $25-$30 depending on experience</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Working hours: 8:00am - 5:00pm</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Location: SLC International Airport</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-04-08T08:47:30.963\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/608462\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 608462,\n                    \"title\": \"Administrative Assistant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Seeking qualified electricians to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Must have conveyer experience, prefer ethernet or ASI cable experience as well</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">58 hour work week, M-F 10 hours Sa 8 hours </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">$26/hr + $70 daily per diem</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-04-08T13:35:49.95\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/608647\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 608647,\n                    \"title\": \"Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Forney\",\n                        \"zip\": \"75126\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Seeking qualified electricians to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Must have experience running EMT and rigid conduit</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">60+ Hours, Day Shift</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">$30/hr + $80 daily per diem</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Estimated duration 1 month</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Requirements</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">High school diploma or GED equivalent</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Moderate mechanical aptitude</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-04-20T13:14:52.433\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/612296\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 612296,\n                    \"title\": \"Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Altoona\",\n                        \"zip\": \"16602\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST HAVE AIRPORT AND/OR CONVEYOR EXPERIENCE</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">START DATE 4/26</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/HR + $8.81/HR FRINGE</span></p>\\n<p style=\\\"font-size: 11pt; color: #000000; text-align: center;\\\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Shift schedule &ndash; 8 hour days, Monday through Friday</p>\\n<p style=\\\"font-size: 11pt; color: #000000; text-align: center;\\\">Estimated duration &ndash; 5-6 weeks</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-04-22T07:44:51.497\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/613044\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lafayette\",\n                        \"zip\": \"70508\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 613044,\n                    \"title\": \"Journeyman Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start Monday 4/26</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">5-6 week duration</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">M-F 8 hour shifts&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$21.59/hr taxable + $8.81/hr fringe</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-04-23T08:55:38.47\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/613406\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lafayette\",\n                        \"zip\": \"70508\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 613406,\n                    \"title\": \"Apprentice Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"row\\\">\\n<div class=\\\"col-md-12\\\">\\n<h2>Job Description:</h2>\\n<p>The&nbsp;<strong>Site Manager,&nbsp; </strong>will be primarily responsible for the everyday management of the job site, meeting with the Client, and acting as a liaison between the Client, the Project Managers, and other teams. This position will be managing multiple job sites at times.&nbsp; This position will also be responsible for supporting preventive maintenance &amp; health checks for our clients.</p>\\n<p>When running a project site this position will also be documenting the issues accurately within the Daily Status Report (DSR) and reviewing the same at the weekly tool box meeting, implementing a system for tracking safety violations, and actively working to prevent further occurrences.</p>\\n<p>Remote position, 70% travel to various job sites</p>\\n<p>Salary TBD</p>\\n<p>Start upon clearance of pre-screening</p>\\n<p><strong>PRIMARY RESPONSIBILITIES INCLUDE:</strong></p>\\n<ul>\\n<li>Reviewing and updating the project schedule with all the various contractors, overseeing a planned daily review meeting with contractors at the beginning of each shift, discussing and&nbsp;&nbsp; documenting within the DSR any changes as they occur related to schedule.</li>\\n<li>Reading the Functional Specifications Document (FSD) and the Request for Quote (RFQ) for projects and demonstrating a comprehensive understanding of the project.</li>\\n<li>Inventorying equipment when received against the pack list or bill of materials (BOM), identifying discrepancies and working to resolve them, and documenting any discrepancies immediately with Purchasing and the Project Manager, including items of note within the DSR.&nbsp;</li>\\n<li>Organizing vendor files and keeping them in order on a consistent basis, ensuring files, paperwork, and drawings are up to date and easy to find.</li>\\n<li>Maintaining a thoroughly clean and organized job site, assigning tools and equipment to assigned locations, ensuring floors are swept and promptly removing debris from the building.</li>\\n<li>Reading FSD and reviewing questions with Project Manager prior to start of install, reviewing RFQ's with installers prior to arriving at site, reviewing physical installation daily and reviewing issues with contractors immediately, communicating any concerns with Project Manager, and documenting issues within the DSR consistently.</li>\\n<li>Participation in meetings and communications, both verbally and via email with the Client, documentation of Client issues formally including the Project Manager and all involved&nbsp; departments.</li>\\n<li>Thoroughly understanding the project&rsquo;s critical milestones from installation through start-up testing and acceptance testing.</li>\\n<li>Issuing daily status reports that are complete with the appropriate detail to address concerns including a detailed daily summary, having knowledge of all contractor information and inventory received, and referencing specific issues to the necessary team members and noting these in detail within the DSR.</li>\\n<li>Reviewing the project schedule with the Project Manager, advising appropriate team members of schedule changes, hitting the critical milestone dates and actively working to be completely prepared for startup team.</li>\\n<li>Recognizing issues before they become major complications and identifying root causes, immediately working with the appropriate team members to ensure resolution, accepting ownership of the issue and thoroughly documenting the issue with the Operations Management Team.&nbsp;</li>\\n<li>Working to consistently deliver sites above and beyond the standards, and looking for opportunities to advise Clients or assist beyond our contracted scope.</li>\\n<li>Completing and submitting timesheets and expense reports in accordance with company policy.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n<div class=\\\"row\\\">\\n<div class=\\\"col-md-12\\\">\\n<h2>Experience and Skills:</h2>\\n<ul>\\n<li>5+ years&rsquo; experience in the Site Management field</li>\\n<li>Excellent leadership/communication skills</li>\\n<li>Managerial skills</li>\\n<li>Mechanical skills related to conveyor installations &ndash; proficiency at reading mechanical installation drawings and pneumatic schematics/pneumatic installation drawings</li>\\n<li>Electrical skills related to conveyor installations &ndash; proficiency at reading electrical installation drawings/schematics/power distribution one line diagrams</li>\\n<li>Controls troubleshooting and/or Programmable Logic controller (PLC) and panel diagnostics</li>\\n<li>Media skills related to the construction of Carton Flow/Pallet Flow/Bin Modules &ndash; proficiency at reading installation drawings and BOMs</li>\\n<li>Ability to remain calm during unexpected issues that arise and develop effective solutions</li>\\n<li>Ability to motivate team members by building trust and confidence through actions, words, and leadership skills</li>\\n<li>Ability to be an effective listener and respond in a positive manner</li>\\n<li>Ability to be sensitive towards others and consistently treat others with honesty and respect</li>\\n<li>Ability to identify, understand, and respond to the various needs of the team, both professional and personal</li>\\n<li>Familiarity with AutoCAD</li>\\n<li>Computer skills, specifically Excel, Word, MS Project</li>\\n</ul>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-04-27T07:54:07.963\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/614106\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 614106,\n                    \"title\": \"Site Manager\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"row\\\">\\n<div class=\\\"col-md-12\\\">\\n<p>The&nbsp;<strong>Site Manager,&nbsp;&nbsp;</strong>will be primarily responsible for the everyday management of the job site, meeting with the Client, and acting as a liaison between the Client, the Project Managers, and other teams. This position will be managing multiple job sites at times.&nbsp; This position will also be responsible for supporting preventive maintenance &amp; health checks for our clients.</p>\\n<p>When running a project site this position will also be documenting the issues accurately within the Daily Status Report (DSR) and reviewing the same at the weekly tool box meeting, implementing a system for tracking safety violations, and actively working to prevent further occurrences.</p>\\n<p>Must be local to Memphis</p>\\n<p>Salary TBD</p>\\n<p>Start upon clearance of pre-screening</p>\\n<p><strong>PRIMARY RESPONSIBILITIES INCLUDE:</strong></p>\\n<ul>\\n<li>Reviewing and updating the project schedule with all the various contractors, overseeing a planned daily review meeting with contractors at the beginning of each shift, discussing and&nbsp;&nbsp; documenting within the DSR any changes as they occur related to schedule.</li>\\n<li>Reading the Functional Specifications Document (FSD) and the Request for Quote (RFQ) for projects and demonstrating a comprehensive understanding of the project.</li>\\n<li>Inventorying equipment when received against the pack list or bill of materials (BOM), identifying discrepancies and working to resolve them, and documenting any discrepancies immediately with Purchasing and the Project Manager, including items of note within the DSR.&nbsp;</li>\\n<li>Organizing vendor files and keeping them in order on a consistent basis, ensuring files, paperwork, and drawings are up to date and easy to find.</li>\\n<li>Maintaining a thoroughly clean and organized job site, assigning tools and equipment to assigned locations, ensuring floors are swept and promptly removing debris from the building.</li>\\n<li>Reading FSD and reviewing questions with Project Manager prior to start of install, reviewing RFQ's with installers prior to arriving at site, reviewing physical installation daily and reviewing issues with contractors immediately, communicating any concerns with Project Manager, and documenting issues within the DSR consistently.</li>\\n<li>Participation in meetings and communications, both verbally and via email with the Client, documentation of Client issues formally including the Project Manager and all involved&nbsp; departments.</li>\\n<li>Thoroughly understanding the project&rsquo;s critical milestones from installation through start-up testing and acceptance testing.</li>\\n<li>Issuing daily status reports that are complete with the appropriate detail to address concerns including a detailed daily summary, having knowledge of all contractor information and inventory received, and referencing specific issues to the necessary team members and noting these in detail within the DSR.</li>\\n<li>Reviewing the project schedule with the Project Manager, advising appropriate team members of schedule changes, hitting the critical milestone dates and actively working to be completely prepared for startup team.</li>\\n<li>Recognizing issues before they become major complications and identifying root causes, immediately working with the appropriate team members to ensure resolution, accepting ownership of the issue and thoroughly documenting the issue with the Operations Management Team.&nbsp;</li>\\n<li>Working to consistently deliver sites above and beyond the standards, and looking for opportunities to advise Clients or assist beyond our contracted scope.</li>\\n<li>Completing and submitting timesheets and expense reports in accordance with company policy.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n<div class=\\\"row\\\">\\n<div class=\\\"col-md-12\\\">\\n<h2>Experience and Skills:</h2>\\n<ul>\\n<li>5+ years&rsquo; experience in the Site Management field</li>\\n<li>Excellent leadership/communication skills</li>\\n<li>Managerial skills</li>\\n<li>Mechanical skills related to conveyor installations &ndash; proficiency at reading mechanical installation drawings and pneumatic schematics/pneumatic installation drawings</li>\\n<li>Electrical skills related to conveyor installations &ndash; proficiency at reading electrical installation drawings/schematics/power distribution one line diagrams</li>\\n<li>Controls troubleshooting and/or Programmable Logic controller (PLC) and panel diagnostics</li>\\n<li>Media skills related to the construction of Carton Flow/Pallet Flow/Bin Modules &ndash; proficiency at reading installation drawings and BOMs</li>\\n<li>Ability to remain calm during unexpected issues that arise and develop effective solutions</li>\\n<li>Ability to motivate team members by building trust and confidence through actions, words, and leadership skills</li>\\n<li>Ability to be an effective listener and respond in a positive manner</li>\\n<li>Ability to be sensitive towards others and consistently treat others with honesty and respect</li>\\n<li>Ability to identify, understand, and respond to the various needs of the team, both professional and personal</li>\\n<li>Familiarity with AutoCAD</li>\\n<li>Computer skills, specifically Excel, Word, MS Project</li>\\n</ul>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-04-27T07:56:45.78\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/614108\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Memphis\",\n                        \"zip\": \"37501\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 614108,\n                    \"title\": \"Site Manager\",\n                    \"category\": \"First/Mid Level Officials &amp; Managers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor tasks. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to the Fort Lauderdale area</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Day shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">40 hour work week give or take depending on site needs</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">2 week duration</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform assigned tasks</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-04-29T10:12:34.537\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/615020\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 615020,\n                    \"title\": \"General Laborer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33315\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p style=\\\"text-align: center;\\\"><strong>MUST HAVE TX JOURNEYMAN LICENSE</strong></p>\\n<p style=\\\"text-align: center;\\\"><strong>MUST have conveyor and rigid experience</strong></p>\\n<p style=\\\"text-align: center;\\\">Anticipated 4-5 month duration</p>\\n<p style=\\\"text-align: center;\\\">60 hour work week expected. Day Shift</p>\\n<p style=\\\"text-align: center;\\\">$22.11/hr taxable + $9.91/hr fringe</p>\\n<p style=\\\"text-align: center;\\\">$70 per diem</p>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2020-09-16T11:19:22.43\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/558168\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 558168,\n                    \"title\": \"Texas Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lubbock\",\n                        \"zip\": \"79403\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have pipe experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26/hr and $80 daily PD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start May 10th&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Duration TBD</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-05-05T08:35:48.997\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/616811\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 616811,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">MUST be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Night shift 8:00pm - 4:30am</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">40 hour work week give or take depending on site needs</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Runs from mid May until the end of July 2021</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em style=\\\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\\\">&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-05-10T09:55:00.11\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/617938\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 617938,\n                    \"title\": \"General Laborer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Lafayette, LA</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr taxable + $4.60/hr fringe</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Starts 5/24 running until the end of June</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day Shift&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Monday-Saturday 10 hour shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-03-23T10:44:32.217\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/603092\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lafayette\",\n                        \"zip\": \"70508\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 603092,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing at the Tampa International Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Day shift, Monday - Thursdays, Start time 7:00am</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em style=\\\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\\\">&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-05-25T07:32:46.353\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/622283\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 622283,\n                    \"title\": \"Construction Laborer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p><br /><strong>Must have conveyor experience as well as active forklift and scissorlift certifications. Airport install experience is a plus.&nbsp;</strong></p>\\n<p><br />Location: Missoula, MT</p>\\n<p>Pay Rate: $34/hr + $13.57/hr fringe</p>\\n<p>Start Date: June 7th</p>\\n<p>Anticipated Duration: 4 months</p>\\n<p>Shift Schedule: Monday - Fridays 7:00am-5:30pm with every other Friday off</p>\\n<p>&nbsp;</p>\\n<p><br />Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Ability to perform physical requirements necessary as applicable to project<br />Comply with and maintain conducive work site environment<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Moderate mechanical aptitude<br />Mig/Stick Welding experience is preferred<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</p>\",\n                    \"date_added\": \"2021-05-26T14:49:29.587\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/623078\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 623078,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Missoula\",\n                        \"zip\": \"59808\",\n                        \"address1\": null,\n                        \"state\": \"MT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Seeking seasoned Millwrights to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">$27/hr + $70 per diem</span></p>\\n<p style=\\\"font-size: 11pt; text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Shift times: M-F 7am-5:30pm Sa 7am-3:30pm (Subject to change at Supervisors discretion)</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Distribution conveyer experience preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Start ASAP upon clearance of pre-employment background and drug screening</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\">Anticipated duration 1 month</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: #000000;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt; color: #000000;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-06-08T08:54:48.493\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/626194\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 626194,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lithia Springs\",\n                        \"zip\": \"30122\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing at the Tampa International Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Day shift and night shift available</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em style=\\\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\\\">&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-06-11T10:12:29.003\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/627404\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 627404,\n                    \"title\": \"Construction Laborer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday 7am-5:30pm and Saturday 7am-3pm</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr and $70 daily PD</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Steel toe boots, hard hat, safety vest, safety glasses and cut resistant gloves are needed</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-05-27T09:39:03.66\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/623245\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"North Little Rock\",\n                        \"zip\": \"72117\",\n                        \"address1\": null,\n                        \"state\": \"AR\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 623245,\n                    \"title\": \"Electrician\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;MUST BE LOCAL TO LFT AIRPORT</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$15/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">40 hour work week day shift</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP expected to last until July 16th&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2021-06-18T10:30:31.667\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/629497\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Broussard\",\n                        \"zip\": \"70518\",\n                        \"address1\": null,\n                        \"state\": \"LA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 629497,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\">Seeking seasoned Millwrights to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\">$35.35/hr</p>\\n<p style=\\\"text-align: center;\\\">Must have conveyer experience and be at a journeyman level</p>\\n<p style=\\\"text-align: center;\\\">Day shift 40 hours a week (subject to change at supervisor's discretion)</p>\\n<p style=\\\"text-align: center;\\\">Anticipated duration 4-6 months</p>\\n<p style=\\\"text-align: center;\\\">Start ASAP upon clearance of pre-employment background and drug screening</p>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Demolition and installation of conveyor mechanical systems</li>\\n<li>Effectively report any deficiencies to proper authority ensuring safe operation</li>\\n<li>Ability to perform physical requirements necessary as applicable to project</li>\\n<li>Comply with and maintain conducive work site environment</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Take an active role in organization and planning of daily responsibilities</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li>Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Minimum of 4-year experience within the industrial mechanical industry</li>\\n<li>Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>You are required to provide your own basic hand tools and PPE</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2021-06-21T11:28:10.793\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/629873\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 629873,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking seasoned Millwrights to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">$28/hr + $70 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Distribution conveyer experience preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Start ASAP upon clearance of pre-employment background and drug screening</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: black;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-07-01T11:28:57.723\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/633082\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 633082,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Walton\",\n                        \"zip\": \"41094\",\n                        \"address1\": null,\n                        \"state\": \"KY\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking qualified electricians to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday 7am-5:30pm and Saturday 7am-3pm</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr and $80 daily per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Steel toe boots, hard hat, safety vest, safety glasses and cut resistant gloves are needed</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><em style=\\\"text-align: center; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\\\"><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-08-18T11:39:12.477\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/646504\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 646504,\n                    \"title\": \"Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cincinnati\",\n                        \"zip\": \"45246\",\n                        \"address1\": null,\n                        \"state\": \"OH\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to ATL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Several shift options</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">6am-2pm OR 2pm-10pm M-F OR 6am-2pm OR 2pm-10pm Saturday + Sunday</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Also there is a shift Monday-Friday 6pm-5am</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 60 days start 1st or 2nd week in September&nbsp;&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2021-08-25T08:36:31.953\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/648471\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 648471,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking self-motivated individuals to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Starts 9/24/2021 upon clearance of background and drug test</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$32.60/hr + $24.82 fringe rate (non-taxable)</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Night shift 7pm-3am</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-09-17T09:20:03.577\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/655030\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 655030,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Philadelphia\",\n                        \"zip\": \"19153\",\n                        \"address1\": null,\n                        \"state\": \"PA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">MUST be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date is Tuesday September 27th, 2021</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Night shift 6pm, Monday - Friday</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-06-17T11:41:33.407\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/629146\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 629146,\n                    \"title\": \"General Laborer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking qualified electricians to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Monday-Friday 7am-5:30pm and Saturday 7am-3pm</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr and $80 daily per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><em style=\\\"text-align: center; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\\\"><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-10-04T12:28:21.383\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/659715\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 659715,\n                    \"title\": \"Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Florence\",\n                        \"zip\": \"29501\",\n                        \"address1\": null,\n                        \"state\": \"SC\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Seeking seasoned Millwrights to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">$28/hr + $80 per diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Distribution conveyer experience preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\">Start ASAP upon clearance of pre-employment background and drug screening</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; color: black;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-10-08T14:57:17.813\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/661332\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 661332,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hampstead\",\n                        \"zip\": \"21074\",\n                        \"address1\": null,\n                        \"state\": \"MD\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Provo, UT</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Anticipated start date sometime in November</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Airport conveyor experience is preferred</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$30/hr + $5.18/hr fringe&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2021-08-09T08:30:53.103\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/643475\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Provo\",\n                        \"zip\": \"84601\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 643475,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking self-motivated individuals to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Starts 11/29/2021 upon clearance of background and drug test</span></p>\\n<p><span style=\\\"font-size: 12px;\\\">2 week project</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-11-03T15:23:36.997\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/668488\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 668488,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Missoula\",\n                        \"zip\": \"59808\",\n                        \"address1\": null,\n                        \"state\": \"MT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">MUST be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Night shift 7pm, Monday - Friday</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-09-23T14:03:47.393\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/657060\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 657060,\n                    \"title\": \"General Laborer / Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a seasoned Millwright/Welder to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$28/hr and $80 Daily Per Diem</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day shift M-F 7:30am-4:30pm&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Estimated duration 4 weeks</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Conveyer experience required. Welding certifications preferred</span><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-06-29T07:43:54.98\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/631885\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 631885,\n                    \"title\": \"Millwright Welder\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"control-group\\\">\\n<div class=\\\" data-ind\\\" data-type=\\\"jobdesc\\\">\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Seeking a warehouse assistant who has worked in the construction industry. CRAS is a well-respected temporary staffing agency specializing in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Must be local to Houston Airport (IAH)</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Pay is to be determined based on experience</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Estimated 40 hrs/week M-Th, 10 hours, dayshift</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Anticipated long term duration</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Start upon clearance of pre-screenings</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Qualifications:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">At least 1-2 years experience working in a warehouse environment</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">General knowledge of the Construction industry</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Proficiency in Microsoft Office (Word, Excel, Outlook, etc.)</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Excellent verbal and written communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Ability to work well with others</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Strong attention to detail</span></li>\\n<li><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Reliable and dependable</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non-DOT drug screening.</em></span></p>\\n</div>\\n</div>\",\n                    \"date_added\": \"2021-08-19T09:25:04.463\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/646739\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 646739,\n                    \"title\": \"Warehouse Assistant\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified journeyman electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$38/hr</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift schedule TBD&nbsp;</span><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span>&nbsp;</li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-12-07T12:30:52.037\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/676361\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 676361,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking qualified electrician apprentices to become members of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: center; line-height: 1;\\\"><span style=\\\"font-size: 9.0pt;\\\">Prefer conveyer experience</span></p>\\n<p style=\\\"text-align: center; line-height: 1;\\\"><span style=\\\"font-size: 9.0pt;\\\">$26/hr</span></p>\\n<p style=\\\"text-align: center; line-height: 1;\\\"><span style=\\\"font-size: 9.0pt;\\\">Shift Schedule TBD</span></p>\\n<p style=\\\"line-height: 1;\\\"><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span>&nbsp;</li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span>&nbsp;</li>\\n</ul>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2021-12-07T12:35:16.46\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/676367\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 676367,\n                    \"title\": \"Electrician Apprentice\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Night shift 6pm, Monday - Friday</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2021-12-16T10:54:50.207\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/678506\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 678506,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician is a mid-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Passenger Boarding Bridge (PBB) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, </span><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician must be able to:</span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Properly use a volt and amp meter</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of bridges and surrounding areas, along with the removal of debris</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Diagnose equipment failures under the guidance of senior staff</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Check temperature of components</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform full replacement and adjustment of components, including but not limited to: bearings, motors, reducers, PLC's-touch screens, Magelis, photoelectric cells, and pushbuttons</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform general troubleshooting of electrical components (local functional electrical switch boxes, VFD&rsquo;s, general wiring. 24 volts-110-277 and 480 (both AC and DC))</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, hot spaces</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Attend requested/required training, demonstrating a willingness to learn</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Follow and comply with any company and/or federally established policies and procedures</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least two (2) years of mechanical work experience</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of basic electrical and/or electronic systems work experience</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to acquire a customs seal</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-01-14T09:44:57.35\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/685645\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 685645,\n                    \"title\": \"Technician for PBB (Passenger Boarding Bridge)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">A Senior Technician is a senior-level position with varied responsibilities, including, but not limited to, the maintenance of airport Passenger Boarding Bridges (PBB) at the Orlando International Airport.</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support on Passenger Boarding Bridge systems.</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Key Responsibilities:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Properly use a volt and amp meter</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Perform basic preventative maintenance tasks, which will include, but will not be limited to, cleaning of passenger boarding bridges and surrounding areas, as well as the removal of debris from between bridges</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Monitor system operations, diagnose equipment failures, and work with management on repair plans</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Perform major adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Check temperature of components</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Perform full replacement, rebuilding, and adjustment of components, including but not limited to bearings, motors, reducers, rollup doors, canopies, photoelectric cells, and pushbuttons</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Perform advanced replacement, set-up, and troubleshooting of electrical components including, but not limited to PLC's, sensors, local functional electrical switch boxes, VFD&rsquo;s, check 24 volts, 110, 277, and 480 (both AC and DC), Magelis, power and control wiring, coils, contactors, and interlocks</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Read and understand wiring schematics</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Program settings in a computer controlled PBB</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Qualifications:</span></p>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Provide documented work experience of at least five (5) years of mechanical/technical work experience on passenger boarding bridges</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Provide documented work experience of at least three (3) years of basic electrical and/or electronic systems work experience with 120V, 480V, and 24V</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Able to read and interpret repair manuals and basic mechanical schematics</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Able to acquire a customs seal</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Physical Requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Lifting and/or moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"page\\\" title=\\\"Page 2\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Additional Requirements:</span></p>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Qualified candidates must be able to successfully pass a drug screen (we are a designated Drug Screen Workplace), a drivers' license check and validation, federal fingerprinting and security threat assessment as well as airport security badging</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The Sr. Technician PBB must be flexible with regards to an assigned work schedule; shift assignments are determined based on the needs of the airport and the company, together with a technician&rsquo;s strengths, skill set, and experience</span></p>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\\n</div>\\n</div>\\n</div>\\n</div>\",\n                    \"date_added\": \"2022-01-14T09:53:53.01\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/685658\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 685658,\n                    \"title\": \"Sr. Technician for PBB (Passenger Boarding Bridge)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Jr Technician is an entry-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Jr. Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Diagnose equipment failures under the guidance of senior staff</span></p>\\n</li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of mechanical work experience</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">&nbsp;</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-01-14T10:24:33.14\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/685689\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 685689,\n                    \"title\": \"Jr. Technician for BHS (Baggage Handling Systems)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician is a mid-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Diagnose equipment failures under the guidance of senior staff</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform full replacement and adjustment of components, including but not limited to: bearings, motors, reducers, belts (replacement and repair), belts (tensioning and tracking), photoelectric cells, and pushbutton</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform general troubleshooting of electrical components (MCP&rsquo;s, local functional electrical switch boxes, VFD&rsquo;s, ATR&rsquo;s, belt shaft encoders, general wiring)</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least two (2) years of mechanical work experience</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of basic electrical and/or electronic systems work </span><br /><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">experience</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-01-14T10:36:54.69\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/685700\",\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 685700,\n                    \"title\": \"Technician for BHS (Baggage Handling Systems)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Senior Technician is a senior-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Sr. Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Monitor system operations, diagnose equipment failures, and work with management on a repair plan</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform major adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Take temperature and speed readings of components and belting</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform full replacement, rebuilding, and adjustment of components, including but not limited to: bearings, motors, reducers, rollup doors, belts (replacement and repair), belts (tensioning and tracking), photoelectric cells, pushbuttons</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform advanced replacement, set-up, and troubleshooting of electrical components including, but not limited to: MCP components,, local functional electrical switch boxes, VFD&rsquo;s, ATR&rsquo;s, belt shaft encoders, power and control wiring, coils, contactors, and interlocks</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Able to read and completely understand wiring schematics</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least three (3) years of mechanical work experience</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least three (3) years of basic electrical and/or electronic systems work experience with 120V, 480V, and 24V</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-01-14T10:54:48.04\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/685718\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 685718,\n                    \"title\": \"Sr. Technician for BHS (Baggage Handling Systems)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">The General Laborer / Jr Tech is an entry-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) at the Orlando International Airport.</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Jr. Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Diagnose equipment failures under the guidance of senior staff</span></p>\\n</li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of mechanical work experience</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $16.50/hr</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Shifts Available:</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"> Sunday &ndash; Tuesday 6:30am &ndash; 6:30pm &amp; Wednesday 6:30am &ndash; 12:30pm</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Wednesday 12:30pm &ndash; 6:30pm &amp; Thursday &ndash; Saturday 6:30am &ndash; 6:30pm</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Sunday &ndash; Tuesday 6:30pm &ndash; 6:30am &amp; Wednesday 6:30pm &ndash; 12:30am</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Wednesday 12:30am &ndash; 6:30am &amp; Thursday &ndash; Saturday 6:30pm &ndash; 6:30am</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-02-17T13:35:08.01\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/696591\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 696591,\n                    \"title\": \"General Laborer / Jr Tech\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician is a mid-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) and/or Passenger Boarding Bridge (PBB) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Diagnose equipment failures under the guidance of senior staff</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform full replacement and adjustment of components, including but not limited to: bearings, motors, reducers, belts (replacement and repair), belts (tensioning and tracking), photoelectric cells, and pushbutton</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform general troubleshooting of electrical components (MCP&rsquo;s, local functional electrical switch boxes, VFD&rsquo;s, ATR&rsquo;s, belt shaft encoders, general wiring)</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least two (2) years of mechanical work experience</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of basic electrical and/or electronic systems work </span><br /><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">experience</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $20/hr</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Shifts Available:</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"> Sunday &ndash; Tuesday 6:30am &ndash; 6:30pm &amp; Wednesday 6:30am &ndash; 12:30pm</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"> Sunday &ndash; Tuesday 4am &ndash; 4pm &amp; Wednesday 4am &ndash; 10am</span></p>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-02-17T13:39:37.33\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/696597\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 696597,\n                    \"title\": \"Technician - MCO Airport\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Senior Technician is a senior-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) and/or Passenger Boarding Bridge (PBB) at the Orlando International Airport. </span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Sr Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Monitor system operations, diagnose equipment failures, and work with management on a repair plan</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform major adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Take temperature and speed readings of components and belting</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform full replacement, rebuilding, and adjustment of components, including but not limited to: bearings, motors, reducers, rollup doors, belts (replacement and repair), belts (tensioning and tracking), photoelectric cells, pushbuttons</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform advanced replacement, set-up, and troubleshooting of electrical components including, but not limited to: MCP components,, local functional electrical switch boxes, VFD&rsquo;s, ATR&rsquo;s, belt shaft encoders, power and control wiring, coils, contactors, and interlocks</span></p>\\n</li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Able to read and completely understand wiring schematics</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least three (3) years of mechanical work experience</span></li>\\n<li>\\n<p class=\\\"p1\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least three (3) years of basic electrical and/or electronic systems work experience with 120V, 480V, and 24V</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $25/hr</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Both day and night shifts available</span></p>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-02-17T13:44:05.883\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/696599\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 696599,\n                    \"title\": \"Sr Technician - MCO Airport\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a semi skilled mechanical worker to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Openings ASAP</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST be local to Tampa, FL&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">Day Shift</span></p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"font-size: 9.0pt;\\\">$23.85/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt; color: black;\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Minimum of 1 year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2022-02-28T11:40:16.533\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/699655\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 699655,\n                    \"title\": \"Semi Skilled Mechanical Worker\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Dayshift 7am-4pm Monday-Friday occasional Saturdays; Overtime is possible if interested</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Duration TBD; estimated at least a month worth of work</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16.95/hr</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2022-03-21T11:41:55.023\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/706607\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"kristy@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 706607,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking self-motivated individuals to test a newly installed baggage conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">MUST be local to ATL</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">$16/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Night Shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Estimated duration one month</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2022-04-19T11:18:12.027\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/715853\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 715853,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30320\",\n                        \"address1\": null,\n                        \"state\": \"GA\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p><br />Location: Springfield, Missouri</p>\\n<p>Pay Rate: $28/hr + $7.40/hr fringe (non-taxable)</p>\\n<p>Start Date: May 16th</p>\\n<p>Anticipated Duration: 3-4 weeks</p>\\n<p>Shift Schedule: Monday-Friday Day Shift</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Ability to perform physical requirements necessary as applicable to project<br />Comply with and maintain conducive work site environment<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Moderate mechanical aptitude<br />Mig/Stick Welding experience is preferred<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</p>\",\n                    \"date_added\": \"2022-04-27T11:18:22.573\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/718500\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 718500,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Springfield\",\n                        \"zip\": \"65802\",\n                        \"address1\": null,\n                        \"state\": \"MO\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking self-motivated individuals to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">Local to PHX</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">3 day project - May 15th, 16th and 17th</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">7pm-3am shift</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2022-05-09T13:23:50.63\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/722394\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 722394,\n                    \"title\": \"Baggage Porter\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Forklift Certification is a Plus</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday-Friday Day Shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start date: May 30th, 2022</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Pay Rate: $22/hr</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Duration: 4-6 months</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-05-13T11:57:58.22\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/723956\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 723956,\n                    \"title\": \"CDL Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking a self-motivated individual to perform general labor tasks. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\">MUST have an active forklift certification</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Monday-Friday Day Shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Start date: May 30th, 2022</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Duration: 4-6 months</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\">Must be able to pass ALL pre-employment screenings</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Operate and maneuver warehouse equipment and materials while complying with manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Needs forklift driving experience and proficient in loading and unloading trucks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\"><strong>Must be forklift certified&nbsp;</strong></span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience with material handling operations</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;<em>&nbsp;</em></span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2022-05-17T11:57:54.307\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/724905\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 724905,\n                    \"title\": \"General Laborer / Forklift Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: left;\\\">Seeking a seasoned Millwright to assist in support of construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">$35.35/hr</p>\\n<p style=\\\"text-align: left;\\\">Must have conveyer experience and be at a journeyman level. Forklift experience is a plus</p>\\n<p style=\\\"text-align: left;\\\">Day shift 40 hours a week (subject to change at supervisor's discretion)</p>\\n<p style=\\\"text-align: left;\\\">Start date: Tuesday May 31st, 2022</p>\\n<p style=\\\"text-align: left;\\\">Anticipated duration: 4-6 months</p>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Demolition and installation of conveyor mechanical systems</li>\\n<li>Effectively report any deficiencies to proper authority ensuring safe operation</li>\\n<li>Ability to perform physical requirements necessary as applicable to project</li>\\n<li>Comply with and maintain conducive work site environment</li>\\n<li>Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</li>\\n<li>Take an active role in organization and planning of daily responsibilities</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n<li>Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Minimum of 4-year experience within the industrial mechanical industry</li>\\n<li>Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>You are required to provide your own basic hand tools and PPE</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2022-05-25T11:38:50.413\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/727616\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 727616,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Forklift Certification is a Plus</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday-Friday Day Shift&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start date: ASAP</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Pay Rate: $22/hr</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Duration: 4-6 months</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate a manual truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-06-01T11:28:55.577\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/729549\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 729549,\n                    \"title\": \"CDL Driver at Tampa Airport\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing at Tampa Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-06-06T12:45:34.01\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/730993\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 730993,\n                    \"title\": \"General Laborer / Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">The General Laborer / Jr Technician is an entry-level position with varied responsibilities, including, but not limited to, the maintenance of the airport Baggage Handling Systems (BHS) at the Orlando International Airport. The primary function of this position is to provide electro-mechanical operational, preventative, and emergency maintenance support.</span></p>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Start Date: ASAP</span></p>\\n</div>\\n</div>\\n</div>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $16.50/hr</span></p>\\n<p style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Shifts Available:</span></p>\\n<ul>\\n<li style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Sunday - Tuesday 6:30pm - 6:30am &amp; Wednesday 6:30pm - 12:30am</span></li>\\n<li style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Wednesday 6:30am - 12:30pm and Thursday - Saturday 6:30pm - 6:30am&nbsp;</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">A Jr. Technician must be able to:</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work with a variety of tools/hand tools safely and properly, as well as utilize any/all appropriate safety and personal protective equipment (PPE)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Diagnose equipment failures under the guidance of senior staff</span></p>\\n</li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Perform basic preventative maintenance tasks, which will include, but not limited to, cleaning of conveyor and surrounding areas, removal of debris from between conveyors, removal and replacement of conveyor covers for inspection and cleaning, and the recognition of potential issues through audial and visual inspection</span></li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Make minor adjustments to ensure system functionality and reliability pertaining to both electrical and mechanical items</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Clear and reset baggage handling system jams in a safe and efficient manner</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Work safely in a variety of locations that may include moving equipment and electricity, as well as small spaces, high spaces, dirty spaces, and hot spaces</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Attend requested/required training, demonstrating a willingness to learn</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Follow and comply with any company and/or federally established policies and procedures</span></p>\\n</li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Qualifications:</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Education: High School Graduate or General Education Degree (GED)</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read, write, speak and understand English</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to read and interpret repair manuals and basic mechanical schematics</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must have at least one (1) year of mechanical work experience</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to undergo a 10-year background check and be able to obtain security clearance</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation), with most shifts working 10 hours/day, 4 days/week and will include holidays</span></li>\\n</ul>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 100 pounds</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n</div>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2022-06-07T17:30:53.873\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/731573\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 731573,\n                    \"title\": \"General Laborer / Jr Technician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking a self-motivated individual to test a newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">MUST be local to OKC airport</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$13/hr&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Shift Schedule: 4am - Noon </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start ASAP<br /><br /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2022-06-11T11:48:53.293\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/732620\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 732620,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Oklahoma City\",\n                        \"zip\": \"73159\",\n                        \"address1\": null,\n                        \"state\": \"OK\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Seeking a qualified, licensed Journeyman Electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Local to Orlando, FL</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">FL Journeyman Electrician License Required</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">$32/hr</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Estimated 40 hours a week</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Long Term Duration</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">The primary responsibilities include providing electrical guidance, maintenance and oversight of all mechanical/electrical systems covered under the maintenance contract, assisting other technicians with challenging electrical repairs, and troubleshooting electrical issues.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Provide electrical code guidance and direction on new equipment installations and ensure all new equipment/projects are wired to meet code/standards</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Install and repair control and distribution apparatus, including motors, relays, switches, thermostats, circuit-breaker panels, etc.</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Install and connect power supply wiring, cables, conduit, and electrical apparatus for machines and equipment in new and existing systems and facilities following diagrams, schematics, or blueprints</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Diagnose and resolve problems in electrical circuits, systems, and equipment using testing instruments and equipment</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Test continuity of circuits to ensure compatibility and safety of components using testing instruments</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Measure, cut, bend, thread, assemble, and install electrical conduit</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Receive and complete work orders</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Select material and hardware and make time and materials estimates</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Maintain accurate records on material and labor used</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Maintain inventory of company-owned tools, equipment, and materials</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Inspect jobs upon completion and ensure areas are clean</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Work with construction contractors, airport representatives and supervisors to complete projects</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Detect needed repairs on buildings, grounds, and equipment following established inspection procedures</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Respond to emergency calls as needed</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">If there is&nbsp;no specific electrical work to be addressed, assistance/support will be expected in other segments of the contract with the airport</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Required Work Experience:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must have at least three to five&nbsp;(3-5) years of experience in the commercial electrical field</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to read, write, speak and understand English</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Knowledge of electrical circuits and wiring and operating principles of motors</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Knowledge of local electrical codes</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to read blueprints, schematics, and written reference material</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to follow written and verbal instructions</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to perform mathematical calculations</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to diagnose and resolve problems</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to use hand and power tools</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation)</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to acquire a customs seal</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Physical requirements:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability up to lift up to 70 pounds; exerting up to 50 pounds of force occasionally with or without accommodation, and/or up to 20 pounds of force frequently, and/or up to 10 pounds of force constantly</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to climb ladders and navigate safely on catwalks and other elevated surfaces&nbsp;within height-constrained environments</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability work in and around baggage handling systems, passenger boarding bridges, or other related equipment</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Regular exposure to work near moving mechanical parts, fumes or airborne particles, cleaning/maintenance chemicals, cold and vibration</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to withstand&nbsp;exposure to potentially loud noise levels</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to withstand exposure to hot, cold, wet, humid, or other weather-related conditions</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Educational Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">High School Graduate or General Educational Development (GED) required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Some post high school education or training preferred</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Education/Certification: Journeyman Electrician License, State of Florida (required)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-07-06T13:48:28.407\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/740067\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 740067,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Seeking a qualified, licensed Journeyman Electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Local to Nashville, TN</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">TN Journeyman Electrician License Required</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">$32/hr</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Estimated 40 hours a week</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Long Term Duration</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">The primary responsibilities include providing electrical guidance, maintenance and oversight of all mechanical/electrical systems covered under the maintenance contract, assisting other technicians with challenging electrical repairs, and troubleshooting electrical issues.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Provide electrical code guidance and direction on new equipment installations and ensure all new equipment/projects are wired to meet code/standards</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Install and repair control and distribution apparatus, including motors, relays, switches, thermostats, circuit-breaker panels, etc.</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Install and connect power supply wiring, cables, conduit, and electrical apparatus for machines and equipment in new and existing systems and facilities following diagrams, schematics, or blueprints</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Diagnose and resolve problems in electrical circuits, systems, and equipment using testing instruments and equipment</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Test continuity of circuits to ensure compatibility and safety of components using testing instruments</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Measure, cut, bend, thread, assemble, and install electrical conduit</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Receive and complete work orders</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Select material and hardware and make time and materials estimates</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Maintain accurate records on material and labor used</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Maintain inventory of company-owned tools, equipment, and materials</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Inspect jobs upon completion and ensure areas are clean</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Work with construction contractors, airport representatives and supervisors to complete projects</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Detect needed repairs on buildings, grounds, and equipment following established inspection procedures</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Respond to emergency calls as needed</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">If there is&nbsp;no specific electrical work to be addressed, assistance/support will be expected in other segments of the contract with the airport</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Required Work Experience:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must have at least three to five&nbsp;(3-5) years of experience in the commercial electrical field</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to read, write, speak and understand English</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Knowledge of electrical circuits and wiring and operating principles of motors</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Knowledge of local electrical codes</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to read blueprints, schematics, and written reference material</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to follow written and verbal instructions</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to perform mathematical calculations</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to diagnose and resolve problems</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to use hand and power tools</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must possess a valid drivers' license (with a clean driving record)</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to work as scheduled (this is a 24 hour/day, 7 day/week operation)</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Must be able to acquire a customs seal</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Physical requirements:</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability up to lift up to 70 pounds; exerting up to 50 pounds of force occasionally with or without accommodation, and/or up to 20 pounds of force frequently, and/or up to 10 pounds of force constantly</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to climb ladders and navigate safely on catwalks and other elevated surfaces&nbsp;within height-constrained environments</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability work in and around baggage handling systems, passenger boarding bridges, or other related equipment</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Regular exposure to work near moving mechanical parts, fumes or airborne particles, cleaning/maintenance chemicals, cold and vibration</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to withstand&nbsp;exposure to potentially loud noise levels</span></li>\\n<li style=\\\"color: #333333;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Ability to withstand exposure to hot, cold, wet, humid, or other weather-related conditions</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><strong>Educational Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">High School Graduate or General Educational Development (GED) required</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Some post high school education or training preferred</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\">Education/Certification: Journeyman Electrician License, State of Tennessee (required)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-07-06T13:51:38.457\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/740071\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 740071,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashville\",\n                        \"zip\": \"37214\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to test a newly installed baggage conveyor system at MCO Airport. CRAS is a highly skilled and well-respected staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Local to Orlando, FL</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $16/hr</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start Date: August 1st, 2022</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Multiple shift schedules available</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Long term duration</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Previous experience as a baggage handler or ramp agent within the Airport is helpful</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to attain and sustain an Airport I.D. Badge and CBP Security&nbsp;</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-07-19T13:30:41.15\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/743960\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 743960,\n                    \"title\": \"Baggage Handler\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">40+ hours a week</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-08-03T09:33:17.297\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/748423\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 748423,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a qualified electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</p>\\n<p>&nbsp;</p>\\n<p>TX Journeyman License Required</p>\\n<p>Shift Schedule: 8 hours, 6 days a week (Monday - Saturday)</p>\\n<p>Pay Rate: $30/hr</p>\\n<p>Per Diem: $80 daily</p>\\n<p>Night shift</p>\\n<p>Long Term Duration</p>\\n<p>&nbsp;</p>\\n<p><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</li>\\n<li>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</li>\\n<li>Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</li>\\n<li>Read blue prints, schematics, and drawings</li>\\n<li>Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</li>\\n<li>Knowledgeable on electrical maintenance and mechanics of test equipment</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Requirements</strong></p>\\n<ul>\\n<li>Five years of verifiable experience running and bending EMT and rigid conduit</li>\\n<li>Proven experience establishing ability to hang pipe straight and strap it as indicated</li>\\n<li>Prior conveyor experience on Automated Handling Systems</li>\\n<li>Experience with motor controls or panel work</li>\\n<li>Capability to effectively install necessary conduit, fittings, and fixtures as required</li>\\n<li>Pull wire utilizing approved pulling techniques</li>\\n<li>Experience and ability to safely use lifts for non-gravity electrical components on conveyor</li>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Moderate mechanical aptitude</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Experience installing varying types of electrical apparatus</li>\\n<li>Capability to terminate medium voltage connections and safely work with medium voltage gear</li>\\n<li>Ability to understand and interpret the NEC</li>\\n<li>Read and follow prints, drawings, and schematics</li>\\n<li>Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2022-06-13T14:13:44.923\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/733029\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 733029,\n                    \"title\": \"Journeyman Electrician (Licensed)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction at Tampa International Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\">MUST have an active CDL License **&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Experience driving a manual flatbed truck</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Local to Tampa, FL</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Monday &ndash; Friday 2pm &ndash; 10:30pm</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Start ASAP</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\">Pay Rate: $22/hr</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Safely operate a manual truck, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Minimum of 2-year experience operating a manual vehicle required</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 12pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 12pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-08-25T14:00:46.01\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/755527\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 755527,\n                    \"title\": \"CDL Driver\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p><br />Location: Blountville, Tennessee</p>\\n<p>Pay Rate: $28/hr + $70 per diem</p>\\n<p>Start Date: September 19th</p>\\n<p>Anticipated Duration: 3 weeks</p>\\n<p>Shift Schedule: Monday-Friday 8 hour shifts</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Ability to perform physical requirements necessary as applicable to project<br />Comply with and maintain conducive work site environment<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Moderate mechanical aptitude<br />Mig/Stick Welding experience is preferred<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</p>\",\n                    \"date_added\": \"2022-09-02T11:21:31.687\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/758083\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 758083,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Blountville\",\n                        \"zip\": \"37617\",\n                        \"address1\": null,\n                        \"state\": \"TN\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"font-size: 12pt; color: #000000;\\\"><strong><span style=\\\"font-size: 11pt;\\\">Description</span></strong></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><span style=\\\"font-size: 11pt;\\\">The recruiter serves as the intermediary between our clients and potential employees seeking a career move or temporary assignment.&nbsp;</span><span style=\\\"font-size: 11pt;\\\">Your primary role is to fill job positions and put people back to work. This role offers great rewards for those that get impressive results. </span><span style=\\\"font-size: 11pt;\\\">Strong work ethic, ability to adapt to project demands and drive is imperative to success within the company.</span></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><span style=\\\"font-size: 11pt;\\\">&nbsp;</span></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><strong><span style=\\\"font-size: 11pt;\\\">Job Details:</span></strong></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><span style=\\\"font-size: 11pt;\\\">Start Date: Immediate</span></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><span style=\\\"font-size: 11pt;\\\">Pay Scale: TBD</span></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><span style=\\\"font-size: 11pt;\\\">Hours: Monday-Friday 8am-3pm; Must be available after office hours and weekends.&nbsp;</span></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\">&nbsp;</p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><strong><span style=\\\"font-size: 11pt; color: #212529;\\\">Job Responsibilities:</span></strong></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Posting on various job boards to source candidates for open roles</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Interviewing, hiring, and onboarding all employees</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Verifying certifications / licenses for jobs that require them</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Running background checks and setting up pre-employment drug screens</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Processing all new hire paperwork </span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Arranging phone interviews with project managers to obtain project details</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Coordinating schedules with supervisors for start dates, times and job location</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Monitoring all active job postings and keeping the Applicant Tracking System updated</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Being the point of contact for all employees, supervisors and client representatives</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Attending recruiter events and online trainings</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Occasional travel to job sites</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Participating in special projects and performing other duties as assigned</span></li>\\n</ul>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><strong><span style=\\\"font-size: 11pt; color: #212529;\\\">Key Skills:</span></strong></p>\\n<ul style=\\\"color: #000000;\\\">\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Excellent communication skills, both written and verbal</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Highly proficient in Phone, Email and Texting</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Excellent negotiation skills, job interviewing techniques, and organizational skills</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Analytical and methodical in your approach to problems</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Must be resourceful, self-motivated and results driven</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Be an excellent judge of character</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Must be able to multi-task and prioritize</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Act quickly and have good judgment</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Treat people fairly with integrity and patience</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 11pt;\\\">Follow instructions and complete assignments according to workload demands</span></li>\\n</ul>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><strong><em><span style=\\\"font-size: 11pt; color: red;\\\">&nbsp;</span></em></strong></p>\\n<p style=\\\"font-size: 12pt; color: #000000;\\\"><em><span style=\\\"font-size: 11pt; color: red;\\\">Employment is contingent upon successful completion of pre-screening drug screen and national background check</span></em></p>\",\n                    \"date_added\": \"2022-09-28T10:26:03.237\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/765515\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 765515,\n                    \"title\": \"Recruiter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"West Palm Beach\",\n                        \"zip\": \"33403\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Looking for licensed electricians to install new conveyer system at Austin-Bergstrom International Airport. Long term project with opportunity to advance. </span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><br />ACTIVE TDLR LICENSE REQUIRED</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Full-time position. Willing to work overtime when needed</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">$27.76/hr + $8.34/hr fringe (non-taxable). $70 per diem for travelers.</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Night shift (subject to change)</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Responsibilities:</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit, wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><br />Requirements:</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Five years of verifiable experience running and bending EMT and rigid conduit<br />Proven experience establishing ability to hang pipe straight and strap it as indicated<br />Prior conveyor experience on automated handling systems<br />Experience with motor controls or panel work<br />Pull wire utilizing approved pulling techniques<br />Experience and ability to safely use lifts for non-gravity electrical components on conveyor<br />Read and follow prints, drawings, and schematics<br />Ability to abide by safety instruction and use of PPE<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />Ensure all safety requirements of lockout/tag out procedures are strictly adhered to<br />High school diploma or GED equivalent</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><br />Working Conditions:</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\">Ability to perform physical requirements; standing, bending, crawling 100% of the time. Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes.</span></p>\\n<p><span style=\\\"font-size: 10pt; color: #000000;\\\"><br />CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</span></p>\",\n                    \"date_added\": \"2022-09-12T14:56:29.743\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/760541\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 760541,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Austin\",\n                        \"zip\": \"78719\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking seasoned Millwrights to assist in installing new conveyer system at IAH Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyors and baggage handling systems within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p>Must have conveyer experience and be at a journeyman level&nbsp;</p>\\n<p>$25.86/hr + $9.08/hr fringe (non-taxable)</p>\\n<p>Starting in 2 weeks</p>\\n<p>30 day shutdown</p>\\n<p>Must have OSHA 10 and lift certifications</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</p>\",\n                    \"date_added\": \"2022-10-06T10:26:48.12\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/768046\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 768046,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Houston\",\n                        \"zip\": \"77032\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to test a newly installed baggage conveyor system at MCO Airport. CRAS is a highly skilled and well-respected staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Local to Orlando, FL</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $16/hr</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start Date: ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Multiple shift schedules available</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Long term duration</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Previous experience as a baggage handler or ramp agent within the Airport is helpful</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to attain and sustain an Airport I.D. Badge and CBP Security&nbsp;</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2022-08-25T12:04:21.43\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/755448\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 755448,\n                    \"title\": \"Baggage Handler\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking a seasoned Millwright Welder to assist in installing conveyers at Salt Lake City Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyors and baggage handling systems within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p>MUST have 3g, 4g or 6g ACTIVE welding certification</p>\\n<p>MUST be a competent welder millwright and have all welding and millwright tools</p>\\n<p>$30/hr - LOCALS ONLY</p>\\n<p>Starting ASAP</p>\\n<p>Monday - Friday, 10 hours, day shift</p>\\n<p>Long term duration</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</p>\",\n                    \"date_added\": \"2022-10-21T10:39:47.923\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/771928\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 771928,\n                    \"title\": \"Millwright Welder\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 9.0pt;\\\">Seeking a qualified journeyman electrician to become a member of a highly skilled and well-respected temporary staffing agency within the construction industry. CRAS specializes in conveyor systems/carousel claims units at airports and industrial warehouse facilities nationwide.</span></p>\\n<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 9.0pt;\\\">MUST have conveyor experience in airports.&nbsp;</span></p>\\n<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 9.0pt;\\\">$38/hr - no per diem</span></p>\\n<p style=\\\"text-align: left;\\\"><span style=\\\"font-size: 12px;\\\">Start Date - ASAP. Must submit to and pass background check and drug test. </span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Installation of wire way, cable trey, junction boxes, photo eyes, start/stop switches</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Working knowledge of NEC and NFPA 70E (Standard for electrical safety in the workplace)</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Knowledgeable on electrical maintenance and mechanics of test equipment</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Five years of verifiable experience running and bending EMT and rigid conduit</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Proven experience establishing ability to hang pipe straight and strap it as indicated</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Prior conveyor experience on Automated Handling Systems</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience with motor controls or panel work</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to effectively install necessary conduit, fittings, and fixtures as required</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Pull wire utilizing approved pulling techniques</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience and ability to safely use lifts for non-gravity electrical components on conveyor</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Experience installing varying types of electrical apparatus</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Capability to terminate medium voltage connections and safely work with medium voltage gear</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to understand and interpret the NEC</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Read and follow prints, drawings, and schematics</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ensure all safety requirements of lockout/tag out procedures are strictly adhered to</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span>&nbsp;</li>\\n</ul>\\n<p style=\\\"text-align: left;\\\"><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2022-12-07T15:34:40.473\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/781355\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 781355,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<section id=\\\"postingbody\\\">\\n<p>Looking for a licensed journeymen electrician to install new conveyer system at DFW Airport. Long term project with opportunity to advance.&nbsp;</p>\\n<p><br />ACTIVE TX JOURNEYMAN LICENSE REQUIRED</p>\\n<p>Willing to work overtime as needed</p>\\n<p>$32/hr</p>\\n<p>Night shift (subject to change)</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Installation of conveyor systems: general transport, power curves, slope plate carousels, and baggage conveyors<br />Bending and installing exposed conduit inclusive of EMT and/or Rigid conduit, wire way, cable trey, junction boxes, photo eyes, start/stop switches</p>\\n<p><br />Requirements:</p>\\n<p>Five years of verifiable experience running and bending EMT and rigid conduit<br />Proven experience establishing ability to hang pipe straight and strap it as indicated<br />Prior conveyor experience on automated handling systems<br />Experience with motor controls or panel work<br />Pull wire utilizing approved pulling techniques<br />Experience and ability to safely use lifts for non-gravity electrical components on conveyor<br />Read and follow prints, drawings, and schematics<br />Ability to abide by safety instruction and use of PPE<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />Ensure all safety requirements of lockout/tag out procedures are strictly adhered to<br />High school diploma or GED equivalent</p>\\n<p><br />Working Conditions:</p>\\n<p>Ability to perform physical requirements; standing, bending, crawling 100% of the time. Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes.</p>\\n<p><br />CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</p>\\n<p>&nbsp;</p>\\n</section>\",\n                    \"date_added\": \"2022-08-18T11:08:13.497\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/753264\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 753264,\n                    \"title\": \"Journeyman Electrician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dallas\",\n                        \"zip\": \"75261\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Seeking self-motivated individuals to perform general labor tasks and baggage testing. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be local to the Tampa area</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Start date ASAP</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">40+ hours a week</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">$16.95/hr&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Requirements:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><strong>Working Conditions:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes&nbsp;<em>&nbsp;</em></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2023-01-26T12:16:57.36\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/791774\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 791774,\n                    \"title\": \"Baggage Porter\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt;\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p>&nbsp;</p>\\n<p>Orlando, FL</p>\\n<p>$20/hr</p>\\n<p>5x8 shift</p>\\n<p>Duration: 6 months expected</p>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Responsibilities</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturer&rsquo;s instructions</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Requirements </strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Needs forklift driving and proficient in loading trucks - strapping /rigging etc</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\"><strong>Must be forklift certified&nbsp;</strong></span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Employee must possess a valid drivers&rsquo; license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturers&rsquo; instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 10pt;\\\">Moderate mechanical aptitude </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><strong>Working Conditions</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2023-01-26T12:43:09.07\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/791787\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 791787,\n                    \"title\": \"Forklift Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Start Date: ASAP</span></p>\\n</div>\\n</div>\\n</div>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Pay Rate: $16/hr</span></p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n</div>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2023-01-26T12:48:01.607\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/791789\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 791789,\n                    \"title\": \"Jr Control Operator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: left;\\\">Seeking a seasoned Millwright to assist in support of construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</p>\\n<p style=\\\"text-align: left;\\\">$35.35/hr&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">NO per diem</p>\\n<p style=\\\"text-align: left;\\\">Must have conveyer experience and be at a journeyman level. Forklift experience is a plus</p>\\n<p style=\\\"text-align: left;\\\">Day shift 40 hours a week (subject to change at supervisor's discretion)</p>\\n<p style=\\\"color: #000000; font-weight: 400;\\\"><strong><span style=\\\"font-size: 10.5pt; color: #212529;\\\">Requirements:</span></strong></p>\\n<ul style=\\\"color: #000000; font-weight: 400;\\\">\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Minimum of 4 years experience within the industrial mechanical industry</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">High school diploma or GED equivalent</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Basic reading and mathematical skills</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Adequate written and oral communication skills</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Moderate mechanical aptitude</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Mig/Stick Welding experience is preferred but no required</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p style=\\\"color: #000000; font-weight: 400;\\\"><strong><span style=\\\"font-size: 10.5pt; color: #212529;\\\">Responsibilities:</span></strong></p>\\n<ul style=\\\"color: #000000; font-weight: 400;\\\">\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Assembling and installing machines, then testing them to make sure they are working properly.</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Demolition and installation of conveyor mechanical systems</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Managing the layout and placement of equipment and machinery</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Identifying and repairing problematic parts of a machine by running tests, making temporary repairs, or installing new parts</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Overseeing preventative maintenance by identifying and correcting potential issues, removing worn out pieces and lubricating mechanical parts</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Using machinery or equipment, such as forklifts to move mechanical parts</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Must work in full compliance with the approved safety regulations</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li style=\\\"color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p style=\\\"color: #000000; font-weight: 400;\\\"><span style=\\\"font-size: 10.5pt; color: #212529;\\\">&nbsp;</span></p>\\n<p style=\\\"color: #000000; font-weight: 400;\\\"><span style=\\\"font-size: 10.5pt; color: #212529;\\\">&nbsp;</span></p>\\n<p style=\\\"font-size: medium; color: #000000; font-weight: 400;\\\"><strong><span style=\\\"font-size: 10.5pt; color: #212529;\\\">Working Conditions</span></strong></p>\\n<ul style=\\\"color: #000000; font-weight: 400;\\\">\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Exposure to various road, traffic, and inclement weather conditions</span></li>\\n<li style=\\\"font-size: 12pt; color: #212529;\\\"><span style=\\\"font-size: 10.5pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span></li>\\n</ul>\\n<p style=\\\"font-size: medium; color: #000000; font-weight: 400;\\\"><span style=\\\"font-size: 10.5pt; color: #212529;\\\">&nbsp;</span></p>\\n<p style=\\\"font-size: medium; color: #000000; font-weight: 400;\\\"><em><span style=\\\"font-size: 10.5pt; color: #212529;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2023-01-31T15:11:10.39\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/792981\",\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 792981,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9.0pt;\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9.0pt;\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9.0pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span><em><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9.0pt;\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9.0pt;\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2023-02-23T14:42:48.12\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/798809\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tampa\",\n                        \"zip\": \"33607\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"aramiz@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 798809,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong><u>General Maintenance Worker (Junior Technician)</u></strong></span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">The general maintenance worker assists and helps Technicians with repairs and maintenance of machinery, mechanical equipment used in baggage conveyor systems, passenger boarding bridges and/or auxiliary equipment. Responsibility for performing assigned un-skilled (bag runner/ bag unjammer, clear faults) to semi-skilled duties (supervised repairs/maintenance) to assist the Technicians.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Pay Rate: $20/hr</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Shift Schedule: 6am-2:30pm or 2:30pm-11pm, 5 days a week</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Start ASAP</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Location: Orlando International Airport (MCO)</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Assist Technicians with repairs of all BHS and/or all PBB equipment and auxiliary equipment</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Monitor the BHS from the control room</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Clear jams and respond to trouble calls in the BHS and/or PBB</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Run bags</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Clear Faults</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Assist where required</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>&nbsp;</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Qualifications and Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Experience in mechanical, electrical maintenance, conveyor systems, passenger boarding bridges or material handling equipment is preferred</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Associate degree in electronics or mechanical repair or related field or equivalent experience is preferred</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Technically inclined, with potential to learn and grow into maintaining baggage handling and/or PBB systems</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Self-Starter and Pro-active</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Detail Oriented and Stress Resistant</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Good Verbal and Written Communication Skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Working knowledge of computers and equipment</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Customer Oriented</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Innovative and Self Assured</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physically able to pick up and transport up to 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to complete training and security checks required to receive security badge for access to restricted airport areas</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Observe and comply with Company, OSHA and FAA regulations regarding safety and security</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible in shift work and able to work nights, weekends, overtime and holidays</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><strong><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></strong></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 70 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2023-03-20T11:26:20.117\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/804682\",\n                    \"rep_user\": {\n                        \"email\": \"diane@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 804682,\n                    \"title\": \"General Maintenance Worker (Junior Technician)\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong><u>Junior Technician</u></strong></span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">The Jr Technician assists and helps Technicians with repairs and maintenance of machinery, mechanical equipment used in baggage conveyor systems, passenger boarding bridges and/or auxiliary equipment. Responsibility for performing assigned un-skilled (bag runner/ bag unjammer, clear faults) to semi-skilled duties (supervised repairs/maintenance) to assist the Technicians.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Pay Rate: $20/hr</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Shift Schedule: 6am-2:30pm or 2:30pm-11pm, 5 days a week</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Start ASAP</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Location: Orlando International Airport (MCO)</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Assist Technicians with repairs of all BHS and/or all PBB equipment and auxiliary equipment</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Monitor the BHS from the control room</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Clear jams and respond to trouble calls in the BHS and/or PBB</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Run bags</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Clear Faults</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Assist where required</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>&nbsp;</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Qualifications and Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Experience in mechanical, electrical maintenance, conveyor systems, passenger boarding bridges or material handling equipment is preferred</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Associate degree in electronics or mechanical repair or related field or equivalent experience is preferred</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Technically inclined, with potential to learn and grow into maintaining baggage handling and/or PBB systems</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Self-Starter and Pro-active</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Detail Oriented and Stress Resistant</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Good Verbal and Written Communication Skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Working knowledge of computers and equipment</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Customer Oriented</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Innovative and Self Assured</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physically able to pick up and transport up to 70 pounds</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to complete training and security checks required to receive security badge for access to restricted airport areas</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Observe and comply with Company, OSHA and FAA regulations regarding safety and security</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible in shift work and able to work nights, weekends, overtime and holidays</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><strong><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Physical requirements:</span></strong></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds, occasionally up to 70 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2023-04-28T11:46:05.277\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/814517\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 814517,\n                    \"title\": \"Junior Technician\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong><u>Spare Parts Clerk</u></strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Working within the Service Department the Spare Parts Clerk will, amongst other duties, undertake administrative tasks to ensure buyers have adequate support to work efficiently and assist with the general purchasing enquiries of the central procurement team.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Pay Rate: $20/hr</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Shift Schedule: 40 hours a week</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Start ASAP</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Location: Orlando International Airport (MCO)</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Responsibilities:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ensuring adequate stock levels are on site at all times</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Liaising with stake holders and suppliers to ensure timely supply of materials</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Monitor progress of associated materials sub-suppliers</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Monitor and report progress of delivery dates and receipt dates</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Ensure RMA's and Repairs are tracked and processed in timely manner</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Liaising with Stores team, capturing KPI's and implementing improvements</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Assisting site teams with any Spare Parts information</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Assisting Buyers with Technical information</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Assisting Spare Parts Team with the online requests from Airport Sites</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Keep inventory healthy (refills and in place)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Vending Machines / Third party vendors</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Company Truck and Service</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Repairs administrator</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Local Solutions Finder</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Technicians Tools system</span></li>\\n</ul>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>&nbsp;</strong></span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Qualifications and Skills:</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Microsoft Office (Intermediate Level)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">CMMS Experience (SAP/MAXIMO)</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Purchasing Experience</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Inventory Analytics</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Planning</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\">Forklift experience (nice to have)</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Good Verbal and Written Communication Skills</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Working knowledge of computers and equipment</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Ability to complete training and security checks required to receive security badge for access to restricted airport areas</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Observe and comply with Company, OSHA and FAA regulations regarding safety and security</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Flexible in shift work and able to work nights, weekends, overtime and holidays</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<div class=\\\"page\\\" title=\\\"Page 1\\\">\\n<div class=\\\"section\\\">\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 10pt;\\\"><strong>Physical requirements:</strong></span></p>\\n</div>\\n</div>\\n</div>\\n<div class=\\\"layoutArea\\\">\\n<div class=\\\"column\\\">\\n<ul>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Standing, walking, bending, kneeling, stooping, crouching, crawling, and climbing all day</span></li>\\n<li><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\">Frequently lifting/moving items that may range in weight up to 50 pounds</span></li>\\n</ul>\\n</div>\\n</div>\\n</div>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em>&nbsp;</span></p>\",\n                    \"date_added\": \"2023-05-15T09:14:04.15\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/817867\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 817867,\n                    \"title\": \"Spare Parts Clerk\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking seasoned Millwrights to assist in installing conveyers at Wilmington International Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyors and baggage handling systems within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p>$30/hr + $4.53/hr fringe (non taxable)</p>\\n<p>Start ASAP</p>\\n<p>40 hours, Day Shift</p>\\n<p>4-6 weeks</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</p>\",\n                    \"date_added\": \"2023-05-18T09:51:49.277\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/818962\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 818962,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Wilmington\",\n                        \"zip\": \"28405\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">As the Baggage Handling System Project Superintendent, you will play a critical role in overseeing the successful execution of baggage handling system projects from start to finish. You will be responsible for coordinating and managing all aspects of the project, ensuring adherence to timelines, budgets, and quality standards. Your leadership and expertise will be essential in delivering exceptional baggage handling solutions to our clients.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Location: Charlotte Douglas International Airport (CLT)</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Pay: $42/hr</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Start Date: ASAP</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Shift Schedule: 40 hours, Sun - Thurs, Night Shift</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Expected Duration: 10+ months</span></p>\\n<div dir=\\\"ltr\\\">\\n<div dir=\\\"ltr\\\">\\n<div dir=\\\"ltr\\\">\\n<div class=\\\"WordSection1\\\">\\n<div>\\n<div><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Responsibilities:</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">1. Project Management:</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Lead and manage all aspects of baggage handling system projects, including planning, scheduling, and execution.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Ensure projects are delivered within established timelines and budget constraints.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Collaborate with project stakeholders, including engineers, architects, subcontractors, and clients, to ensure project objectives are met.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Conduct regular project meetings, provide progress updates, and address any issues or concerns that arise.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Monitor project performance, identify potential risks, and implement mitigation strategies.</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">2. Team Leadership:</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Supervise and coordinate the activities of project teams, including subcontractors and/or internal field personnel.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Provide guidance and support to project staff, fostering a collaborative and high-performance work environment.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Assign tasks, monitor progress, and ensure work is executed in accordance with project plans and specifications.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Conduct performance evaluations and provide feedback to team members.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Foster a culture of safety and ensure compliance with applicable health and safety regulations.</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">3. Quality Assurance:</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Ensure the implementation of quality control processes and procedures to deliver high-quality baggage handling systems.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Conduct inspections and quality checks to verify adherence to project specifications and standards.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Address any non-conformities or deficiencies promptly and implement corrective actions as needed.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Maintain accurate project documentation, including reports, drawings, and change orders.</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">4. Client Relationship Management:</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Establish and maintain strong relationships with clients, serving as the main point of contact throughout the project.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Provide exceptional customer service, promptly addressing client inquiries, concerns, and change requests.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Regularly communicate project progress, milestones, and deliverables to clients.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;&nbsp;- Collaborate with clients to identify opportunities for process improvement and ensure client satisfaction.</span></div>\\n<div><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp; - Participate in GC trade partner meetings and GC coordination meetings.</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Qualifications:</span><br /><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Proven experience as a Project Superintendent or similar role in the construction industry, with a focus on baggage handling systems.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Strong knowledge of baggage handling systems, associated technologies, and industry standards.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Demonstrated experience in managing complex projects, including planning, scheduling, and budgeting.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Excellent leadership skills with the ability to motivate and manage project teams effectively.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Exceptional organizational and problem-solving abilities.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Strong communication and interpersonal skills to collaborate with various stakeholders.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- OSHA 30 and familiarity with safety regulations and practices in the construction industry.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">- Proficiency in project management and scheduling software and tools.</span></div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Working Conditions:</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes.</span><br /><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</span></p>\",\n                    \"date_added\": \"2023-06-14T15:39:18.35\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/824727\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 824727,\n                    \"title\": \"BHS Project Superintendent\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">The Project Coordinator serves as the PMO focal point for processing, tracking, and distributing project deliverables; creating reports on project status; verifying the project insurance, bonds, lien releases, and other contractual obligations are fulfilled; and providing support to the Project Manager as needed. Supports the entire Project Team as a force multiplier to ensure excellent communication is maintained between all internal departments as well as with the customer.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"><strong><u>Key Responsibilities</u></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> <strong>Document Control - </strong>Works with Project Team to identify and produce project specific technical and commercial documentation and templates as outlined in the project plans. Responsible for monitoring all parties for compliance to project documentation processing including filing, tracking, and distributing.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> <strong>Action Items - </strong>Maintains project action item and open item lists. Tracks open items for completion.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> <strong>Team Meetings - </strong>Coordinates weekly project team meeting, keeping, and distributing minutes. </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> <strong>Logs - </strong>Responsible for maintaining all project log files to ensure accuracy of the document status. Typical project logs files are Submittals, RFIs, Change Orders, Site directives, Risk and Opportunity registers, Document Lists and Logs.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Coordinates with all departments to assist the Project Manager with project execution.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Coordinates with the project team members to ensure that the contents of submittals meet contractual requirements.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Produces and updates weekly and monthly project reports, both internal and external. </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Secondary point of contact for all departments in the absence of the Project Manager.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Direct line of communication between all departments supporting project execution.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Works with Project Scheduler to gather schedule updates from the project team on a weekly basis. Verifies compliance with schedule milestones and due dates, sending reminders and communicating any potential delays ahead of time.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Other support as required including, but not limited to: </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Site Badging Administration and Returns </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Continuous Improvement project support </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Payment Application status verification</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Site logistical support</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Purchase Order Request support</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Other forms and processes</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Supply Chain expediting support</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"><strong><u>Qualifications</u></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Bachelor&rsquo;s Degree from accredited university or institution.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> 3+ years of related project coordination or construction experience.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Procore certification a plus.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Smartsheet certification a plus.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"><strong><u>Knowledge, Skills, Abilities</u></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Basic understanding of project procurement, scheduling, and documentation requirements.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Proficient in MS Office. </span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Ability to work well with diverse team of internal disciplines.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Outstanding attention to detail.</span></li>\\n<li><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\"> Ability to quickly learn and adapt to the company&rsquo;s culture and Way of Working.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-family: arial, helvetica, sans-serif; font-size: 12pt;\\\">Pay rate: $22.50/hr</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Working hours: 9:00am - 5:00pm, Monday - Thursday</span></p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\">Location: SLC International Airport</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt; font-family: arial, helvetica, sans-serif;\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\",\n                    \"date_added\": \"2023-07-10T16:40:35.87\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/829204\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 829204,\n                    \"title\": \"Project Coordinator\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Salt Lake City\",\n                        \"zip\": \"84122\",\n                        \"address1\": null,\n                        \"state\": \"UT\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking self-motivated individuals to test a newly installed baggage conveyor system at MCO Airport. CRAS is a highly skilled and well-respected staffing agency specializing in conveyor systems/carousel claims units within the construction industry.<br /><br /><br />Must be local to Orlando, FL</p>\\n<p>Must be able to submit to and pass a background check and drug screen.&nbsp;</p>\\n<p>Reliable transportation is essential.&nbsp;<br /><br />Pay Rate: $16/hr<br /><br />Start Date: ASAP<br /><br />Multiple shift schedules available - must be available for all. A shift will be assign after training. Training is paid.&nbsp;<br /><br />Long term duration<br /><br />&nbsp;<br /><br /><strong>Responsibilities</strong></p>\\n<ul>\\n<li>Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</li>\\n<li>As a baggage tester you are required to handle live baggage at several points within customer departure and arrival</li>\\n<li>Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</li>\\n<li>Remain attentive to your surroundings at all times while on the job site</li>\\n<li>Demonstrate and uphold all core values such as integrity, accountability, and teamwork</li>\\n</ul>\\n<p><br /><strong>Requirements</strong></p>\\n<ul>\\n<li>Ability to abide by safety instruction and use of PPE</li>\\n<li>Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</li>\\n<li>High school diploma or GED equivalent</li>\\n<li>Basic reading and mathematical skills</li>\\n<li>Adequate written and oral communication skills</li>\\n<li>Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</li>\\n<li>Previous experience as a baggage handler or ramp agent within the Airport is helpful</li>\\n<li>Must be able to attain and sustain an Airport I.D. Badge and CBP Security&nbsp;</li>\\n</ul>\\n<p><br /><strong>Working Conditions</strong></p>\\n<ul>\\n<li>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</li>\\n</ul>\\n<p><br /><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></p>\",\n                    \"date_added\": \"2023-01-04T14:00:48.47\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/785906\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 785906,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32827\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Seeking local Millwrights to assist in installing conveyers at Charlotte Douglas International Airport. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyors and baggage handling systems within the construction industry.</p>\\n<p>&nbsp;</p>\\n<p><strong>Must have conveyer install experience as well as an OSHA 10 card.</strong></p>\\n<p>&nbsp;</p>\\n<p>Pay Rate: $30/hr</p>\\n<p>Start Date: Monday October 9th</p>\\n<p>40 hours, Day Shift</p>\\n<p>Estimated duration 3-6 months</p>\\n<p>&nbsp;</p>\\n<p>Responsibilities:</p>\\n<p>Demolition and installation of conveyor mechanical systems<br />Effectively report any deficiencies to proper authority ensuring safe operation<br />Potentially required to perform material handler responsibilities when not engaged in primary responsibilities<br />Take an active role in organization and planning of daily responsibilities<br />Read blue prints, schematics, and drawings<br />Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment<br />&nbsp;</p>\\n<p>Requirements:</p>\\n<p>Minimum of 4-year experience within the industrial mechanical industry<br />Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds<br />Ability to abide by safety instruction and use of PPE<br />High school diploma or GED equivalent<br />Basic reading and mathematical skills<br />Adequate written and oral communication skills<br />Demonstrate and uphold all core values such as integrity, accountability, and teamwork<br />You are required to provide your own basic hand tools and PPE<br />&nbsp;</p>\\n<p>Working Conditions:</p>\\n<p>Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes<br />&nbsp;</p>\\n<p>CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</p>\",\n                    \"date_added\": \"2023-10-02T12:24:16.62\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/847207\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 847207,\n                    \"title\": \"Millwright\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Charlotte\",\n                        \"zip\": \"28208\",\n                        \"address1\": null,\n                        \"state\": \"NC\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to assist with transporting of materials in support of new construction on conveyor system. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST HAVE PRIOR WAREHOUSE MANAGEMENT/SUPERVISORY EXPERIENCE</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST BE LOCAL TO BWI AIRPORT</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Duration TBD&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Safely operate truck with a gooseneck trailer, verify shipment content against shipping papers, obtain signed receipts for material delivered</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Scan deliveries into system to create the Manifest</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Maintain vehicle log according to state and federal regulations as advised</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Inspect vehicle equipment and supplies as mandated </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements necessary to lift and move inventory around the warehouse as well as load and unload trucks</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Operate and maneuver warehouse equipment and material(s) contained thereon in the manner consistent with the intended purpose of the equipment complying within manufacturerâ\\u0080\\u0099s instructions</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Minimum of 2-year experience operating vehicle with trailer required</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Experience within material handling operations</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Employee must possess a valid driversâ\\u0080\\u0099 license issued by resident state and appropriate for the type, class, and gross vehicle weight of Company vehicle to which the employee is assigned</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform the physical requirements necessary to receive, pick, pack, ship, and move materials throughout the warehouse including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to operate and maneuver warehouse equipment including but not limited to; pallet jacks, forklifts, and push carts in the manner required to move materials consistent with manufacturersâ\\u0080\\u0099 instructions and safety guidelines</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes</span>&nbsp;</li>\\n</ul>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\",\n                    \"date_added\": \"2023-11-21T14:35:57.907\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/856981\",\n                    \"rep_user\": {\n                        \"email\": \"hannah@crastaffing.com\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 856981,\n                    \"title\": \"Warehouse Worker\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21240\",\n                        \"address1\": null,\n                        \"state\": \"MD\"\n                    }\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Start Date: As soon as pre-screening/badging process clears</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Location: PHX Airport&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Pay: $16.50/hr</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Night Shift; anticipated 8 hour shift 5 days/week</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Duration TBD&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-03-28T08:15:09.797\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/881442\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 881442,\n                    \"title\": \"General Laborer/Baggage Porter $16.50/hr\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to perform general labor task. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST be local to Davie, FL</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Monday-Friday 7:30am-4pm; could have OT if needed</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Long term duration is possible&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST have hammer, impact drill, level, tape measure and steel toe boots</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Required to perform a considerable amount of heavy lifting up to 50lbs</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently&nbsp;</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-04-12T13:40:38.683\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/884416\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Davie\",\n                        \"zip\": \"33325\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 884416,\n                    \"title\": \"General Laborer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;$16.50/hr</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Night Shift</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Clean background and drug screening are a must</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST have reliable transportation</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Duration is expected to last 6 weeks or longer&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-05-14T12:33:57.817\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/889934\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Phoenix\",\n                        \"zip\": \"85034\",\n                        \"address1\": null,\n                        \"state\": \"AZ\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 889934,\n                    \"title\": \"General Laborer $16.50/hr\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Seeking a seasoned Millwright to assist in support of new construction on conveyor systems. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Start Date: 7/8/24</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Monday-Friday 7am start time&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Expected 3+ month duration&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">$24.98 taxable + $7.83 fringe</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">*Located near Amarillo Int. Airport is preferable*</span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-size: 9pt\\\">Prior conveyor installation experience is necessary&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt; color: rgba(0, 0, 0, 1)\\\">Demolition and installation of conveyor mechanical systems: general transport, power curves, slope plate carousels, and baggage conveyors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Effectively report any deficiencies to proper authority ensuring safe operation</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements necessary as applicable to project</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Comply with and maintain conducive work site environment</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Potentially required to perform material handler responsibilities when not engaged in primary responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Take an active role in organization and planning of daily responsibilities</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Read blue prints, schematics, and drawings</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Additional duties may be requested beyond the general description as described above as applicable to proper maintenance of project assignment </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Minimum of 4-year experience within the industrial mechanical industry </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform the physical requirements necessary including but not limited to; standing, walking, bending, twisting, stooping, reaching, climbing ladders, cutting wire, and lifting materials weighing upwards of 70 pounds</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Moderate mechanical aptitude </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Mig/Stick Welding experience is preferred </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">You are required to provide your own basic hand tools and PPE</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"2024-06-13T10:06:06.35\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/895139\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Amarillo\",\n                        \"zip\": \"79111\",\n                        \"address1\": null,\n                        \"state\": \"TX\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 895139,\n                    \"title\": \"Millwright\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\">Looking for a lead with a crew of concrete masons to lay concrete in North Dakota. Must be able to read blueprints and direct your crew accordingly. Excellent physical abilities and a thorough understanding of the properties of concrete are necessary.&nbsp;</span><span style=\\\"font-size: 10pt\\\">Completion of an apprenticeship or vocational training program in Cement Masonry is desired for entirety of crew.</span></p>\\n<p><span style=\\\"font-size: 10pt\\\">$25+/hr</span></p>\\n<p><span style=\\\"font-size: 10pt\\\">Daily per diem for travelers</span></p>\\n<p><span style=\\\"font-size: 10pt\\\">40+ hours a week</span></p>\\n<p><span style=\\\"font-size: 10pt\\\">Day shift </span></p>\\n<p><span style=\\\"font-size: 10pt\\\">4-5 month duration</span></p>\\n<p><strong><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\">Job Responsibilities</span></strong></p>\\n<ul>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Examine concrete forms to ensure they are properly constructed and can hold the correct amount of cement to complete a job.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Level, smooth and spread concrete using a variety of tools, including shovels, floats, rakes, power or hand trowels or power or hand screeds.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Monitor how heat, cold and wind affect the curing of the concrete throughout the entire building process.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Set forms designed to hold concrete to desired depth and pitch while aligning them.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Direct cement truck driver to park to ensure that concrete can be poured in the correct spot and move the truckâ\\u0080\\u0099s chute to put concrete in the right places.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Mold expansion edges and joints using jointers and straightedge as well as edging tools.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Compact concrete with power vibrator and produce a rough concrete surface using a broom.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Direct other cement masons and employees to guarantee that concrete is poured and smoothed correctly to prevent future problems with the build.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\">Job Requirements</span></strong></p>\\n<p><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\">Required:</span></p>\\n<ul>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">High school diploma or equivalent</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Journeyman-level knowledge on mixing, pouring, finishing and selecting concrete</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Punctual and consistent attendance</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">A basic understanding of construction principles, safety protocols, and building codes is advantageous.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Physical fitness and ability to perform strenuous tasks without restrictions.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Strong work ethic, reliability, and punctuality are essential qualities for this role.</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Ability to read and interpret blueprints, project plans, and specifications is beneficial.</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; color: rgba(0, 0, 0, 1)\\\">Preferred:</span></p>\\n<ul>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">1-5 years previous experience as a cement mason</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Flexible schedule and availability</span></li>\\n<li style=\\\"color: rgba(0, 0, 0, 1)\\\"><span style=\\\"font-size: 10pt\\\">Crew of 5-10 to travel together</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt\\\">Working Conditions:</span></strong></p>\\n<p><span style=\\\"font-size: 10pt\\\">Ability to perform physical requirements; standing, bending, crawling 100% of the time. Outdoor environment. Possible exposure to dust, heat, or cold, and other seasonal changes.</span></p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center\\\"><em><span style=\\\"font-size: 10pt\\\">CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</span></em></p>\",\n                    \"date_added\": \"2024-06-11T14:56:44.66\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/894699\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fargo\",\n                        \"zip\": \"58102\",\n                        \"address1\": null,\n                        \"state\": \"ND\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 894699,\n                    \"title\": \"Concrete Mason Crew\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 12pt; font-family: 'book antiqua', palatino, serif\\\">Seeking a self-motivated plumber. CRAS is a highly skilled and well-respected temporary staffing agency within the construction industry.</span></p>\\n<p><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">Location: Ft. Lauderdale, FL</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">Duration: minimum 1 month</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">$26/hr&nbsp;</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">Day shift&nbsp;</span></p>\\n<p><strong><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">Responsibilities:</span></strong><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Install, repair, and maintain plumbing systems.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Conduct inspections and diagnose plumbing issues.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Collaborate with team members to ensure project success.</span></p>\\n<p><strong><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">Requirements:</span></strong><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Experience in underground plumbing.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Valid plumbing license.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Strong problem-solving skills.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Ability to work in various conditions.</span></p>\\n<p><strong><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">**Benefits:**</span></strong><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Competitive salary.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Health insurance.</span><br><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">- Paid major holidays</span><br><strong><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">**Apply Today!**</span></strong></p>\\n<p><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\">&nbsp;<em>&nbsp;</em></span></p>\\n<p style=\\\"text-align: center\\\"><span style=\\\"font-family: 'book antiqua', palatino, serif; font-size: 12pt\\\"><em>CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</em></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12pt; font-family: 'book antiqua', palatino, serif\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-06-14T12:38:47.34\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/895427\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Lauderdale\",\n                        \"zip\": \"33331\",\n                        \"address1\": null,\n                        \"state\": \"FL\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 895427,\n                    \"title\": \"Plumber\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p>Looking for a lead with a crew of concrete masons to lay concrete in North Dakota. Must be able to read blueprints and direct your crew accordingly. Excellent physical abilities and a thorough understanding of the properties of concrete are necessary. Completion of an apprenticeship or vocational training program in Cement Masonry is desired for entirety of crew.</p>\\n<p>$25+/hr<br><br>Daily per diem for travelers<br><br>40+ hours a week<br><br>Day shift<br><br>4-5 month duration<br><br><strong>Job Responsibilities</strong></p>\\n<ul>\\n<li>Examine concrete forms to ensure they are properly constructed and can hold the correct amount of cement to complete a job.</li>\\n<li>Level, smooth and spread concrete using a variety of tools, including shovels, floats, rakes, power or hand trowels or power or hand screeds.</li>\\n<li>Monitor how heat, cold and wind affect the curing of the concrete throughout the entire building process.</li>\\n<li>Set forms designed to hold concrete to desired depth and pitch while aligning them.</li>\\n<li>Direct cement truck driver to park to ensure that concrete can be poured in the correct spot and move the truckâ\\u0080\\u0099s chute to put concrete in the right places.</li>\\n<li>Mold expansion edges and joints using jointers and straightedge as well as edging tools.</li>\\n<li>Compact concrete with power vibrator and produce a rough concrete surface using a broom.</li>\\n<li>Direct other cement masons and employees to guarantee that concrete is poured and smoothed correctly to prevent future problems with the build.</li>\\n</ul>\\n<p><br><strong>Job Requirements</strong><br><br>Required:</p>\\n<ul>\\n<li>High school diploma or equivalent</li>\\n<li>Journeyman-level knowledge on mixing, pouring, finishing and selecting concrete</li>\\n<li>Punctual and consistent attendance</li>\\n<li>A basic understanding of construction principles, safety protocols, and building codes is advantageous.</li>\\n<li>Physical fitness and ability to perform strenuous tasks without restrictions.</li>\\n<li>Strong work ethic, reliability, and punctuality are essential qualities for this role.</li>\\n<li>Ability to read and interpret blueprints, project plans, and specifications is beneficial.</li>\\n</ul>\\n<p><br>Preferred:</p>\\n<ul>\\n<li>1-5 years previous experience as a cement mason</li>\\n<li>Flexible schedule and availability</li>\\n<li>Crew of 5-10 to travel together</li>\\n</ul>\\n<p style=\\\"text-align: center\\\"><br><strong>Working Conditions:</strong><br><br>Ability to perform physical requirements; standing, bending, crawling 100% of the time. Outdoor environment. Possible exposure to dust, heat, or cold, and other seasonal changes.<br><br>&nbsp;<br><br><em>CRAS has a zero tolerance for substance abuse. Employment with CRAS is contingent upon successful completion of Pre-Employment background and drug screening.</em></p>\",\n                    \"date_added\": \"2024-06-13T11:24:52.333\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/895168\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fargo\",\n                        \"zip\": \"58102\",\n                        \"address1\": null,\n                        \"state\": \"ND\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 895168,\n                    \"title\": \"Cement Mason\",\n                    \"category\": \"Craft Workers\"\n                },\n                {\n                    \"status\": \"closed\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt\\\">Seeking a self-motivated individual to test newly installed baggage conveyor. CRAS is a highly skilled and well-respected temporary staffing agency specializing in conveyor systems/carousel claims units within the construction industry.</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">MUST be local to IAD Airport</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">$20/hr &amp; $100 completion bonus after the end of project to anyone who works all available shifts</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Project starts Tuesday 7/16 @8am</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Project is 3 days Tuesday, Wednesday and Thursday</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">Refer a friend and receive $25 bonus&nbsp;</span></p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><strong><span style=\\\"font-size: 9pt\\\">Responsibilities</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Baggage handlers are required to perform a considerable amount of heavy lifting and transporting of luggage</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">As a baggage tester you are required to handle live baggage at several points within customer departure and arrival </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Work well under pressure and efficiently lift baggage onto carts and conveyors analyzing the new systems for potential jams</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Remain attentive to your surroundings at all times while on the job site</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Demonstrate and uphold all core values such as integrity, accountability, and teamwork</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Requirements </span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to abide by safety instruction and use of PPE</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Flexible availability is imperative; variations could fluctuate from dayshift, evening shift, night shift, and potentially weekends</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Must be able to provide a resume mirroring employment history pertaining to desired position including names and phone numbers of direct supervisors</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">High school diploma or GED equivalent </span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Basic reading and mathematical skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Adequate written and oral communication skills</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Ability to perform physical requirements; standing, bending, crawling, for any length of time as project mandates</span></li>\\n<li><span style=\\\"font-size: 9pt\\\">Previous experience as a baggage handler or ramp agent within the Airport is preferred</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 9pt\\\">Working Conditions</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-size: 9pt\\\">Warehouse environment. Possible exposure to dust, heat, or cold, and other seasonal changes </span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span><em><span style=\\\"font-size: 9pt\\\">&nbsp;</span></em></p>\\n<p><em><span style=\\\"font-size: 9pt\\\">CRAS adheres to a strict Substance abuse policy. Employment within CRAS is contingent upon successful completion of Pre-Employment 10-year background screening as well as a 10-Panel non DOT drug screening.</span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt\\\">&nbsp;</span></p>\",\n                    \"date_added\": \"2024-07-12T10:00:09.58\",\n                    \"url\": \"https://jobs.ourcareerpages.com/job/899891\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling\",\n                        \"zip\": \"20166\",\n                        \"address1\": null,\n                        \"state\": \"VA\"\n                    },\n                    \"rep_user\": {\n                        \"email\": \"KristyRichmond\",\n                        \"id\": 0,\n                        \"last_name\": \"\",\n                        \"first_name\": \"\"\n                    },\n                    \"id\": 899891,\n                    \"title\": \"Baggage Porter/Unjammer\",\n                    \"category\": \"Laborers &amp; Helpers\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"11.025352\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-03-03T22:59:28\",\n            \"APIKEY\": \"Q29uc3RydWN0aW9uUmVjcnVpdGVyc0FQSVVTRVI6dW5AOWdAREdqRA==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"birddog\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"300 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.birddoghr.com/v1/Jobs?jobstatus=closed\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"11.472048\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"300 jobs returned\"\n}"}],"_postman_id":"a26ab6a2-b00f-494c-94e8-57b6b7567bf8"}],"id":"c5f335d0-d02a-413e-8779-5f05f9742046","_postman_id":"c5f335d0-d02a-413e-8779-5f05f9742046","description":""},{"name":"Note","item":[{"name":"Note Set","id":"c58c891b-4127-4ae0-b415-9b8a3c2b137d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f2e13055-59dc-47d3-8e86-fca96412219c","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:55:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"527"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272230"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:55:18\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:55:18\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.725011\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c58c891b-4127-4ae0-b415-9b8a3c2b137d"}],"id":"0e3e2df6-01c8-4ce9-afe2-69b417fd53cf","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"0e3e2df6-01c8-4ce9-afe2-69b417fd53cf","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"6f644c73-6129-4c4b-8907-64a61bc9f476","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"85482970-d550-4001-b87b-e8a983cdcc8c","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\"\r\n    },\r\n    \"vendor\": \"birddog\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 19:57:00 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"532"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199397"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T19:57:00\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T19:57:01\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"birddog\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"grant_type\\\":\\\"access_token\\\",\\\"apiKey\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"userName\\\":\\\"ConstructionRecruitersAPIUSER\\\"}\",\n            \"call\": \"https://api.birddoghr.com/v1/accesstoken\"\n        },\n        \"vendor\": \"birddog\",\n        \"elapsed\": \"0.729209\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"6f644c73-6129-4c4b-8907-64a61bc9f476"}],"id":"1654284f-409a-4059-9ef8-4f351d44d7d6","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"1654284f-409a-4059-9ef8-4f351d44d7d6","description":""}],"id":"926b5f1c-5213-4653-9fc8-60c54423cdfd","description":"<p>BirdDog</p>\n<p><a href=\"https://birddoghr.com\">https://birddoghr.com</a> (<a href=\"https://birddoghr.com/\">https://birddoghr.com/</a>)</p>\n<p>Overview</p>\n<p>This integration is fairly limited. It only supports,* authorization and retrieving jobs*</p>\n<p>API Docs</p>\n<p><a href=\"https://api.birddoghr.com/help\">https://api.birddoghr.com/help</a></p>\n","event":[{"listen":"prerequest","script":{"id":"fdca6f64-66fb-4e55-92f7-0c8b45b4d0c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3651f453-2ec3-47c6-b9a9-5f19a408a39d","type":"text/javascript","exec":[""]}}],"_postman_id":"926b5f1c-5213-4653-9fc8-60c54423cdfd"},{"name":"Bullhorn","item":[{"name":"Authentication","item":[{"name":"ATS Authorization","event":[{"listen":"test","script":{"id":"4c6bc851-651c-4324-83d8-c8db8f712237","exec":["const response = pm.response.json();","","// Utility Functions","function validateType(fieldPath, actualValue, expectedType) {","    try {","        pm.expect(actualValue, `Type mismatch for ${fieldPath}`).to.be.a(expectedType);","    } catch (err) {","        console.log(`❗ ${fieldPath}: Value: ${JSON.stringify(actualValue)} (Expected: ${expectedType})`);","        throw err;","    }","}","","function validatePresence(fieldPath, object) {","    try {","        pm.expect(object, `${fieldPath} is missing`).to.have.property(fieldPath.split('.').pop());","    } catch (err) {","        console.log(`❗ Missing field: ${fieldPath}`);","        throw err;","    }","}","","function validateUrl(fieldPath, value) {","    const urlRegex = /^https?:\\/\\/[^\\s$.?#].[^\\s]*$/;","    pm.expect(urlRegex.test(value), `${fieldPath} is not a valid URL`).to.be.true;","}","","function validateIsoTimestamp(fieldPath, value) {","    const isoRegex = /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}/;","    pm.expect(isoRegex.test(value), `${fieldPath} is not a valid ISO timestamp`).to.be.true;","}","","function validateNotEmpty(fieldPath, value) {","    pm.expect(value, `${fieldPath} should not be empty`).to.not.be.empty;","}","","function validateValue(fieldPath, actualValue, expectedValue) {","    pm.expect(actualValue, `${fieldPath} should be ${expectedValue}`).to.eql(expectedValue);","}","","// --- API Response Tests ---","pm.test(\"Validate api_response core structure\", function () {","    validatePresence(\"api_response\", response);","    const api_response = response.api_response;","","    validatePresence(\"api_data\", api_response);","    validatePresence(\"api_status\", api_response);","    validatePresence(\"api_xstatus\", api_response);","});","","// --- api_data Checks ---","pm.test(\"Validate api_data fields\", function () {","    const api_data = response.api_response.api_data;","    validateType(\"api_response.api_data.restUrl\", api_data.restUrl, 'string');","    validateUrl(\"api_response.api_data.restUrl\", api_data.restUrl);","    validateNotEmpty(\"api_response.api_data.restUrl\", api_data.restUrl);","","    validateType(\"api_response.api_data.BhRestToken\", api_data.BhRestToken, 'string');","    validateNotEmpty(\"api_response.api_data.BhRestToken\", api_data.BhRestToken);","});","","// --- api_status & api_xstatus Checks ---","pm.test(\"Validate api_status and api_xstatus values\", function () {","    const api_response = response.api_response;","    validateType(\"api_response.api_status\", api_response.api_status, 'number');","    validateValue(\"api_response.api_status\", api_response.api_status, 1);","","    validateType(\"api_response.api_xstatus\", api_response.api_xstatus, 'string');","    validateValue(\"api_response.api_xstatus\", api_response.api_xstatus, \"Authenticated\");","});","","// --- api_log (optional) ---","pm.test(\"Validate api_log if populated\", function () {","    const api_log = response.api_response.api_log;","    pm.expect(api_log).to.be.an('object');","","    if (Object.keys(api_log).length > 0) {","        if (api_log.TIMESTAMP) validateIsoTimestamp(\"api_log.TIMESTAMP\", api_log.TIMESTAMP);","        if (api_log.CALL_ATTEMPTS !== undefined) validateType(\"api_log.CALL_ATTEMPTS\", api_log.CALL_ATTEMPTS, 'number');","        if (api_log.CALL_STATUS !== undefined) validateType(\"api_log.CALL_STATUS\", api_log.CALL_STATUS, 'number');","        if (api_log.CALL_REQUEST !== undefined) validateType(\"api_log.CALL_REQUEST\", api_log.CALL_REQUEST, 'string');","        if (api_log.CALL_TIME !== undefined) validateType(\"api_log.CALL_TIME\", api_log.CALL_TIME, 'string');","    } else {","        console.log(\"api_log is empty as expected\");","    }","});","","// --- atsconnect_status ---","pm.test(\"Validate atsconnect_status\", function () {","    validatePresence(\"atsconnect_status\", response);","    validateType(\"atsconnect_status\", response.atsconnect_status, 'number');","    validateValue(\"atsconnect_status\", response.atsconnect_status, 1);","});","","// --- atsconnect_ticket ---","pm.test(\"Validate atsconnect_ticket fields\", function () {","    const ticket = response.atsconnect_ticket;","    validatePresence(\"atsconnect_ticket.api_version\", ticket);","    validatePresence(\"atsconnect_ticket.request\", ticket);","    validatePresence(\"atsconnect_ticket.vendor\", ticket);","    validatePresence(\"atsconnect_ticket.elapsed\", ticket);","    validatePresence(\"atsconnect_ticket.key\", ticket);","    validatePresence(\"atsconnect_ticket.fn\", ticket);","","    validateType(\"atsconnect_ticket.api_version\", ticket.api_version, 'string');","    validateValue(\"atsconnect_ticket.api_version\", ticket.api_version, '1.1');","","    validateType(\"atsconnect_ticket.request\", ticket.request, 'string');","    validateType(\"atsconnect_ticket.vendor\", ticket.vendor, 'string');","    validateValue(\"atsconnect_ticket.vendor\", ticket.vendor, 'bullhorn');","","    validateType(\"atsconnect_ticket.elapsed\", ticket.elapsed, 'string');","    validateType(\"atsconnect_ticket.key\", ticket.key, 'string');","    validateNotEmpty(\"atsconnect_ticket.key\", ticket.key);","","    validateType(\"atsconnect_ticket.fn\", ticket.fn, 'string');","});","","// --- atsconnect_message ---","pm.test(\"Validate atsconnect_message\", function () {","    validatePresence(\"atsconnect_message\", response);","    validateType(\"atsconnect_message\", response.atsconnect_message, 'string');","    validateValue(\"atsconnect_message\", response.atsconnect_message, 'Authenticated');","});","","pm.test(\"Response time is less than 300ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(500);","});",""],"type":"text/javascript","packages":{}}}],"id":"db75d13e-5fce-458c-80cc-2afd066a370b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n\t},\n\t\"api_request_data\":{}\n}"},"url":"{{ats-connect}}/authenticate","description":"<h3 id=\"authentication-and-connection-to-ats\">Authentication and Connection to ATS</h3>\n<p>This endpoint is used for authorization and connection to the ATS (Applicant Tracking System). It returns the API Token and Rest URL upon successful authentication.</p>\n<p><strong>Note:</strong> This process is internal, and the endpoint is available for testing purposes only.</p>\n<h4 id=\"request-payload\">Request Payload</h4>\n<ul>\n<li><p><code>api_connect_data</code> (object)</p>\n<ul>\n<li><p><code>api_connection</code> (object)</p>\n<ul>\n<li><p><code>api_un</code> (string, required) - The username for authentication</p>\n</li>\n<li><p><code>api_pw</code> (string, required) - The password for authentication</p>\n</li>\n<li><p><code>api_id</code> (string, required) - The application ID</p>\n</li>\n<li><p><code>api_secret</code> (string, required) - The application secret</p>\n</li>\n</ul>\n</li>\n<li><p><code>vendor</code> (string) - The ATS vendor</p>\n</li>\n<li><p><code>api_sandbox</code> (boolean, optional) - Indicates if the request is for sandbox testing (default: FALSE)</p>\n</li>\n<li><p><code>api_performance_dump</code> (boolean, optional) - Indicates whether to dump all call details (default: false)</p>\n</li>\n<li><p><code>api_verbose_dump</code> (boolean, optional) - Indicates whether to dump detailed response for a failed call (default: false)</p>\n</li>\n</ul>\n</li>\n<li><p><code>api_request_data</code> (object) - Additional request data (if any)</p>\n</li>\n</ul>\n<h4 id=\"response-json-schema\">Response (JSON Schema)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"api_response\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"api_data\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"status\": { \"type\": \"string\" },\n            \"data\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"restUrl\": { \"type\": \"string\" },\n                \"BhRestToken\": { \"type\": \"string\" }\n              }\n            },\n            \"xstatus\": { \"type\": \"string\" }\n          }\n        },\n        \"api_log\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"CALL_ATTEMPTS\": { \"type\": \"integer\" },\n            \"CALL_STATUS\": { \"type\": \"integer\" },\n            \"CALL_REQUEST\": { \"type\": \"string\" },\n            \"CLIENT_ID\": { \"type\": [\"string\", \"null\"] },\n            \"CALL_TIME\": { \"type\": \"string\" },\n            \"CALL_ACTION\": { \"type\": \"string\" },\n            \"TIMESTAMP\": { \"type\": \"string\" },\n            \"APIKEY\": { \"type\": \"string\" },\n            \"MESSAGE\": { \"type\": \"string\" },\n            \"VENDOR\": { \"type\": \"string\" }\n          }\n        },\n        \"api_status\": { \"type\": \"integer\" }\n      }\n    },\n    \"atsconnect_status\": { \"type\": \"integer\" },\n    \"atsconnect_ticket\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"api_version\": { \"type\": \"string\" },\n        \"request\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"values\": { \"type\": \"string\" },\n            \"call\": { \"type\": \"string\" }\n          }\n        },\n        \"vendor\": { \"type\": \"string\" },\n        \"elapsed\": { \"type\": \"string\" },\n        \"key\": { \"type\": \"string\" },\n        \"fn\": { \"type\": \"string\" }\n      }\n    },\n    \"atsconnect_message\": { \"type\": \"string\" }\n  }\n}\n\n</code></pre>\n<p>Returns the API Token and Rest URL</p>\n\n<p><b>NOTE: This process is internal - this endpoint is available for testing purposes.</b></p>\n\n<ul>\n<li><p>api_un - username - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_pw - password - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_id - application ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_secret - application secret - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e3bfe506-7424-4355-9c7c-0b3c60aedd06","name":"ATS Authorization","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n },\n \"api_request_data\":{}\n}\n"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 23:07:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"510"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199500"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"restUrl\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/\",\n                \"BhRestToken\": \"xxxxxxxxxxxxxxxxxx\"\n            },\n            \"xstatus\": \"Authenticated\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Session Token\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.38932\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T23:07:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest-west9.bullhornstaffing.com/rest-services/login?version=*&access_token=91:xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.781146\",\n        \"key\": \"xxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"db75d13e-5fce-458c-80cc-2afd066a370b"}],"id":"6cc32f2f-37b9-47ce-a8e9-b3a4d06a4bfb","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","_postman_id":"6cc32f2f-37b9-47ce-a8e9-b3a4d06a4bfb"},{"name":"Application","item":[{"name":"Application Set","id":"762ed5a3-90d5-405d-a196-73e24c3456cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\"candidate\":{\"id\":209},\n            \t\"job\":{\"id\":1}\n            }\n }\n}\n"},"url":"{{ats-connect}}/application/set","description":"<p>For creating or updating a candidate application in Bullhorn - job submission. If the application record is already in the system, this call will update that record.</p>\n<ul>\n<li>job<ul>\n<li>id - <strong>REQUIRED</strong> - the job for which the application is being submitted</li>\n</ul>\n</li>\n<li>candidate<ul>\n<li>id - <strong>REQUIRED</strong> - if email is not supplied</li>\n<li>email - <strong>REQUIRED</strong> - if ID is not supplied</li>\n</ul>\n</li>\n<li>attach_note_on_resume_failure - attach note to candidate upon resume failure - <strong>OPTIONAL</strong> - default: true</li>\n<li>api_request_custom - <strong>OPTIONAL</strong> - \"candidate_job_submission\"-(finalization of job subumission - default: false)</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\":{\n            \"api_request_query\":{\n                \"candidate\":{\"id\":209},\n                \"job\":{\"id\":1}\n            }\n }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7a0ceaeb-9bbb-4173-ad65-f4b8a3451b21","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\"candidate\":{\"id\":209},\n            \t\"job\":{\"id\":1}\n            }\n }\n}\n"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 21:27:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"533"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272642"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 654\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobSubmission\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.305341\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-09T21:27:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Applications set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"candidate\\\":{\\\"id\\\":\\\"209\\\"},\\\"status\\\":\\\"New Lead\\\",\\\"dateWebResponse\\\":1578605227000,\\\"jobOrder\\\":{\\\"id\\\":\\\"1\\\"}}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/JobSubmission?BhRestToken=e4d47ede-dcbe-481b-a0bc-30ee310ccd86\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"2.183701\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 or more Applications set\"\n}"}],"_postman_id":"762ed5a3-90d5-405d-a196-73e24c3456cf"},{"name":"Application Get By ID","id":"a1624f6d-d3b0-42ba-b32f-d15ba07318c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \t\"id\": 193\n    }\n  }    \n}\n"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the application ID.</p>\n<ul>\n<li><p>id - <b>REQUIRED</b> - application ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n            \"id\": 193\n    }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"414d9900-08d8-429e-b244-3daa9a0b5114","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \t\"id\": 193\n    }\n  }    \n}\n"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 14:51:33 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"689"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272528"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"count\": 1,\n                \"applications\": [\n                    {\n                        \"referral_source\": null,\n                        \"candidate\": {\n                            \"status\": \"New Lead\",\n                            \"id\": 202,\n                            \"last_name\": \"Test082516\",\n                            \"first_name\": \"Test1\"\n                        },\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"_subtype\": \"CorporateUser\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"id\": 193,\n                        \"note\": null,\n                        \"job\": {\n                            \"title\": \"Office Manager\",\n                            \"id\": 3\n                        }\n                    }\n                ]\n            },\n            \"xstatus\": \"1 or more Applications received\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobSubmission\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.588733\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T14:51:34\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/JobSubmission/193?fields=id,status,candidate,jobOrder,comments,source,sendingUser&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.642732\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 or more Applications received\"\n}"}],"_postman_id":"a1624f6d-d3b0-42ba-b32f-d15ba07318c3"},{"name":"Application Get","id":"9502d9cc-c81d-4a56-b919-04a7469d8c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n        \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n        \"vendor\":\"bullhorn\",\r\n        \"api_sandbox\":1,\r\n        \"api_performance_dump\":0,\r\n        \"api_verbose_dump\":0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"candidate\": {\r\n        \"id\": 744\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving application submission data for a specific candidate.</p>\n<ul>\n<li>candidate<ul>\n<li>id - <b>REQUIRED</b> - if email is not supplied</li>\n<li>email - <b>REQUIRED</b> - if ID is not supplied</li>\n</ul>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"candidate\": {\n        \"id\": 193\n      }\n    }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bcc972de-7b6f-4182-a8f9-f30e7c6db72f","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n        \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n        \"vendor\":\"bullhorn\",\r\n        \"api_sandbox\":1,\r\n        \"api_performance_dump\":0,\r\n        \"api_verbose_dump\":0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"candidate\": {\r\n        \"id\": 193\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 14:48:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"729"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272525"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"count\": 3,\n                \"applications\": [\n                    {\n                        \"candidate\": {\n                            \"status\": \"New Lead\",\n                            \"id\": 193,\n                            \"last_name\": \"Test071416\",\n                            \"first_name\": \"Test4\"\n                        },\n                        \"rep_user\": {\n                            \"id\": 490,\n                            \"last_name\": \"2017\",\n                            \"first_name\": \"Hayley Marketing\"\n                        },\n                        \"id\": 644,\n                        \"job\": {\n                            \"title\": \"Job Number Five\",\n                            \"id\": 5\n                        }\n                    },\n                    {\n                        \"candidate\": {\n                            \"status\": \"New Lead\",\n                            \"id\": 193,\n                            \"last_name\": \"Test071416\",\n                            \"first_name\": \"Test4\"\n                        },\n                        \"rep_user\": {\n                            \"id\": 2,\n                            \"last_name\": \"Marketing\",\n                            \"first_name\": \"Haley\"\n                        },\n                        \"id\": 640,\n                        \"job\": {\n                            \"title\": \"Social Media Marketing Advisor\",\n                            \"id\": 4\n                        }\n                    },\n                    {\n                        \"candidate\": {\n                            \"status\": \"Submitted\",\n                            \"id\": 193,\n                            \"last_name\": \"Test071416\",\n                            \"first_name\": \"Test4\"\n                        },\n                        \"rep_user\": {\n                            \"id\": 2,\n                            \"last_name\": \"Marketing\",\n                            \"first_name\": \"Haley\"\n                        },\n                        \"id\": 191,\n                        \"job\": {\n                            \"title\": \"Office Manager\",\n                            \"id\": 3\n                        }\n                    }\n                ]\n            },\n            \"xstatus\": \"1 or more Applications received\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobSubmission\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.43893,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T14:48:54\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/JobSubmission/191,644,640?showEditable=0&meta=off&fields=id,status,candidate,jobOrder,comments,source,sendingUser&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.414181\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 or more Applications received\"\n}"}],"_postman_id":"9502d9cc-c81d-4a56-b919-04a7469d8c81"},{"name":"Application Set By ID","id":"ddc11635-6d33-4021-a4ea-72aee70cf92e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n        \"api_request_custom\":{\n            \"source\":\"Test\",\n            \"comments\":\"This is a test\"\n        },\n    \"api_request_query\": {\n      \"candidate\": {\n        \"id\": 309\n      },\n      \"job\": {\n      \t\"id\": 4\n      }\n    }        \n }\n}\n"},"url":"{{ats-connect}}/application/set","description":"<p>For updating a candidate application - job submission</p>\n<ul>\n<li><p>source - <b>OPTIONAL</b> - Source of the JobSubmission</p>\n</li>\n<li><p>comments - <b>OPTIONAL</b> - Comments</p>\n</li>\n<li><p>api_request_custom - <b>OPTIONAL</b></p>\n</li>\n</ul>\n","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bd1f62bd-1475-4a23-8f0c-2285a1eb2797","name":"Application Set By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n        \"api_request_custom\":{\n            \"source\":\"Test\",\n            \"comments\":\"This is a test\"\n        },\n    \"api_request_query\": {\n      \"candidate\": {\n        \"id\": \"540\"\n      },\n      \"job\": {\n      \t\"id\": 4\n      }\n    }        \n }\n}\n"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 13:10:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"574"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272470"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"id\": 651\n            },\n            \"xstatus\": \"1 or more Applications set\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobSubmission\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.256286\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-09T13:10:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"source\\\":\\\"Test\\\",\\\"candidate\\\":{\\\"id\\\":\\\"540\\\"},\\\"status\\\":\\\"New Lead\\\",\\\"dateWebResponse\\\":1578575451000,\\\"jobOrder\\\":{\\\"id\\\":\\\"4\\\"},\\\"comments\\\":\\\"This is a test\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/JobSubmission?BhRestToken=61ea9e32-c9cc-4f78-87d8-b55689fa6845\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"2.037693\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 or more Applications set\"\n}"}],"_postman_id":"ddc11635-6d33-4021-a4ea-72aee70cf92e"}],"id":"e775ebee-85d5-45f5-89f4-9137dbd466a1","_postman_id":"e775ebee-85d5-45f5-89f4-9137dbd466a1","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","event":[{"listen":"test","script":{"id":"810db2db-6a96-4570-a47a-3c9c69a6f213","exec":["const response = pm.response.json();","const requestBody = pm.request.body ? JSON.parse(pm.request.body.raw) : {};","const requestQuery = requestBody.api_request_data.api_request_query || {};","const requestFields = requestBody.api_request_data.api_request_fields || '';","const candidates = response?.api_response?.api_data?.candidates || [];","","const apiStatus = response?.api_response?.api_status;","const apiXStatus = response?.api_response?.api_xstatus;","const atsconnectStatus = response?.atsconnect_status;","const atsconnectMessage = response?.atsconnect_message;","","// --- Core API Response Checks ---","pm.test(\"API Status should be 1 (Success)\", function () {","    pm.expect(apiStatus).to.eql(1);","});","","pm.test(\"atsconnect_status should be 1 (Success)\", function () {","    pm.expect(atsconnectStatus).to.eql(1);","});","","pm.test(\"atsconnect_message should match api_xstatus\", function () {","    pm.expect(atsconnectMessage).to.eql(apiXStatus);","});","","// --- Candidate Data Checks ---","pm.test(\"Response should contain candidates array (or empty if none)\", function () {","    pm.expect(candidates).to.be.an('array');","});","","// --- Edge Case: No candidates returned ---","pm.test(\"If no candidates, count should be 0 or candidates array should be empty\", function () {","    const count = response?.api_response?.api_data?.count;","    if (candidates.length === 0) {","        pm.expect(count).to.eql(0);","    } else {","        pm.expect(count).to.eql(candidates.length);","    }","});","","// --- Edge Case: Invalid or empty api_request_query should still return valid structure ---","pm.test(\"Response structure should be valid even if api_request_query is empty\", function () {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response.api_response).to.have.property(\"api_data\");","    pm.expect(response.api_response).to.have.property(\"api_log\");","});","","// --- Validate Query Reflection ---","pm.test(\"Validate api_request_query values reflected in candidates (if present) - lenient\", function () {","    candidates.forEach((candidate, index) => {","        Object.keys(requestQuery).forEach(key => {","            const expectedValueRaw = requestQuery[key];","            let expectedValue = expectedValueRaw === undefined || expectedValueRaw === null ? \"\" : expectedValueRaw.toString();","","            let actualValue = \"\";","            if (candidate.hasOwnProperty(key)) {","                actualValue = candidate[key] ?? \"\";","            } else if (candidate.api_request_custom && candidate.api_request_custom.hasOwnProperty(key)) {","                actualValue = candidate.api_request_custom[key] ?? \"\";","            }","","            actualValue = actualValue.toString();","","            if (actualValue === \"\") {","                console.warn(`Warning: Candidate index ${index} has empty value for '${key}', expected '${expectedValue}'. Skipping failure.`);","            } else {","                pm.expect(actualValue, `Mismatch in api_request_query value for '${key}' in candidate index ${index}`)","                  .to.eql(expectedValue);","            }","        });","    });","});","","","","// --- Validate Fields Presence ---","pm.test(\"Validate api_request_fields presence in candidates (if any)\", function () {","    if (requestFields) {","        const fields = requestFields.split(',').map(f => f.trim());","        candidates.forEach((candidate, index) => {","            fields.forEach(field => {","                // Check if field is top-level or inside api_request_custom","                if (candidate.hasOwnProperty(field)) {","                    pm.expect(candidate).to.have.property(field);","                } else if (candidate.api_request_custom && candidate.api_request_custom.hasOwnProperty(field)) {","                    pm.expect(candidate.api_request_custom).to.have.property(field);","                } else {","                    pm.expect.fail(`Missing field '${field}' in candidate index ${index}`);","                }","            });","        });","    }","});","","// --- Validate Data Types for Key Fields ---","pm.test(\"Validate key fields types in candidates\", function () {","    candidates.forEach((candidate, index) => {","        pm.expect(candidate.id, `Candidate id should be a number at index ${index}`).to.be.a('number');","        pm.expect(candidate.first_name, `Candidate first_name should be a string at index ${index}`).to.be.a('string');","        pm.expect(candidate.last_name, `Candidate last_name should be a string at index ${index}`).to.be.a('string');","        pm.expect(candidate.email, `Candidate email should be a string at index ${index}`).to.be.a('string');","        pm.expect(candidate.address, `Candidate address should be an object at index ${index}`).to.be.an('object');","    });","});","","// --- Edge Case: Empty strings and null values ---","pm.test(\"Validate fields are not unexpectedly null or empty strings (optional)\", function () {","    candidates.forEach((candidate, index) => {","        Object.keys(candidate).forEach(field => {","            if (candidate[field] === \"\" || candidate[field] === null) {","                console.log(`🔍 Warning: Field '${field}' is empty or null in candidate index ${index}`);","            }","        });","    });","});","","// --- Deep Structure Checks ---","pm.test(\"Validate nested address and category structure\", function () {","    candidates.forEach((candidate, index) => {","        const address = candidate.address;","        pm.expect(address).to.have.property('country');","        pm.expect(address).to.have.property('city');","        pm.expect(address).to.have.property('zip');","        pm.expect(address).to.have.property('state');","","        const category = candidate.category;","        pm.expect(category).to.have.property('name');","        pm.expect(category).to.have.property('id');","    });","});","","// --- Edge Case: categories array consistency ---","pm.test(\"Validate categories.data is an array, total matches its length\", function () {","    candidates.forEach((candidate, index) => {","        const categories = candidate.categories;","        if (categories && categories.data) {","            pm.expect(categories.data).to.be.an('array');","            pm.expect(categories.total).to.eql(categories.data.length);","        }","    });","});","","// --- Log Errors for Mismatched Fields ---","candidates.forEach((candidate, index) => {","    Object.keys(requestQuery).forEach(key => {","        if (candidate.api_request_custom[key] !== requestQuery[key]) {","            console.log(`❗ Mismatch for api_request_query '${key}' in candidate index ${index}: Expected ${requestQuery[key]}, Found ${candidate.api_request_custom[key]}`);","        }","    });","    if (requestFields) {","        requestFields.split(',').map(f => f.trim()).forEach(field => {","            if (!(field in candidate)) {","                console.log(`❗ Missing field '${field}' in candidate index ${index}`);","            }","        });","    }","});","","pm.test(\"Response time is less than 1500ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});"],"type":"text/javascript","packages":{}}}],"id":"3a56022c-bcc5-47f4-8ad8-59fabd9753cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"customText1\":\"1\"\n                },\n                \"api_request_fields\": \"customText12\"\n    }\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all candidate data.</p>\n\n<ul>\n<li>api_request_fields - <b>OPTIONAL</b></li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{},\n                \"api_request_fields\": \"id email firstName lastName address comments\"               \n    }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0ee052e3-96d0-4e33-8123-bfdd65c4af5c","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n            \t\t\"email\":\"test5@Test071316.com\"\n                },\n                \"api_request_fields\": \"id email firstName lastName address comments\"               \n    }\n}\n"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 16:15:35 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"989"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272564"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"count\": 1,\n                \"candidates\": [\n                    {\n                        \"referral_source\": \"\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"Test071316\",\n                        \"email\": \"test5@Test071316.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"address\": {\n                            \"country\": \"CA\",\n                            \"zip\": \"04563\",\n                            \"city\": \"Portland\",\n                            \"address1\": \"123 Any Street\",\n                            \"state\": \"MAINE\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": \"180\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"555-555-5555\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"07/13/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"api_request_custom\": {\n                            \"comments\": \"\"\n                        },\n                        \"first_name\": \"Test5\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 candidate returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.66841,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T16:15:36\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=100&query=isDeleted:false AND email:test5@Test071316.com&showEditable=false&meta=off&sort=-xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.756943\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"3a56022c-bcc5-47f4-8ad8-59fabd9753cd"},{"name":"Candidate Get By ID","event":[{"listen":"test","script":{"id":"acde8090-1888-4e8a-afbf-bae56eb0ef16","exec":["// Extract response","const response = pm.response.json();","","// Validate high-level API structure","pm.test(\"Validate response structure\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// Validate candidate data if present","const candidates = response.api_response.api_data?.candidates || [];","const queryId = pm.variables.get(\"candidate_id\") || 1611; // Adjust variable name as per Postman collection","","if (candidates.length > 0) {","    // Validate single candidate returned","    pm.test(\"Validate exactly 1 candidate returned\", () => {","        pm.expect(candidates.length).to.eql(1);","    });","","    const candidate = candidates[0];","","    // Validate candidate fields","    pm.test(\"Validate candidate field structure & data types\", () => {","        const fieldChecks = [","            { key: \"pay_rate\", type: \"string\" },","            { key: \"skills\", type: \"string\" },","            { key: \"company_name\", type: \"string\" },","            { key: \"date_of_birth\", type: \"string\" },","            { key: \"veteran\", type: \"string\" },","            { key: \"comments\", type: \"string\" },","            { key: \"ethnicity\", type: \"string\" },","            { key: \"email\", type: \"string\" },","            { key: \"file_name\", type: \"string\" },","            { key: \"category\", type: \"object\" },","            { key: \"address\", type: \"object\" },","            { key: \"id\", type: \"string\" }, // Accept string for id","            { key: \"description\", type: \"string\" },","            { key: \"cell_phone\", type: \"string\" },","            { key: \"sms_opt_in\", type: \"string\" },","            { key: \"disability\", type: \"string\" },","            { key: \"title\", type: \"string\" },","            { key: \"type\", type: \"string\" },","            { key: \"referral_source\", type: \"string\" },","            { key: \"status\", type: \"string\" },","            { key: \"last_name\", type: \"string\" },","            { key: \"opt_out\", type: \"string\" },","            { key: \"gender\", type: \"string\" },","            { key: \"washed_status\", type: \"string\" },","            { key: \"referral_source_id\", type: \"string\" },","            { key: \"file_data\", type: \"string\" },","            { key: \"categories\", type: \"object\" },","            { key: \"phone\", type: \"string\" },","            { key: \"branch\", type: \"string\" },","            { key: \"mime_type\", type: \"string\" },","            { key: \"date_added\", type: \"string\" },","            { key: \"rep_user\", type: \"object\" },","            { key: \"first_name\", type: \"string\" }","        ];","","        fieldChecks.forEach(f => {","            pm.expect(candidate).to.have.property(f.key);","            pm.expect(typeof candidate[f.key]).to.eql(f.type);","        });","    });","","    // Validate nested fields","    pm.test(\"Validate nested field: category\", () => {","        pm.expect(candidate.category).to.have.property(\"name\").that.is.a(\"string\");","        pm.expect(candidate.category).to.have.property(\"id\").that.is.a(\"number\");","    });","","    pm.test(\"Validate nested field: address\", () => {","        const addressFields = [\"country\", \"zip\", \"city\", \"address1\", \"state\", \"address2\"];","        addressFields.forEach(f => {","            pm.expect(candidate.address).to.have.property(f);","            pm.expect(typeof candidate.address[f]).to.eql(\"string\");","        });","    });","","    pm.test(\"Validate nested field: categories\", () => {","        pm.expect(candidate.categories).to.have.property(\"data\").that.is.an(\"array\");","        pm.expect(candidate.categories).to.have.property(\"total\").that.is.a(\"number\");","    });","","    pm.test(\"Validate nested field: rep_user\", () => {","        pm.expect(candidate.rep_user).to.have.property(\"firstName\").that.is.a(\"string\");","        pm.expect(candidate.rep_user).to.have.property(\"lastName\").that.is.a(\"string\");","        pm.expect(candidate.rep_user).to.have.property(\"id\");","    });","","    // Validate candidate ID matches the query ID","    pm.test(\"Validate candidate ID matches request query\", () => {","        pm.expect(candidate.id.toString()).to.eql(queryId.toString());","    });","","} else {","    // No candidates returned case","    pm.test(\"No candidate found for given ID\", () => {","        pm.expect(response.api_response.api_data.count).to.eql(0);","        pm.expect(candidates).to.be.an(\"array\").that.is.empty;","    });","}","","// Validate API status","pm.test(\"Validate API Status\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.atsconnect_status).to.eql(1);","});","","pm.test(\"Response time is less than 1000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript","packages":{}}}],"id":"4e9dfa29-aeef-4eb7-9844-4946e4650e41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 1611\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data via their candidate ID.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_request_query\":{\n                \"id\": 193\n        }\n    }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"26f8e434-ec64-46ee-81cb-fd0c25c5dec4","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 193\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 16:59:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"959"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272594"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"Test\",\n                    \"pay_rate\": \"\",\n                    \"skills\": \"\",\n                    \"date_of_birth\": \"01/09/2020\",\n                    \"veteran\": \"\",\n                    \"ethnicity\": \"\",\n                    \"last_name\": \"Test071416\",\n                    \"opt_out\": \"\",\n                    \"email\": \"test4@Test071416.com\",\n                    \"resume_html\": \"\",\n                    \"category\": {\n                        \"name\": \"Other Area(s)\",\n                        \"id\": 846574\n                    },\n                    \"id\": \"193\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"\",\n                        \"city\": \"\",\n                        \"address1\": \"123 Any Street\",\n                        \"state\": \"\",\n                        \"address2\": \"\"\n                    },\n                    \"gender\": \"\",\n                    \"categories\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 846574\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"phone\": \"555-123-456\",\n                    \"description\": \"\",\n                    \"cell_phone\": \"\",\n                    \"disability\": \"\",\n                    \"date_added\": \"07/14/2016\",\n                    \"title\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"type\": \"Permanent\",\n                    \"first_name\": \"Test4\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.715098,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T16:59:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=100&query=isDeleted:false AND id:193&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.802939\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"4e9dfa29-aeef-4eb7-9844-4946e4650e41"},{"name":"Candidate Search","id":"948a4a33-696e-4bcb-8f67-97134fb16323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"search_range\" : {\n                        // \"field\" : \"dateAdded\",\n                        \"field\" : \"dateLastModified\",\n                        \"value_1\" : \"06/29/2025\",\n                        \"value_2\" : \"07/02/2025\"\n                    },\n                    \"isDeleted\": \"true\"\n                },\n                \"api_request_fields\": \"dateLastModified,isDeleted\"\n    }\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>Searching for candidate data based off of query parameters. NOTE: will accept default keys as well as ATS specific fields</p>\n\n<p><b>NOTE:</b>There are two kinds of search filters:</p>\n\n<p><b>Range Search:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>            \"api_request_query\":{\n                        \"search_range\":{\n                                    \"field\":\"dateAdded\",\n                                    \"value_1\":\"01/18/2016\",\n                                    \"value_2\":\"09/05/2016\"\n                        }\n            }\n\n</code></pre><p><b>Filter Matching:</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>            \"api_request_query\":{\n                        \"lastName\":\"Test1\"\n            }\n\n</code></pre><ul>\n<li><p>api_request_fields - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>api_request_query - <strong>REQUIRED</strong> - hash with key:value pairs signifying the values the call wants to query (custom API fields allowed)</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ee43a50b-db89-46e8-957f-a91888044539","name":"Candidate Search","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"lastName\":\"test1\"\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 16:17:17 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"8021"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199731"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"count\": 120,\n                \"candidates\": [\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"opt_out\": \"\",\n                        \"email\": \"tshoemaker12519-1@haleymarketing.com\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 750,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"zip\": \"70543\",\n                            \"city\": \"Milltown\",\n                            \"address1\": \"10 Paper Road\",\n                            \"state\": \"MA\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"<HTML>\\r\\n<HEAD>\\r\\n<!-- saved from url=(0014)about:internet --><META HTTP-EQUIV=\\\"Content-Type\\\" CONTENT=\\\"text/html; charset=utf-8\\\">\\r\\n<style>\\r\\n\\tp.std   { margin-top: 0; margin-bottom: 0; border: 0 0 0 0; }\\r\\n</style>\\r\\n</HEAD>\\r\\n<BODY>\\r\\n\\n<!-- [[[ PDF.Page-->\\n<BR>\\nAmanda Billings <BR>\\n10 Paper Road â\\u0080¢ Milltown, MA 70543 â\\u0080¢ (555) 123-1234 â\\u0080¢ amanda_billings@email.com <BR>\\nACCOUNTING MANAGER <BR>\\nHighly organized and diligent professional drawing upon ten years of experience in accounting and finance <BR>\\nto contribute to smooth and productive operations. Collaborate cross-functionally across organizational <BR>\\nlevels to build consensus, track benchmark achievement, and troubleshoot emerging issues. &nbsp;<BR>\\n- Core Competencies - <BR>\\nâ\\u0080¢ Bookkeeping: AP, AR, Account Reconciliations, <BR>\\nPayroll <BR>\\nâ\\u0080¢ Oral and Written Communications <BR>\\nâ\\u0080¢ Federal and State Tax Preparation <BR>\\nâ\\u0080¢ Office Administration <BR>\\nâ\\u0080¢ Positive Teamwork and Collaboration <BR>\\nâ\\u0080¢ QuickBooks and Microsoft Office Suite <BR>\\nPROFESSIONAL EXPERIENCE <BR>\\nBarclay Professional Accounting Services, Inc., Milltown, MA <BR>\\nPractice Manager (October 2014 â\\u0080\\u0093 Present) <BR>\\nHandle and optimize all administrative operations for 7-physician medical practice. Scope of <BR>\\nresponsibilities includes: accounts receivable / payable, accounting, budget review, and preparation of <BR>\\nfinancials for CPA. Selected Contributions: <BR>\\nâ\\u0080¢ Eliminated backlog in financial reporting responsibilities within 25 days of initial hiring . <BR>\\nâ\\u0080¢ Successfully project-managed acquisition and installation of state-of-the-art healthcare billing <BR>\\nsoftware that reduced errors by 30%. <BR>\\nReddington Hardware , Wellington, MA <BR>\\nAccountant (August 2008 â\\u0080\\u0093 October 2014) <BR>\\nSkillfully performed all office accounting tasks for small hardware store. Gathered and analyzed financial <BR>\\ndata, and processed accounts payable, accounts receivable, and payroll for workforce of 35 personnel. <BR>\\nSelected Contributions: <BR>\\nâ\\u0080¢ Created monthly and annual budget and forecast reports that contributed to a 5% decrease in <BR>\\nannual expenditures . <BR>\\nâ\\u0080¢ Migrated accounting system to a new software provider and integrated all accounting, <BR>\\nbookkeeping, tax, and payroll functions into the new system. <BR>\\nEDUCATION &amp; CREDENTIALS <BR>\\nVermont State College , Rutland, VT <BR>\\nBachelor of Science in Accounting, 2007 <BR>\\nGraduated Magna cum Laude &nbsp;<BR>\\n&nbsp;<BR> \\n<BR>\\n\\n<!-- ]]] PDF.Page-->\\n<P style=\\\"page-break-before:always; border-top-style: dashed; border-top-width:thin; color:silver; \\\" ></P></BODY></HTML>\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"12/05/2019\",\n                        \"title\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"type\": \"\",\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker12519@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 749,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Milltown\",\n                            \"zip\": \"70543\",\n                            \"address1\": \"10 Paper Road\",\n                            \"state\": \"MA\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; line-height:115%; font-size:24pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; font-weight:bold\\\">Amanda Billings</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; line-height:115%; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">10 Paper Road â\\u0080¢ Milltown, MA 70543 â\\u0080¢ (555) 123-1234 â\\u0080¢ amanda_billings@email.com</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:2pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:18pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">ACCOUNTING MANAGER</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:9pt; margin-bottom:0pt; text-align:justify; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<a name=\\\"_Hlk522525703\\\"><span style=\\\"font-family:Helvetica\\\">Highly organized and diligent professional drawing upon ten years of experience in accounting and finance to contribute to smooth and productive operations. Collaborate cross-functionally across organizational levels to build consensus, track benchmark achievement, and troubleshoot emerging issues. </span></a>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:6pt; margin-bottom:6pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">- Core Competencies -</span></p>\\r\\n\\t\\t\\t<div style=\\\"text-align:center\\\">\\r\\n\\t\\t\\t\\t<table cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" style=\\\"width:100.68%; margin-right:auto; margin-left:auto; border-collapse:collapse\\\">\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td style=\\\"width:261.9pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:top\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Bookkeeping: AP, AR, Account Reconciliations, Payroll</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Oral and Written Communications</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Federal and State Tax Preparation</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t<td style=\\\"width:242.05pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:top\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Office Administration</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Positive Teamwork and Collaboration</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">QuickBooks and Microsoft Office Suite</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t</div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:10pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:18pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">PROFESSIONAL EXPERIENCE</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:12pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"-aw-bookmark-end:_Hlk522525703\\\"></span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">Barclay Professional Accounting Services, Inc.,</span><span style=\\\"font-family:Helvetica\\\"> Milltown, MA</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Practice Manager</span><span style=\\\"font-family:Helvetica\\\"> (October 2014 â\\u0080\\u0093 Present)</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Handle and optimize all administrative operations for 7-physician medical practice. Scope of responsibilities includes: accounts receivable / payable, accounting, budget review, and preparation of financials for CPA. </span><span style=\\\"font-family:Helvetica; font-style:italic\\\">Selected Contributions:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Eliminated backlog in financial reporting responsibilities within </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">25 days of initial hiring</span><span style=\\\"font-family:Helvetica\\\">.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt; font-variant:small-caps\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Successfully project-managed acquisition and installation of state-of-the-art healthcare billing software that reduced errors </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">by 30%.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:18pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-weight:bold\\\">Reddington Hardware</span><span style=\\\"font-family:Helvetica\\\">, Wellington, MA</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Accountant</span><span style=\\\"font-family:Helvetica\\\"> (August 2008 â\\u0080\\u0093 October 2014)</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Skillfully performed all office accounting tasks for small hardware store. Gathered and analyzed financial data, and processed accounts payable, accounts receivable, and payroll for workforce of 35 personnel. </span><span style=\\\"font-family:Helvetica; font-style:italic\\\">Selected Contributions:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Created monthly and annual budget and forecast reports that contributed to a </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">5% decrease in annual expenditures</span><span style=\\\"font-family:Helvetica\\\">.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Migrated accounting system to a new software provider and integrated all accounting, bookkeeping, tax, and payroll functions into the new system.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:10pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:20pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">EDUCATION &amp; CREDENTIALS</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-weight:bold\\\">Vermont State College</span><span style=\\\"font-family:Helvetica\\\">, Rutland, VT</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Bachelor of Science in Accounting, 2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Graduated Magna cum Laude </span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; line-height:115%; widows:0; orphans:0; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; color:#4472c4\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<div style=\\\"-aw-headerfooter-type:footer-primary\\\">\\r\\n\\t\\t\\t\\t<p style=\\\"margin-top:4pt; margin-bottom:0pt; text-align:center; font-size:10pt\\\">\\r\\n\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">â\\u0080¦continuedâ\\u0080¦</span>\\r\\n\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t</div>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"12/05/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakertest1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 742,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/31/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemake@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 738,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/31/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tiffany@halemarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 737,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/31/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tiffany@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 735,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/30/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms10102019@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 734,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/10/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker09166@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 726,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/16/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tiffany09161@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 720,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/16/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker09161@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 719,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/16/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker030719@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 718,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/07/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker030519-2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 714,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"7166318981\",\n                        \"description\": \"<HTML>\\r\\n<HEAD>\\r\\n<!-- saved from url=(0014)about:internet --><META HTTP-EQUIV=\\\"Content-Type\\\" CONTENT=\\\"text/html; charset=utf-8\\\">\\r\\n<style>\\r\\n\\tp.std   { margin-top: 0; margin-bottom: 0; border: 0 0 0 0; }\\r\\n</style>\\r\\n</HEAD>\\r\\n<BODY>\\r\\n\\n<!-- [[[ PDF.Page-->\\n<BR>\\ntest test1 <BR>\\n94 North Transit Road <BR>\\nLockport, NY 14094 <BR>\\n(555) 555-5555 <BR>\\nt_foltz@yahoo.com <BR>\\n&nbsp;&nbsp;<BR>\\n&nbsp;<BR>\\nEducation: State University of New York at Buffalo <BR>\\n&nbsp;&nbsp;Master of Science in Nursing, Anticipated May 2008 <BR>\\nFamily Nurse Practitioner &nbsp;<BR>\\n&nbsp;&nbsp;Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter &nbsp;<BR>\\n&nbsp;&nbsp;Daemen College <BR>\\n&nbsp;&nbsp;Bachelor of Science in Nursing, May 2005 <BR>\\n&nbsp;&nbsp;Summa cum Laude <BR>\\n&nbsp;<BR>\\n&nbsp;&nbsp;Erie Community College <BR>\\n&nbsp;&nbsp;Associate of Applied Science in Nursing, January 2003 <BR>\\n&nbsp;&nbsp;Magna cum Laude <BR>\\n&nbsp;&nbsp;Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter &nbsp;<BR>\\n&nbsp;&nbsp;Ithaca College &nbsp;&nbsp;&nbsp;<BR>\\n&nbsp;&nbsp;Bachelor of Science in Health Information Administration, May 1997 &nbsp;Nurse Practitioner Experience: &nbsp;&nbsp;&nbsp;<BR>\\n&nbsp;&nbsp;Hamilton B. Mizer Primary Care &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8/2007 â\\u0080\\u0093 12/2007 <BR>\\n&nbsp;&nbsp;Niagara Falls, NY &nbsp;<BR>\\n&nbsp;&nbsp;Preceptor: &nbsp;Wendy Bissell FNP &nbsp;<BR>\\n&nbsp;&nbsp;Newfane Family Medicine &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1/2007 â\\u0080\\u0093 8/2007 <BR>\\n&nbsp;&nbsp;Newfane, NY <BR>\\n&nbsp;&nbsp;Preceptor: &nbsp;Maggie Desmarais FNP &nbsp;<BR>\\nWork Experience: &nbsp;<BR>\\n&nbsp;&nbsp;Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7/2003 â\\u0080\\u0093 present <BR>\\n&nbsp;&nbsp;Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present <BR>\\n&nbsp;&nbsp;Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005 <BR>\\n&nbsp;&nbsp;Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004 &nbsp;<BR>\\n&nbsp;&nbsp;Buffalo Cardiology and Pulmonary Associates &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9/1998 â\\u0080\\u0093 1/2006 <BR>\\n&nbsp;&nbsp;Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006 <BR>\\n&nbsp;&nbsp;Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003 &nbsp;<BR>\\n&nbsp;&nbsp;<BR> \\n<BR>\\n\\n<!-- ]]] PDF.Page-->\\n<P style=\\\"page-break-before:always; border-top-style: dashed; border-top-width:thin; color:silver; \\\" ></P></BODY></HTML>\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/05/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker022719@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 711,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/27/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms022619-1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 709,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/26/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test test1\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker222-1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 706,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/22/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker222-0@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 705,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Tiffany Shoemaker</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">94 North Transit Road</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Lockport, NY 14094&#xa0;</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">(555) 555-5555</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<a href=\\\"#sanitized\\\" style=\\\"text-decoration:none\\\"><span style=\\\"font-family:'Times New Roman'; font-weight:bold; text-decoration:underline; color:#0000ff\\\">tshoemaker020519-1@haleymarketing.com</span></a>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Education:</span><span style=\\\"width:20.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">State University of New York at Buffalo</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Master of Science in Nursing, Anticipated May 2008</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:36pt; margin-bottom:0pt; text-indent:36pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">Family Nurse Practitioner </span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Daemen College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Nursing, May 2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Summa cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Erie Community College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Associate of Applied Science in Nursing, January 2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Magna cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Ithaca College</span><span style=\\\"width:4.49pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Health Information Administration, May 1997</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Nurse Practitioner Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Hamilton B. Mizer Primary Care</span><span style=\\\"width:23.3pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           8/2007 â\\u0080\\u0093 12/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Niagara Falls, NY</span><span style=\\\"width:27.66pt; display:inline-block\\\"></span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Wendy Bissell FNP</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Newfane Family Medicine</span><span style=\\\"width:21.2pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             1/2007 â\\u0080\\u0093 8/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Newfane, NY</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Maggie Desmarais FNP</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Work Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  </span><span style=\\\"width:35.35pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           7/2003 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Buffalo Cardiology and Pulmonary Associates</span><span style=\\\"width:35.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             9/1998 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/22/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker011418@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 693,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/14/2019\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker13@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 690,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"7166398621\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/13/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker48@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 688,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"5552007497\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker26@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 687,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"5552007497\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker147@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 684,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker963@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 681,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker852@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 680,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker741@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 679,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker7895@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 678,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker789@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 676,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker1231@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 675,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/12/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker1234@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 674,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/11/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker-doc@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 667,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"Tiffany Shoemaker\\r\\n6028 Sheridan Drive\\r\\nWilliamsville, NY 14221\\r\\n888-696-2900\\r\\ntshoemaker@haleymarketing.com\\r\\nVersion 2\\r\\n\\r\\nEducation:\\tState University of New York at Buffalo\\r\\n\\t\\tMaster of Science in Nursing, Anticipated May 2008\\r\\nFamily Nurse Practitioner\\r\\n\\t\\tMember, Sigma Theta Tau Honor Society, Gamma Kappa chapter\\r\\n\\r\\n\\t\\tDaemen College\\r\\n\\t\\tBachelor of Science in Nursing, May 2005\\r\\n\\t\\tSumma cum Laude\\r\\n\\r\\n\\t\\tErie Community College\\r\\n\\t\\tAssociate of Applied Science in Nursing, January 2003\\r\\n\\t\\tMagna cum Laude\\r\\n\\t\\tMember, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter\\r\\n\\r\\n\\t\\tIthaca College\\r\\n\\t\\tBachelor of Science in Health Information Administration, May 1997\\r\\n\\r\\nNurse Practitioner Experience:\\r\\n\\r\\n\\t\\tHamilton B. Mizer Primary Care\\t\\t\\t           8/2007 â\\u0080\\u0093 12/2007\\r\\n\\t\\tNiagara Falls, NY\\r\\n\\t\\tPreceptor:  Wendy Bissell FNP\\r\\n\\r\\n\\t\\tNewfane Family Medicine\\t\\t\\t\\t             1/2007 â\\u0080\\u0093 8/2007\\r\\n\\t\\tNewfane, NY\\r\\n\\t\\tPreceptor:  Maggie Desmarais FNP\\r\\n\\r\\nWork Experience:\\r\\n\\r\\n\\t\\tKaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  \\t           7/2003 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005\\r\\n\\t\\tNurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004\\r\\n\\r\\n\\t\\tBuffalo Cardiology and Pulmonary Associates\\t             9/1998 â\\u0080\\u0093 1/2006\\r\\n\\t\\tNurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006\\r\\n\\t\\tHealth Information Analyst, 9/1998 â\\u0080\\u0093 9/2003\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/08/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakertest2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 666,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/24/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker050818-06@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 665,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/08/2018\",\n                        \"title\": \"\",\n                        \"type\": \"\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker112817-1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 654,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/28/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker112817@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 653,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/28/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker112717-3@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 650,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/27/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker112717-1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 648,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/27/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker112717@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 647,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/27/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker111517-3@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 624,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/15/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker111517-2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 623,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/15/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker111517-1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 622,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/15/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker111517@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 621,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/15/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"test\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker111417@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 616,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"11/14/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"test\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker091817-03@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 542,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"09/18/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"referral\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"P\",\n                        \"ethnicity\": \"AI\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker091817-02@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 541,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"M\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"Y\",\n                        \"date_added\": \"09/18/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"P\",\n                        \"ethnicity\": \"B\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker091817-01@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 540,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"M\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"Y\",\n                        \"date_added\": \"09/18/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"C\",\n                        \"ethnicity\": \"C\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker091817@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 539,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"C\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"C\",\n                        \"date_added\": \"09/18/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Hayley Marketing\",\n                            \"lastName\": \"2017\",\n                            \"id\": 490\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"25000\",\n                        \"skills\": \"This is the section where I typed in additional skills-resume parser to list additional skills.\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \" \",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker08-01-2017-03@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Banking & Finance\",\n                            \"id\": 847391\n                        },\n                        \"id\": 504,\n                        \"address\": {\n                            \"country\": \"CA\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"N5F 7T5\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"Ontario\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \" \",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Health Care\",\n                                    \"id\": 847394\n                                },\n                                {\n                                    \"name\": \"Admin - Clerical\",\n                                    \"id\": 847392\n                                },\n                                {\n                                    \"name\": \"Banking & Finance\",\n                                    \"id\": 847391\n                                }\n                            ],\n                            \"total\": 3\n                        },\n                        \"phone\": \"7166314444\",\n                        \"description\": \"<p>Spicy jalapeno bacon ipsum dolor amet beef ribs t-bone bacon swine, pork belly sirloin ipsum occaecat ad cow short ribs tempor sausage. Est dolor ut venison cillum culpa cupidatat. Ea tongue enim esse. Rump chuck picanha swine salami meatball pork belly biltong short ribs sed. Duis sirloin ground round eiusmod.</p>\\r\\n\\r\\n<p>Laborum minim pork, ullamco sed anim in magna pastrami. Qui pork loin ham brisket esse boudin meatball. Burgdoggen ut shoulder qui meatball kielbasa. Est meatball pork chuck cupim quis fatback spare ribs jerky enim. Quis andouille rump ipsum ullamco dolor in occaecat pork chop turducken filet mignon culpa frankfurter. Kevin labore tempor, deserunt sirloin aliquip sunt velit voluptate pastrami porchetta pancetta.</p>\\r\\n\\r\\n<p>&nbsp;</p>\\r\\n\",\n                        \"cell_phone\": \"7165555555\",\n                        \"disability\": \" \",\n                        \"date_added\": \"08/01/2017\",\n                        \"title\": \"Head Bottle Washer\",\n                        \"type\": \"Direct Hire\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \" \",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker08012017-01@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 503,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \" \",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"555-555-1212\",\n                        \"description\": \"<p>test test1 94 North Transit Road Lockport, NY 14094 (555) 555-5555 t_foltz@yahoo.com Education: State University of New York at Buffalo Master of Science in Nursing, Anticipated May 2008 Family Nurse Practitioner Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter Daemen College Bachelor of Science in Nursing, May 2005 Summa cum Laude Erie Community College Associate of Applied Science in Nursing, January 2003 Magna cum Laude Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter Ithaca College Bachelor of Science in Health Information Administration, May 1997 Nurse Practitioner Experience: Hamilton B. Mizer Primary Care 8/2007 &ndash; 12/2007 Niagara Falls, NY Preceptor: Wendy Bissell FNP Newfane Family Medicine 1/2007 &ndash; 8/2007 Newfane, NY Preceptor: Maggie Desmarais FNP Work Experience: Kaleida Health &ndash; Millard Fillmore Suburban 7/2003 &ndash; present Nurse, Mother-Baby Unit, 11/2005 &ndash; present Nurse, Critical Care Unit, 11/2004 &ndash; 11/2005 Nurse, Orthopedics/Medical-Surgical, 7/2003 &ndash; 11/2004 Buffalo Cardiology and Pulmonary Associates 9/1998 &ndash; 1/2006 Nurse, Telephone Triage, 9/2003 &ndash; 1/2006 Health Information Analyst, 9/1998 &ndash; 9/2003</p>\\r\\n\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \" \",\n                        \"date_added\": \"08/01/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker071117@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 501,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"18886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"18886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"07/11/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \" \",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms062017@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Information Technology\",\n                            \"id\": 847396\n                        },\n                        \"id\": 499,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \" \",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Information Technology\",\n                                    \"id\": 847396\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \" \",\n                        \"date_added\": \"06/20/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"P\",\n                        \"ethnicity\": \"AI\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker060917-4@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 498,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"F\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"Y\",\n                        \"date_added\": \"06/09/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"testing\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakerindeed4@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 495,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/31/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakerindeed3@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 493,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/31/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakerindeed2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 492,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/31/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakerindeed1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 491,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/31/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"routing@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 486,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/08/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"050517@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 485,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/05/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"11@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 382,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"10@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 381,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"9@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 380,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"8@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 379,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"7@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 378,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"6@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 377,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"5@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 376,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"3@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 375,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 374,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"1234@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 373,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"123@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 372,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/21/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \" \",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"t2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 371,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \" \",\n                        \"categories\": {\n                            \"data\": [\n                                {\n                                    \"name\": \"Other Area(s)\",\n                                    \"id\": 846574\n                                }\n                            ],\n                            \"total\": 1\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \" \",\n                        \"date_added\": \"03/07/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Test\",\n                            \"id\": 72\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"t1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 370,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/07/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 366,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/06/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho123456@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 357,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/02/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho12345@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 355,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/02/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho1234@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 354,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"03/02/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 338,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"tsho2@haleymarketing.com\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 337,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"tsho1@haleymarketing.com\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"C\",\n                        \"ethnicity\": \"AI\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tsho123@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 336,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"C\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"C\",\n                        \"date_added\": \"02/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe3@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 329,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/13/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 328,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/13/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemakerindeed@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 326,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Lockport\",\n                            \"zip\": \"14094\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"NY\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/08/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe667@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 325,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"02/08/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6037@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 310,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/26/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6035@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 309,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/26/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6034@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 308,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/26/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker4444@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 307,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/26/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6033@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 306,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6032@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 305,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6031@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 304,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6030@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 303,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6029@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 302,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"North Adams\",\n                            \"zip\": \"01247\",\n                            \"address1\": \"121 Bracewell ave apt 3\",\n                            \"state\": \"MA\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker6028@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 301,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"North Adams\",\n                            \"zip\": \"01247\",\n                            \"address1\": \"121 Bracewell ave apt 3\",\n                            \"state\": \"MA\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/25/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"social-media\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe123@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 300,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/23/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 299,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/23/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tiffany1234@haleymarketing.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 298,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/20/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker1010@haleymarketing.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 297,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/20/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker99999@haleymarketing.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 296,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/20/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker999@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 295,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/20/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker5555@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 294,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker2222@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 293,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-fair\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker1111@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 292,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/17/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"indeed\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tiffany@talmax.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"id\": 287,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"phone\": \"8886962900\",\n                        \"description\": \"\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/12/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"P\",\n                        \"ethnicity\": \"AI\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms@ats-connect.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"CA\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"g7r 7f7\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 286,\n                        \"gender\": \"M\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"N\",\n                        \"date_added\": \"01/12/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms@jobfuel.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"M3C 0C1\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"Ontario\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 282,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"888696290\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/10/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"P\",\n                        \"ethnicity\": \"AI\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms@barquar.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Toronto\",\n                            \"zip\": \"M3C 0C1\",\n                            \"address1\": \"94 North Transit Road\",\n                            \"state\": \"ON\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 281,\n                        \"gender\": \"F\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"555-555-5555\",\n                        \"disability\": \"Y\",\n                        \"date_added\": \"01/10/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"N\",\n                        \"ethnicity\": \"W\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tms@barqar.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 280,\n                        \"gender\": \"F\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"N\",\n                        \"date_added\": \"01/10/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe1234@dine365.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 272,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"716-888-8981\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/06/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe1234@talmax.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 271,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"7166318981\",\n                        \"disability\": \"\",\n                        \"date_added\": \"01/06/2017\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"C\",\n                        \"ethnicity\": \"C\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 225,\n                        \"gender\": \"C\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"C\",\n                        \"date_added\": \"10/25/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe323@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 220,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe322@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 219,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe321@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 218,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe12345@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 217,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoe1234@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 216,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"7166318981\",\n                        \"disability\": \"\",\n                        \"date_added\": \"10/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker446@haleymarketing.com\",\n                        \"opt_out\": true,\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 160,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"7162222222\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"job-board\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker445@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"GB\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 159,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"social-media\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker444@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"CA\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"b5y 8s8\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"Ontario\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 158,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/24/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"newspaper\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker323@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"j7g 5j6\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"ontario\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 155,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/23/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"web-search\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker322@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 154,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"06/23/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"test source\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker2@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 136,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/25/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"other\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"tshoemaker1@haleymarketing.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"New York\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 135,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"8886962900\",\n                        \"cell_phone\": \"8886962900\",\n                        \"disability\": \"\",\n                        \"date_added\": \"05/25/2016\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"referral_source\": \"opt-in-widget\",\n                        \"pay_rate\": \"\",\n                        \"skills\": \"\",\n                        \"date_of_birth\": \"01/09/2020\",\n                        \"veteran\": \"\",\n                        \"ethnicity\": \"\",\n                        \"last_name\": \"test1\",\n                        \"email\": \"vaktest1@barqar.com\",\n                        \"opt_out\": \"\",\n                        \"resume_html\": \"\",\n                        \"category\": {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        },\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"\",\n                            \"zip\": \"\",\n                            \"address1\": \"\",\n                            \"state\": \"\",\n                            \"address2\": \"\"\n                        },\n                        \"id\": 108,\n                        \"gender\": \"\",\n                        \"categories\": {\n                            \"data\": [],\n                            \"total\": 0\n                        },\n                        \"description\": \"\",\n                        \"phone\": \"\",\n                        \"cell_phone\": \"\",\n                        \"disability\": \"\",\n                        \"date_added\": \"08/12/2015\",\n                        \"title\": \"\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"firstName\": \"Haley\",\n                            \"lastName\": \"Marketing\",\n                            \"id\": 2\n                        },\n                        \"first_name\": \"vak\"\n                    }\n                ]\n            },\n            \"xstatus\": \"120 candidates returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 1.379,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T16:17:20\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=100&query=isDeleted:false AND lastName:test1&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"3.369197\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"120 candidates returned\"\n}"}],"_postman_id":"948a4a33-696e-4bcb-8f67-97134fb16323"},{"name":"Candidate Set","event":[{"listen":"test","script":{"id":"5b790a8e-8328-4cfb-a53e-2d431120d892","exec":["// Extract request and response","const requestQuery = pm.request.body ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query : {};","const response = pm.response.json();","const apiData = response.api_response.api_data;","","// 1️⃣ Validate API status and xstatus","pm.test(\"API status should be success\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"Candidate set\");","});","","// 2️⃣ Validate ID is returned and is a number","pm.test(\"Candidate ID should be present and a number\", () => {","    pm.expect(apiData.id).to.be.a('number');","    pm.expect(apiData.id).to.be.greaterThan(0);","});","","// 3️⃣ Validate request fields mapped in the response ticket.request.values","let ticketRequest = response.atsconnect_ticket?.request?.values;","let mappedData = ticketRequest ? JSON.parse(ticketRequest) : {};","","pm.test(\"Validate mapped fields in ticket request\", () => {","    for (const key in requestQuery) {","        if (requestQuery[key] && typeof requestQuery[key] !== \"object\") {","            const mappedKey = key === \"first_name\" ? \"firstName\" :","                              key === \"last_name\" ? \"lastName\" :","                              key === \"rep_user\" ? \"owner\" :","                              key === \"address1\" || key === \"city\" || key === \"state\" || key === \"zip\" ? \"address\" :","                              key;","            if (mappedKey === \"address\") {","                // Validate address object","                const addressFields = [\"address1\", \"city\", \"state\", \"zip\"];","                addressFields.forEach(field => {","                    if (requestQuery[field] !== undefined && requestQuery[field] !== \"\") {","                        pm.expect(mappedData.address[field]).to.eql(requestQuery[field]);","                    }","                });","            } else if (mappedKey === \"owner\") {","                pm.expect(mappedData.owner.id).to.eql(requestQuery.rep_user.id);","            } else {","                pm.expect(mappedData[mappedKey]).to.eql(requestQuery[key]);","            }","        }","    }","});","","// 4️⃣ Data Type Validation for critical fields","pm.test(\"Validate data types of key fields\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.firstName).to.be.a('string');","    pm.expect(mappedData.lastName).to.be.a('string');","    pm.expect(mappedData.phone).to.be.a('string');","    pm.expect(mappedData.email).to.be.a('string');","    if (mappedData.address) {","        pm.expect(mappedData.address).to.be.an('object');","        pm.expect(mappedData.address.zip).to.be.a('string');","        pm.expect(mappedData.address.city).to.be.a('string');","        pm.expect(mappedData.address.state).to.be.a('string');","    }","});","","// 5️⃣ Edge Case: Check empty or optional fields","pm.test(\"Optional fields handled gracefully\", () => {","    const optionalFields = [\"data\", \"type\", \"company_name\"];","    optionalFields.forEach(field => {","        pm.expect(requestQuery[field] || \"\").to.be.a('string');","    });","});","","pm.test(\"Response time is less than 1500ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});","","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"dae4fe25-e09d-4a86-b1ac-eb22e15159a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"first_name\":\"Naqi\",\n                        \"last_name\":\"Haider\",\n                        \"email\": \"nh1@test.com\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"123 main st\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\",\n                        \"country\":\"US\",\n                        \"category\": {\n                            \"id\": \"847390\"\n                        },\n                        \"specialties\": [\"2000002\", \"2000001\"],\n                        \"comments\": \"You are great\"\n        }\n    }  \n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/candidate/set","description":"<p>For creating candidate record</p>\n<ul>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>attach_note_on_resume_failure - attach note to candidate upon resume failure - <strong>OPTIONAL</strong> - default:true</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"t00st2@Test999.ca\",\n                        \"first_name\":\"oT\",\n                        \"last_name\":\"Kace\",\n                        \"phone\":\"955-555-5055\",\n                        \"address1\": \"993 Test Street\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\",\n                        \"owner\":{\"id\":123345}\n        }\n }\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b88b4ec7-ab3c-4893-a741-29aa92279fe6","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"t00st2@Test999.ca\",\n                        \"first_name\":\"oT\",\n                        \"last_name\":\"Kace\",\n                        \"phone\":\"955-555-5055\",\n                        \"address1\": \"993 Test Street\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\"\n        }\n }\n}\n "},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 22:17:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"571"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199861"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 785\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.356523\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-09T22:17:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Candidates set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"email\\\":\\\"t00st2@Test999.ca\\\",\\\"firstName\\\":\\\"oT\\\",\\\"name\\\":\\\"oT Kace\\\",\\\"address\\\":{\\\"zip\\\":\\\"04563\\\",\\\"city\\\":\\\"Portland\\\",\\\"address1\\\":\\\"993 Test Street\\\",\\\"state\\\":\\\"MAINE\\\"},\\\"lastName\\\":\\\"Kace\\\",\\\"phone\\\":\\\"955-555-5055\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/Candidate?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.463541\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 Candidates set\"\n}"}],"_postman_id":"dae4fe25-e09d-4a86-b1ac-eb22e15159a5"},{"name":"Candidate Upsert","id":"e107f2a7-440c-4128-af73-c4bd0bf70c69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test29@Test071416999.us\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"This\",\n                        \"phone\":\"999-555-5555\",\n                        \"address1\":\"123 Test Street\",\n                        \"city\":\"Los Angeles\",\n                        \"state\":\"CALIFORNIA\",\n                        \"zip\":\"90062\",\n                        \"country\":\"United States\",\n                        \"resume_data\":\"\"        }\n }\n}"},"url":"{{ats-connect}}/candidate/upsert","description":"<p>For adding or updating a candidate record</p>\n<ul>\n<li><p>email - <b>REQUIRED</b></p>\n</li>\n<li><p>attach_note_on_resume_failure - attach note to candidate upon resume failure - <b>OPTIONAL</b> - default:true</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\":{\n      \"api_request_query\":{\n                        \"email\":\"test29@Test071416999.us\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"This\",\n                        \"phone\":\"999-555-5555\",\n                        \"address1\":\"123 Test Street\",\n                        \"city\":\"Los Angeles\",\n                        \"state\":\"CALIFORNIA\",\n                        \"zip\":\"90062\",\n                        \"country\":\"United States\",\n                        \"resume_data\":\"\"        \n        }\n }\n</pre>","urlObject":{"path":["candidate","upsert"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"317ddb4a-5f8d-4ca8-9249-6b6867941797","name":"Candidate Upsert - Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test29@Test071416.com\",\n                        \"first_name\":\"Testn\",\n                        \"last_name\":\"This\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\",\n                        \"country\":\"Canada\",\n                        \"resume_data\":\"\"        }\n }\n}"},"url":"{{ats-connect}}/candidate/upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Dec 2020 23:01:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"466"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"206639"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/upsert"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 812\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.465256\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-12-17T23:01:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"massMailOptOut\\\":null}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/Candidate?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.204686\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 Candidate set\"\n}"},{"id":"e91088d2-c7e9-4891-b5c6-b8c6a8653e59","name":"Candidate Upsert - Insert","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test29@Test071416999.us\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"This\",\n                        \"phone\":\"999-555-5555\",\n                        \"address1\":\"123 Test Street\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\",\n                        \"country\":\"Canada\",\n                        \"resume_data\":\"\"        }\n }\n}"},"url":"{{ats-connect}}/candidate/upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Dec 2020 23:04:29 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"584"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3180767"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/upsert"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 813\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.316997\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-12-17T23:04:31\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"email\\\":\\\"test29@Test071416999.us\\\",\\\"firstName\\\":\\\"Test\\\",\\\"massMailOptOut\\\":null,\\\"name\\\":\\\"Test This\\\",\\\"lastName\\\":\\\"This\\\",\\\"address\\\":{\\\"zip\\\":\\\"04563\\\",\\\"city\\\":\\\"Portland\\\",\\\"address1\\\":\\\"123 Test Street\\\",\\\"state\\\":\\\"MAINE\\\"},\\\"phone\\\":\\\"999-555-5555\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/Candidate?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.267044\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 Candidate set\"\n}"}],"_postman_id":"e107f2a7-440c-4128-af73-c4bd0bf70c69"},{"name":"Candidate Set Education","event":[{"listen":"test","script":{"id":"465b0a89-fca3-434d-87fd-6615045550f9","exec":["// Extract request and response","const requestQuery = pm.request.body ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query : {};","const response = pm.response.json();","const apiData = response.api_response.api_data;","","// 1️⃣ Validate API status and xstatus","pm.test(\"✅ API status and xstatus should indicate success\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"Candidate Education set\");","});","","// 2️⃣ Validate Candidate Education ID is returned","pm.test(\"✅ Candidate Education ID should be present and a number\", () => {","    pm.expect(apiData.id).to.be.a('number');","    pm.expect(apiData.id).to.be.greaterThan(0);","});","","// 3️⃣ Validate mapped fields in atsconnect_ticket.request.values","let ticketRequestRaw = response.atsconnect_ticket?.request?.values;","let mappedData = ticketRequestRaw ? JSON.parse(ticketRequestRaw) : {};","","pm.test(\"✅ Validate field mappings in ticket values\", () => {","    // Direct string/number fields","    pm.expect(mappedData.degree).to.eql(requestQuery.degree);","    pm.expect(mappedData.state).to.eql(requestQuery.state);","    pm.expect(mappedData.city).to.eql(requestQuery.city);","    pm.expect(mappedData.gpa).to.eql(String(requestQuery.gpa)); // Cast float to string in request","","    pm.expect(mappedData.school).to.eql(requestQuery.school);","    pm.expect(mappedData.major).to.eql(requestQuery.major);","","    // Nested candidate object","    pm.expect(mappedData.candidate.id).to.eql(requestQuery.id);","","    // Date conversions","    const dateToTimestamp = (dateStr) => new Date(dateStr).getTime();","    //pm.expect(mappedData.startDate).to.eql(dateToTimestamp(requestQuery.start_date));","    //pm.expect(mappedData.endDate).to.eql(dateToTimestamp(requestQuery.end_date));","    //pm.expect(mappedData.graduationDate).to.eql(dateToTimestamp(requestQuery.graduation_date));","});","","// 4️⃣ Validate data types","pm.test(\"✅ Validate data types in mapped data\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.degree).to.be.a('string');","    pm.expect(mappedData.state).to.be.a('string');","    pm.expect(mappedData.city).to.be.a('string');","    pm.expect(mappedData.school).to.be.a('string');","    pm.expect(mappedData.major).to.be.a('string');","    pm.expect(mappedData.gpa).to.be.a('string');","    pm.expect(mappedData.candidate).to.be.an('object');","    pm.expect(mappedData.candidate.id).to.be.a('number');","","    [\"startDate\", \"endDate\", \"graduationDate\"].forEach(field => {","        pm.expect(mappedData[field]).to.be.a('number');","    });","});","","// 5️⃣ Optional field safety check","pm.test(\"✅ Optional fields are handled safely\", () => {","    const optionalFields = [\"comments\", \"institution_type\"];","    optionalFields.forEach(field => {","        const value = requestQuery[field];","        pm.expect(value === undefined || typeof value === 'string').to.be.true;","    });","});","","// 6️⃣ Response time","pm.test(\"✅ Response time should be under 1500ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});",""],"type":"text/javascript","packages":{}}}],"id":"fb7c2c01-e1f7-489f-a1dd-d78b01efdf7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\t\t\"id\": 193,\n            \t\t\t\"start_date\": \"08/11/1955\",\n            \t\t\t\"end_date\": \"12/17/2000\",\n            \t\t\t\"gpa\": 2.75,\n            \t\t\t\"major\": \"Undecided\",\n            \t\t\t\"degree\": \"none\",\n            \t\t\t\"state\": \"NV\",\n            \t\t\t\"city\": \"Las Vegas\",\n            \t\t\t\"school\": \"Non Accredited\",\n            \t\t\t\"graduation_date\": \"05/08/2001\"\n        }\n }\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\": 193,\n                        \"start_date\": \"08/11/1955\",\n                        \"end_date\": \"12/17/2000\",\n                        \"gpa\": 2.75,\n                        \"major\": \"Undecided\",\n                        \"degree\": \"none\",\n                        \"state\": \"NV\",\n                        \"city\": \"Las Vegas\",\n                        \"school\": \"Non Accredited\",\n                        \"graduation_date\": \"05/08/2001\"\n        }\n }\n</pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2ba93e35-f323-4674-a2df-23098b5bf424","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\t\t\"id\": 193,\n            \t\t\t\"start_date\": \"08/11/1955\",\n            \t\t\t\"end_date\": \"12/17/2000\",\n            \t\t\t\"gpa\": 2.75,\n            \t\t\t\"major\": \"Undecided\",\n            \t\t\t\"degree\": \"none\",\n            \t\t\t\"state\": \"NV\",\n            \t\t\t\"city\": \"Las Vegas\",\n            \t\t\t\"school\": \"Non Accredited\",\n            \t\t\t\"graduation_date\": \"05/08/2001\"\n        }\n }\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 13:11:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"582"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272810"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 59\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateEducation\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"3.512486\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-10T13:11:49\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Education set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"degree\\\":\\\"none\\\",\\\"state\\\":\\\"NV\\\",\\\"city\\\":\\\"Las Vegas\\\",\\\"candidate\\\":{\\\"id\\\":193},\\\"endDate\\\":977011200000,\\\"gpa\\\":2.75,\\\"graduationDate\\\":989280000000,\\\"school\\\":\\\"Non Accredited\\\",\\\"major\\\":\\\"Undecided\\\",\\\"startDate\\\":2701555200000}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/CandidateEducation?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"3.595091\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Education set\"\n}"}],"_postman_id":"fb7c2c01-e1f7-489f-a1dd-d78b01efdf7b"},{"name":"Candidate Get Education","event":[{"listen":"test","script":{"id":"b670cbc5-6ed8-4de0-87f7-6cf0400e8ae6","exec":["// Extract response JSON","const response = pm.response.json();","","// Validate top-level structure","pm.test(\"Validate response structure\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// Extract education data and count","const educationData = response.api_response.api_data?.education || [];","const educationCount = response.api_response.api_data?.count || 0;","","// Validate count matches length of education array","pm.test(\"Validate count matches education array length\", () => {","    pm.expect(educationData.length).to.eql(educationCount);","});","","// Validate education entries if present","if (educationData.length > 0) {","","    pm.test(\"Validate education array is not empty\", () => {","        pm.expect(educationData).to.be.an(\"array\").that.is.not.empty;","    });","","    // Validate fields and data types in each education object","    educationData.forEach((edu, index) => {","        pm.test(`Validate education object at index ${index}`, () => {","            const fieldChecks = [","                { key: \"degree\", type: \"string\" },","                { key: \"comments\", type: \"string\" },","                { key: \"state\", type: \"string\" },","                { key: \"degree_type\", type: \"string\" },","                { key: \"city\", type: \"string\" },","                { key: \"gpa\", type: \"number\" },","                { key: \"school\", type: \"string\" },","                { key: \"start_date\", type: \"string\" },","                { key: \"id\", type: \"number\" },","                { key: \"minor\", type: \"string\" },","                { key: \"expiration_date\", type: \"string\" },","                { key: \"certification\", type: \"string\" },","                { key: \"graduation_date\", type: \"string\" },","                { key: \"candidate\", type: \"string\" },","                { key: \"end_date\", type: \"string\" },","                { key: \"type\", type: \"string\" },","                { key: \"major\", type: \"string\" }","            ];","","            fieldChecks.forEach(f => {","                pm.expect(edu).to.have.property(f.key);","                pm.expect(typeof edu[f.key]).to.eql(f.type);","            });","        });","    });","","} else {","    // No education records found case","    pm.test(\"No education records found\", () => {","        pm.expect(educationCount).to.eql(0);","        pm.expect(educationData).to.be.an(\"array\").that.is.empty;","    });","}","","// Validate API status fields","pm.test(\"Validate API status\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.atsconnect_status).to.eql(1);","});","","// Validate response time < 1000ms","pm.test(\"Response time is less than 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript","packages":{}}}],"id":"ad525e8a-66bb-4ae0-8698-198056f5d004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 193\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_request_query\":{\n                \"id\": 193\n        }\n    }\n</pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"615ad277-52d7-4137-9c13-52f3ed6d6474","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 193\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 14:30:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"756"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272873"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 2,\n            \"education\": [\n                {\n                    \"degree\": \"none\",\n                    \"minor\": \"\",\n                    \"expiration_date\": \"01/10/2020\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"NV\",\n                    \"graduation_date\": \"05/08/2001\",\n                    \"city\": \"Las Vegas\",\n                    \"end_date\": \"12/17/2000\",\n                    \"gpa\": 2.75,\n                    \"school\": \"Non Accredited\",\n                    \"id\": 58,\n                    \"start_date\": \"08/11/2055\",\n                    \"type\": \"\",\n                    \"major\": \"Undecided\"\n                },\n                {\n                    \"degree\": \"none\",\n                    \"minor\": \"\",\n                    \"expiration_date\": \"01/10/2020\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"NV\",\n                    \"graduation_date\": \"05/08/2001\",\n                    \"city\": \"Las Vegas\",\n                    \"end_date\": \"12/17/2000\",\n                    \"gpa\": 2.75,\n                    \"school\": \"Non Accredited\",\n                    \"id\": 58,\n                    \"start_date\": \"08/11/2055\",\n                    \"type\": \"\",\n                    \"major\": \"Undecided\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateEducation\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.362802\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T14:30:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 candidate education results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/query/CandidateEducation?count=100&showEditable=false&meta=off&where=candidate.id=193&showTotalMatched=false&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.446879\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"2 candidate education results returned\"\n}"}],"_postman_id":"ad525e8a-66bb-4ae0-8698-198056f5d004"},{"name":"Candidate Set Work History","event":[{"listen":"test","script":{"id":"a28d9ffc-ca67-408c-b59c-897f40b0f559","exec":["// Extract request and response","const requestQuery = pm.request.body ? JSON.parse(pm.request.body.raw).api_request_data.api_request_query : {};","const response = pm.response.json();","const apiData = response.api_response.api_data;","","// 1️⃣ Validate API status and xstatus","pm.test(\"✅ API status should be success and xstatus correct\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.api_response.api_xstatus).to.include(\"Candidate Workhistory set\");","});","","// 2️⃣ Validate returned ID","pm.test(\"✅ Candidate Work History ID should be present and a number\", () => {","    pm.expect(apiData.id).to.be.a('number');","    pm.expect(apiData.id).to.be.greaterThan(0);","});","","// 3️⃣ Validate mapped fields in atsconnect_ticket.request.values","let ticketRequestRaw = response.atsconnect_ticket?.request?.values;","let mappedData = ticketRequestRaw ? JSON.parse(ticketRequestRaw) : {};","","pm.test(\"✅ Validate field mappings in ticket request\", () => {","    // Simple direct mappings","    pm.expect(mappedData.title).to.eql(requestQuery.title);","    pm.expect(mappedData.companyName).to.eql(requestQuery.company_name);","    pm.expect(mappedData.bonus).to.eql(requestQuery.bonus);","    pm.expect(mappedData.salaryType).to.eql(requestQuery.salary_type);","","    // Salaries: starting_salary maps to salary1, ending_salary to salary2","    pm.expect(mappedData.salary1).to.eql(requestQuery.starting_salary);","    pm.expect(mappedData.salary2).to.eql(String(requestQuery.ending_salary)); // note ending_salary is a string","","    // Candidate ID nested","    pm.expect(mappedData.candidate.id).to.eql(requestQuery.id);","","    // Date conversion for startDate","    const dateToTimestamp = (dateStr) => new Date(dateStr).getTime();","    //pm.expect(mappedData.startDate).to.eql(dateToTimestamp(requestQuery.start_date));","});","","// 4️⃣ Validate data types for mapped fields","pm.test(\"✅ Validate data types of key fields\", () => {","    pm.expect(mappedData).to.be.an('object');","    pm.expect(mappedData.title).to.be.a('string');","    pm.expect(mappedData.companyName).to.be.a('string');","    pm.expect(mappedData.salary1).to.be.a('number');","    pm.expect(mappedData.salary2).to.be.a('string'); // as per example","    pm.expect(mappedData.bonus).to.be.a('number');","    pm.expect(mappedData.salaryType).to.be.a('string');","    pm.expect(mappedData.candidate).to.be.an('object');","    pm.expect(mappedData.candidate.id).to.be.a('number');","    pm.expect(mappedData.startDate).to.be.a('number');","});","","// 5️⃣ Optional fields (if any) handled gracefully","pm.test(\"✅ Optional fields handled gracefully\", () => {","    const optionalFields = [\"notes\", \"department\"];","    optionalFields.forEach(field => {","        const val = requestQuery[field];","        pm.expect(val === undefined || typeof val === 'string').to.be.true;","    });","});","","// 6️⃣ Response time check","pm.test(\"✅ Response time is under 1500ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1500);","});",""],"type":"text/javascript","packages":{}}}],"id":"62dfe16f-a8fd-4251-9aed-cd679648637d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\t\t\"id\": 193,\n\t\t\t\t\t\t\"title\": \"Engineer\",\n\t\t\t\t\t\t\"company_name\": \"Wakanda\",\n\t\t\t\t\t\t\"starting_salary\": 195000,\n\t\t\t\t\t\t\"ending_salary\": \"250000\",\n\t\t\t\t\t\t\"bonus\": 15000,\n\t\t\t\t\t\t\"salary_type\": \"yearly\",\n\t\t\t\t\t\t\"start_date\": \"12/21/2012\"\n        }\n }\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\": 193,\n                        \"title\": \"Engineer\",\n                        \"company_name\": \"Wakanda\",\n                        \"starting_salary\": 195000,\n                        \"ending_salary\": \"250000\",\n                        \"bonus\": 15000,\n                        \"salary_type\": \"yearly\",\n                        \"start_date\": \"12/21/2012\"\n        }\n }\n</pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"16f11cf3-53ea-4f4f-b4f6-b9f88b751e02","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n            \t\t\t\"id\": 193,\n\t\t\t\t\t\t\"title\": \"Engineer\",\n\t\t\t\t\t\t\"company_name\": \"Wakanda\",\n\t\t\t\t\t\t\"starting_salary\": 195000,\n\t\t\t\t\t\t\"ending_salary\": \"250000\",\n\t\t\t\t\t\t\"bonus\": 15000,\n\t\t\t\t\t\t\"salary_type\": \"yearly\",\n\t\t\t\t\t\t\"start_date\": \"12/21/2012\"\n        }\n }\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 14:36:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"562"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272876"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 216\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateWorkHistory\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.330017\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-10T14:36:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Workhistory set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"salary1\\\":195000,\\\"salary2\\\":\\\"250000\\\",\\\"bonus\\\":15000,\\\"companyName\\\":\\\"Wakanda\\\",\\\"candidate\\\":{\\\"id\\\":193},\\\"salaryType\\\":\\\"yearly\\\",\\\"title\\\":\\\"Engineer\\\",\\\"startDate\\\":1356048000}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/CandidateWorkHistory?BhRestToken=f8a7c490-5f65-4601-a741-00f85b1db67b\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.414442\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Workhistory set\"\n}"}],"_postman_id":"62dfe16f-a8fd-4251-9aed-cd679648637d"},{"name":"Candidate Get Work History","event":[{"listen":"test","script":{"id":"b0c87a14-ebd1-4d04-b2da-50b621b25b69","exec":["// Parse the response JSON","const response = pm.response.json();","","// Validate top-level API response structure","pm.test(\"Validate response structure\", () => {","    pm.expect(response).to.have.property(\"api_response\");","    pm.expect(response).to.have.property(\"atsconnect_status\");","    pm.expect(response).to.have.property(\"atsconnect_ticket\");","    pm.expect(response).to.have.property(\"atsconnect_message\");","});","","// Extract workhistory data","const workhistory = response.api_response.api_data?.workhistory || [];","const expectedCount = response.api_response.api_data?.count || 0;","","// Test the count matches length of workhistory array","pm.test(\"Validate workhistory count matches returned array length\", () => {","    pm.expect(workhistory.length).to.eql(expectedCount);","});","","// Test at least one workhistory entry is present","pm.test(\"Workhistory array should not be empty\", () => {","    pm.expect(workhistory).to.be.an(\"array\").that.is.not.empty;","});","","// Validate fields and data types for each workhistory entry","workhistory.forEach((entry, index) => {","    pm.test(`Validate fields & types for workhistory entry ${index + 1}`, () => {","        const fields = [","            { key: \"company_name\", type: \"string\" },","            { key: \"comments\", type: \"string\" },","            { key: \"termination_reason\", type: \"string\" },","            { key: \"state\", type: \"string\" },","            { key: \"city\", type: \"string\" },","            { key: \"start_date\", type: \"string\" },","            { key: \"id\", type: \"number\" },","            { key: \"commission\", type: \"string\" },","            { key: \"ending_salary\", type: \"number\" },","            { key: \"country\", type: \"string\" },","            { key: \"salary_type\", type: \"string\" },","            { key: \"location\", type: \"string\" },","            { key: \"bonus\", type: \"number\" },","            { key: \"zip\", type: \"string\" },","            { key: \"end_date\", type: \"string\" },","            { key: \"title\", type: \"string\" },","            { key: \"starting_salary\", type: \"number\" }","        ];","","        fields.forEach(f => {","            pm.expect(entry).to.have.property(f.key);","            pm.expect(typeof entry[f.key]).to.eql(f.type);","        });","    });","});","","// Validate API status","pm.test(\"Validate API status flags\", () => {","    pm.expect(response.api_response.api_status).to.eql(1);","    pm.expect(response.atsconnect_status).to.eql(1);","});","","// Optional: Validate the atsconnect_message contains count info matching the workhistory count","pm.test(\"Validate atsconnect_message includes count\", () => {","    pm.expect(response.atsconnect_message).to.include(expectedCount.toString());","});","","// Validate response time is reasonable","pm.test(\"Response time is less than 1000ms\", () => {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});",""],"type":"text/javascript","packages":{}}}],"id":"afe25cc6-df7a-4a38-85e4-414796aa73eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 193\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_request_query\":{\n                \"id\": 193\n        }\n    }\n</pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cf4a39f3-9568-4802-bc6a-ea11a39fb3ea","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n        \t\t\"id\": 193\n        }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 14:40:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"743"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272882"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 2,\n            \"workhistory\": [\n                {\n                    \"ending_salary\": 250000,\n                    \"salary_type\": \"yearly\",\n                    \"location\": \"\",\n                    \"company_name\": \"Wakanda\",\n                    \"bonus\": 15000,\n                    \"comments\": \"\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/10/2020\",\n                    \"id\": 215,\n                    \"title\": \"Engineer\",\n                    \"start_date\": \"12/21/2012\",\n                    \"commission\": \"\",\n                    \"starting_salary\": 195000\n                },\n                {\n                    \"ending_salary\": 250000,\n                    \"salary_type\": \"yearly\",\n                    \"location\": \"\",\n                    \"company_name\": \"Wakanda\",\n                    \"bonus\": 15000,\n                    \"comments\": \"\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/10/2020\",\n                    \"id\": 215,\n                    \"title\": \"Engineer\",\n                    \"start_date\": \"12/21/2012\",\n                    \"commission\": \"\",\n                    \"starting_salary\": 195000\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateWorkHistory\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.480413,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T14:40:21\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 candidate workhistory results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/query/CandidateWorkHistory?count=100&showEditable=false&meta=off&where=candidate.id=193&showTotalMatched=false&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.563758\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"2 candidate workhistory results returned\"\n}"}],"_postman_id":"afe25cc6-df7a-4a38-85e4-414796aa73eb"},{"name":"Candidate Get Resume","id":"735d9bac-0c77-4e0b-991f-d86ea7ad859a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"11111-22222-33333-44444-55555"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"candidate_resume_data\":\"\"\n            }\n    }\n}\n"},"url":"https://api.ats-connect.com/candidate/get/resume_parse","description":"<p>For parsing resume data.</p>\n<ul>\n<li>candidate_resume_data - path to file - <b>REQUIRED</b></li>\n</ul>\n","urlObject":{"protocol":"https","path":["candidate","get","resume_parse"],"host":["api","ats-connect","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"735d9bac-0c77-4e0b-991f-d86ea7ad859a"}],"id":"66433831-66d3-4d80-a385-61792c11b89c","_postman_id":"66433831-66d3-4d80-a385-61792c11b89c","description":""},{"name":"Client","item":[{"name":"Client Get","id":"3cf76d5a-b2b7-4251-9053-7a3fa189abf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                         \"status\":\"Active Account, Active,Proposal\"\n                },\n                \"api_request_fields\": \"id\"\n    }\n}"},"url":"{{ats-connect}}/client/get","description":"<p>For retrieving client(s) based on status.</p>\n\n<ul>\n<li><p>status - <b>REQUIRED</b> - comma separated values, if more than one status is provided (i.e., \"Active, New Lead, Prospect, Active Account\")</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"status\": \"Active Account,Active, Prospect\"\n                }        \n    }\n</pre>","urlObject":{"path":["client","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f0fce8d0-9667-4da0-9c69-c613dce03d36","name":"Client Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                         \"status\":\"Active Account, Active,Proposal\"\n                },\n                \"api_request_fields\": \"id\"\n    }\n}"},"url":"{{ats-connect}}/client/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 09 Jan 2021 18:42:09 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"957"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3067366"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 5,\n            \"clients\": [\n                {\n                    \"status\": \"Active\",\n                    \"date_modified\": \"01/06/2021\",\n                    \"num_offices\": 1,\n                    \"num_employees\": 5,\n                    \"phone\": \"999-111-0000\",\n                    \"annual_revenue\": 215,\n                    \"date_founded\": \"01/09/2021\",\n                    \"date_added\": \"01/06/2021\",\n                    \"url\": \"http://www.test.com\",\n                    \"placement_fee\": 1.2,\n                    \"address\": {},\n                    \"id\": 5,\n                    \"company\": \"Testing This Too\"\n                },\n                {\n                    \"status\": \"Proposal\",\n                    \"date_modified\": \"01/06/2021\",\n                    \"num_offices\": 3,\n                    \"num_employees\": 2495,\n                    \"phone\": \"999-555-5555\",\n                    \"annual_revenue\": 25.99,\n                    \"date_founded\": \"01/09/2021\",\n                    \"date_added\": \"01/06/2021\",\n                    \"url\": \"http://www.test.com\",\n                    \"placement_fee\": 0.5,\n                    \"address\": {},\n                    \"id\": 4,\n                    \"company\": \"Testing This\"\n                },\n                {\n                    \"status\": \"Active Account\",\n                    \"date_modified\": \"01/04/2021\",\n                    \"num_offices\": 1,\n                    \"num_employees\": 25,\n                    \"phone\": \"555-555-5555\",\n                    \"annual_revenue\": 55.23,\n                    \"date_founded\": \"01/01/2019\",\n                    \"date_added\": \"12/25/2020\",\n                    \"url\": \"http://www.example.com\",\n                    \"placement_fee\": 0.025,\n                    \"address\": {},\n                    \"id\": 3,\n                    \"company\": \"Boo\"\n                },\n                {\n                    \"status\": \"Active Account\",\n                    \"date_modified\": \"11/20/2018\",\n                    \"num_offices\": \"\",\n                    \"num_employees\": \"\",\n                    \"phone\": \"\",\n                    \"annual_revenue\": \"\",\n                    \"date_founded\": \"01/09/2021\",\n                    \"date_added\": \"10/02/2013\",\n                    \"url\": \"\",\n                    \"placement_fee\": \"\",\n                    \"address\": {},\n                    \"id\": 2,\n                    \"company\": \"Another Company, Inc.\"\n                },\n                {\n                    \"status\": \"Active Account\",\n                    \"date_modified\": \"04/17/2018\",\n                    \"num_offices\": \"\",\n                    \"num_employees\": \"\",\n                    \"phone\": \"7166318981\",\n                    \"annual_revenue\": \"\",\n                    \"date_founded\": \"01/09/2021\",\n                    \"date_added\": \"08/27/2013\",\n                    \"url\": \"\",\n                    \"placement_fee\": \"\",\n                    \"address\": {},\n                    \"id\": 1,\n                    \"company\": \"Company 1\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientCorporation\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.26628\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2021-01-09T18:42:10\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"5 clients returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/ClientCorporation?count=100&query=status:\\\"Active Account\\\" OR status:Active OR status:Proposal&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.656842\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"5 clients returned\"\n}"}],"_postman_id":"3cf76d5a-b2b7-4251-9053-7a3fa189abf1"},{"name":"Client Set","id":"1531e738-111f-49cf-b2c1-def67cc7870d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5,\n                        \"phone\":\"999-111-0000\"\n            }\n }\n}"},"url":"{{ats-connect}}/client/set","description":"<p>For creating a client record</p>\n<ul>\n<li><p>company - <b>REQUIRED</b></p>\n</li>\n<li><p>phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>address1 - <b>REQUIRED</b></p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>REQUIRED</b></p>\n</li>\n<li><p>zip - <b>REQUIRED</b></p>\n</li>\n<li><p>country - <b>REQUIRED</b></p>\n</li>\n<li><p>date_founded -  <b>OPTIONAL</b></p>\n</li>\n<li><p>annual_revenue - <b>REQUIRED</b> - Annual revenue in millions of U.S. dollars</p>\n</li>\n<li><p>num_employees - <b>REQUIRED</b></p>\n</li>\n<li><p>num_offices - <b>REQUIRED</b></p>\n</li>\n<li><p>placement_fee - <b>REQUIRED</b> - Fee, expressed as a percentage, that will be paid for each Placement</p>\n</li>\n<li><p>status - <b>REQUIRED</b> - Status of the business relationship with this company; for example, Prospect, Active, and so forth</p>\n</li>\n<li><p>url - <b>OPTIONAL</b> - Web site URL, http:// is also optional</p>\n</li>\n</ul>\n<pre>\n \"api_request_data\":{\n            \"api_request_query\":{                          \n                \"company\":\"Boo\",                    \n                \"phone\":\"555-555-5555\",\n                \"address1\":\"123 Test Street\",\n                \"city\":\"Portland\",\n                \"state\":\"MAINE\",\n                \"zip\":\"04563\",\n                \"country\":\"Canada\",\n                \"date_added\": \"2009-12-12\",\n                \"annual_revenue\": 55.23,\n                \"num_employees\": 25,\n                \"num_offices\": 1,\n                \"placement_fee\": 2.5,\n                \"status\": \"Active\",\n                \"url\": \"http://www.example.com\"\n        }\n }\n </pre>","urlObject":{"path":["client","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"aa26e0f7-4883-421d-a71d-39764b078e0a","name":"Client Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"company\":\"Boo\",                    \n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"123 Test Street\",\n                        \"city\":\"Portland\",\n                        \"state\":\"MAINE\",\n                        \"zip\":\"04563\",\n                        \"country\":\"Canada\",\n                        \"date_added\": \"2009-12-12\",\n                        \"annual_revenue\": 55.23,\n                        \"num_employees\": 25,\n                        \"num_offices\": 1,\n                        \"placement_fee\": 250,\n                        \"status\": \"Active\",\n                        \"url\": \"http://www.example.com\"\n        }\n }\n}"},"url":"{{ats-connect}}/client/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Dec 2020 21:45:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"632"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1547357"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 3\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientCorporation\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.864785\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-12-25T21:45:04\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Client set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"companyURL\\\":\\\"http://www.example.com\\\",\\\"numEmployees\\\":\\\"25\\\",\\\"annualRevenue\\\":\\\"55.23\\\",\\\"status\\\":\\\"Active\\\",\\\"name\\\":\\\"Boo\\\",\\\"phone\\\":\\\"555-555-5555\\\",\\\"dateAdded\\\":\\\"2009-12-12\\\",\\\"feeArrangement\\\":\\\"250\\\",\\\"numOffices\\\":\\\"1\\\",\\\"address\\\":{\\\"zip\\\":\\\"04563\\\",\\\"city\\\":\\\"Portland\\\",\\\"address1\\\":\\\"123 Test Street\\\",\\\"state\\\":\\\"MAINE\\\"}}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/ClientCorporation?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.45597\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"1 Client set\"\n}"}],"_postman_id":"1531e738-111f-49cf-b2c1-def67cc7870d"},{"name":"Client Set By ID","id":"55c7c032-e442-4293-9b30-a3cf061ea87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5,\n                        \"phone\":\"999-111-0000\"\n            }\n }\n}"},"url":"{{ats-connect}}/client/set","description":"<p>For updating a client record</p>\n<ul>\n<li><p>id - <b>REQUIRED</b></p>\n</li>\n<li><p>company - <b>OPTIONAL</b></p>\n</li>\n<li><p>phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>zip - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n<li><p>date_founded -  <b>OPTIONAL</b></p>\n</li>\n<li><p>annual_revenue - <b>OPTIONAL</b> - Annual revenue in millions of U.S. dollars</p>\n</li>\n<li><p>num_employees - <b>OPTIONAL</b></p>\n</li>\n<li><p>num_offices - <b>OPTIONAL</b></p>\n</li>\n<li><p>placement_fee - <b>OPTIONAL</b> - Fee, expressed as a percentage, that will be paid for each Placement</p>\n</li>\n<li><p>status - <b>OPTIONAL</b> - Status of the business relationship with this company; for example, Prospect, Active, and so forth</p>\n</li>\n<li><p>url - <b>OPTIONAL</b> - Web site URL, http:// is also optional</p>\n</li>\n</ul>\n<pre>\n \"api_request_data\":{\n            \"api_request_query\":{                          \n                \"id\":5,                    \n                \"phone\":\"999-555-5555\"\n        }\n }\n </pre>","urlObject":{"path":["client","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2fccabee-abdf-4a2c-a53a-644bf210dc58","name":"Client Set By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5,\n                        \"phone\":\"999-111-0000\"\n            }\n }\n}"},"url":"{{ats-connect}}/client/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 21:22:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"492"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3183229"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 5\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientCorporation\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.42812\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2021-01-06T21:22:23\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxxe\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Client update\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"id\\\":\\\"5\\\",\\\"address\\\":{},\\\"phone\\\":\\\"999-111-0000\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/ClientCorporation/5?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.568066\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"1 Client update\"\n}"}],"_postman_id":"55c7c032-e442-4293-9b30-a3cf061ea87d"}],"id":"44da8fef-4906-422c-9219-8f9e7aea624c","_postman_id":"44da8fef-4906-422c-9219-8f9e7aea624c","description":""},{"name":"Contact","item":[{"name":"Contact Get","id":"75a5c72f-7822-4603-b257-4c58029d2ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\n                }\n    }\n}"},"url":"{{ats-connect}}/contact/get","description":"<p>For retrieving  all contact data.</p>\n\n<ul>\n<li><p>api_request_query - <b>REQUIRED</b></p>\n</li>\n<li><p>CandidateId - <b>OPTIONAL</b> - required if jobOrder is not specified</p>\n</li>\n<li><p>jobOrder - <b>OPTIONAL</b> - required if CandidateId is not specified</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{}        \n    }\n</pre>","urlObject":{"path":["contact","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5a014975-9fda-43de-9c42-dfb6b3a55e2b","name":"Contact Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\n                }\n    }\n}"},"url":"{{ats-connect}}/contact/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 21:50:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1319"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3183235"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/contact/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 5,\n            \"contact\": [\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"Archive\",\n                    \"skills\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"Testing This Too\",\n                    \"desired_skills\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"\",\n                    \"password\": \"mellumas\",\n                    \"address\": {},\n                    \"category\": {\n                        \"name\": \"Other Area(s)\",\n                        \"id\": 846574\n                    },\n                    \"id\": 823,\n                    \"desired_specialties\": \"\",\n                    \"owner\": {\n                        \"firstName\": \"Hayley Marketing\",\n                        \"lastName\": \"2017\",\n                        \"id\": 490\n                    },\n                    \"date_modified\": \"01/06/2021\",\n                    \"categories\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 846574\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"phone\": \"\",\n                    \"certifications\": \"\",\n                    \"description\": \"\",\n                    \"desired_categories\": \"\",\n                    \"username\": \"_348139636\",\n                    \"cell_phone\": \"\",\n                    \"employer_id\": {\n                        \"name\": \"Testing This Too\",\n                        \"id\": 5\n                    },\n                    \"date_added\": \"01/06/2021\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"contact_preference\": \"Phone\",\n                    \"first_name\": \"Default Contact\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"Archive\",\n                    \"skills\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"Testing This\",\n                    \"desired_skills\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"\",\n                    \"password\": \"scantyru\",\n                    \"address\": {},\n                    \"category\": {\n                        \"name\": \"Other Area(s)\",\n                        \"id\": 846574\n                    },\n                    \"id\": 822,\n                    \"desired_specialties\": \"\",\n                    \"owner\": {\n                        \"firstName\": \"Hayley Marketing\",\n                        \"lastName\": \"2017\",\n                        \"id\": 490\n                    },\n                    \"date_modified\": \"01/06/2021\",\n                    \"categories\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"phone\": \"\",\n                    \"certifications\": \"\",\n                    \"description\": \"\",\n                    \"desired_categories\": \"\",\n                    \"username\": \"_122992858\",\n                    \"cell_phone\": \"\",\n                    \"employer_id\": {\n                        \"name\": \"Testing This\",\n                        \"id\": 4\n                    },\n                    \"date_added\": \"01/06/2021\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"contact_preference\": \"Phone\",\n                    \"first_name\": \"Default Contact\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"Archive\",\n                    \"skills\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"Boo\",\n                    \"desired_skills\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"\",\n                    \"password\": \"ckelpirc\",\n                    \"address\": {},\n                    \"category\": {\n                        \"name\": \"Other Area(s)\",\n                        \"id\": 846574\n                    },\n                    \"id\": 821,\n                    \"desired_specialties\": \"\",\n                    \"owner\": {\n                        \"firstName\": \"Hayley Marketing\",\n                        \"lastName\": \"2017\",\n                        \"id\": 490\n                    },\n                    \"date_modified\": \"12/25/2020\",\n                    \"categories\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"phone\": \"\",\n                    \"certifications\": \"\",\n                    \"description\": \"\",\n                    \"desired_categories\": \"\",\n                    \"username\": \"_-786499449\",\n                    \"cell_phone\": \"\",\n                    \"employer_id\": {\n                        \"name\": \"Boo\",\n                        \"id\": 3\n                    },\n                    \"date_added\": \"12/25/2020\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"contact_preference\": \"Phone\",\n                    \"first_name\": \"Default Contact\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"Active\",\n                    \"skills\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"Doe\",\n                    \"desired_skills\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"\",\n                    \"password\": \"cairo698\",\n                    \"address\": {},\n                    \"category\": {\n                        \"name\": \"Other\",\n                        \"id\": 45\n                    },\n                    \"id\": 21,\n                    \"desired_specialties\": \"\",\n                    \"owner\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"date_modified\": \"11/20/2018\",\n                    \"categories\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"phone\": \"\",\n                    \"certifications\": \"\",\n                    \"description\": \"\",\n                    \"desired_categories\": \"\",\n                    \"username\": \"johndoe\",\n                    \"cell_phone\": \"\",\n                    \"employer_id\": {\n                        \"name\": \"Another Company, Inc.\",\n                        \"id\": 2\n                    },\n                    \"date_added\": \"10/02/2013\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"contact_preference\": \"\",\n                    \"first_name\": \"John\"\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"\",\n                    \"skills\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"1\",\n                    \"desired_skills\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"vaktest1@haleymarketing.com\",\n                    \"password\": \"568chicago\",\n                    \"address\": {},\n                    \"category\": {\n                        \"name\": \"Other\",\n                        \"id\": 45\n                    },\n                    \"id\": 3,\n                    \"desired_specialties\": \"\",\n                    \"owner\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"date_modified\": \"04/17/2018\",\n                    \"categories\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"phone\": \"\",\n                    \"certifications\": \"\",\n                    \"description\": \"\",\n                    \"desired_categories\": \"\",\n                    \"username\": \"contact1\",\n                    \"cell_phone\": \"\",\n                    \"employer_id\": {\n                        \"name\": \"Company 1\",\n                        \"id\": 1\n                    },\n                    \"date_added\": \"08/27/2013\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"contact_preference\": \"\",\n                    \"first_name\": \"Contact\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"ClientContact\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.180571\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2021-01-06T21:50:57\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error\",\n            \"VENDOR\": \"bullhorn\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"5 contacts returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/ClientContact?count=100&query=isDeleted:false&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"2.171772\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_contact\"\n    },\n    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for response from the origin ATS\"\n}"}],"_postman_id":"75a5c72f-7822-4603-b257-4c58029d2ad5"},{"name":"Contact Set","id":"ed0b7d74-958e-4253-bdc9-e1efdd8aa5fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{   \n                        \"first_name\":\"F\",\n                        \"last_name\":\"L\",\n                        \"email\":\"f_last@las.us\",\n                        \"phone\":\"888-900-0000\",\n                        \"opt_out\":0,\n                        \"title\":\"Technician\",\n                        \"type\":\"Primary\",\n                        \"employer\":{\"id\": 1},\n                        \"contact_preference\":\"email\",\n                        \"status\":\"New Lead\",\n                        \"owner\":{\"id\":490}\n        }\n }\n}"},"url":"{{ats-connect}}/contact/set","description":"<p>For creating a contact</p>\n<ul>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>opt_out - <strong>REQUIRED</strong> - Indicates whether the Contact has chosen not to be included in mass emails through the Bullhorn system.</p>\n</li>\n<li><p>certifications - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>description - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>comments - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>desired_skills - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>desired_categories - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>owner - object - {\"id\":490} - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>title - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>type - <strong>REQUIRED</strong> - Describes the type of Contact (for example, Primary, Secondary, Target, Gatekeeper). Possible values can be configured using field maps.</p>\n</li>\n<li><p>employer - <strong>REQUIRED</strong> - Client for which the Contact works.</p>\n<ul>\n<li>id - <strong>REQUIRED</strong></li>\n</ul>\n</li>\n<li><p>username - <strong>REQUIRED</strong> - Contact’s username for logging in to Bullhorn. The default value is _[random number].</p>\n</li>\n<li><p>password - <strong>REQUIRED</strong> - Contact’s password for logging in to Bullhorn. The default value is a randomly generated string.</p>\n</li>\n<li><p>contact_preference - <strong>REQUIRED</strong> - Contact's preferred method of contact (For example, phone, email, and so forth.)</p>\n</li>\n<li><p>status - <strong>REQUIRED</strong> - Status of the Contact; for example, New Lead, Active, Prospect, and so forth. Possible values can be configured using field maps.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test2@Test071416.com\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"Testing\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"955 Lincoln Rhodes\",\n                        \"city\":\"Portland\",\n                        \"state\":\"Oregon\",\n                        \"zip\":\"04563\",\n                        \"opt_out\":0,\n                        \"certifications\":\"ISO 90002\",\n                        \"description\":\"Contact to add\",\n                        \"comments\":\"No comments\",\n                        \"desired_skills\":\"Critical thinking\",\n                        \"desired_categories\":\"Category 1\",\n                        \"desired_specialties\":\"Thinking on feet\",\n                        \"title\":\"Human Resources Manager\",\n                        \"type\":\"Primary\",\n                        \"employer_id\":{\"id\": 3},\n                        \"username\":\"firs_las\",\n                        \"password\":\"!dg%k5f_SHN%$F\",\n                        \"contact_preference\":\"email\",\n                        \"status\":\"Active\"\n        }\n }\n\n</code></pre>","urlObject":{"path":["contact","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"32931c8d-599c-444e-937f-e7eb112b4409","name":"Contact Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{   \n                        \"first_name\":\"First\",\n                        \"last_name\":\"Last\",\n                        \"email\":\"first_last@las.us\",\n                        \"phone\":\"888-900-0000\",\n                        \"cell_phone\":\"800-000-0000\",\n                        \"opt_out\":1,\n                        \"certifications\":\"ISO 90006\",\n                        \"description\":\"Testing this out\",\n                        \"comments\":\"I am not sure what to say.\",\n                        \"desired_skills\":\"Quality Assurance\",\n                        \"desired_categories\":\"Quality\",\n                        \"desired_specialties\":\"Continuous Improvement\",\n                        \"title\":\"Technician\",\n                        \"type\":\"Primary\",\n                        \"employer\":{\"id\": 4},\n                        \"username\":\"firstlast\",\n                        \"password\":\"m.g%k5f_SHN%$F\",\n                        \"contact_preference\":\"email\",\n                        \"status\":\"Active\"                    \n        }\n }\n}"},"url":"{{ats-connect}}/contact/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 09 Jan 2021 18:43:43 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"767"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3067369"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/contact/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 825\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientContact\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.72425\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2021-01-09T18:43:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Contact added\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"massMailOptOut\\\":\\\"1\\\",\\\"status\\\":\\\"Active\\\",\\\"mobile\\\":\\\"800-000-0000\\\",\\\"comments\\\":\\\"I am not sure what to say.\\\",\\\"clientCorporation\\\":{\\\"id\\\":4},\\\"email\\\":\\\"first_last@las.us\\\",\\\"password\\\":\\\"m.g%k5f_SHN%$F\\\",\\\"lastName\\\":\\\"Last\\\",\\\"desiredSkills\\\":\\\"Quality Assurance\\\",\\\"address\\\":{},\\\"firstName\\\":\\\"First\\\",\\\"occupation\\\":\\\"Technician\\\",\\\"preferredContact\\\":\\\"email\\\",\\\"phone\\\":\\\"888-900-0000\\\",\\\"certifications\\\":\\\"ISO 90006\\\",\\\"description\\\":\\\"Testing this out\\\",\\\"desiredSpecialties\\\":\\\"Continuous Improvement\\\",\\\"username\\\":\\\"firstlast\\\",\\\"desiredCategories\\\":\\\"Quality\\\",\\\"type\\\":\\\"Primary\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/ClientContact?BhRestToken=081fdf6f-f4d1-4f6b-80dd-eb84bd8703cc\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.995239\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_contact\"\n    },\n    \"atsconnect_message\": \"1 Contact added\"\n}"}],"_postman_id":"ed0b7d74-958e-4253-bdc9-e1efdd8aa5fd"},{"name":"Contact Upsert","id":"b9ccd550-dd2c-476a-995c-af18f7c6ff99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"tfox@gmracing.com\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"Testing\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"955 Lincoln Rhodes\",\n                        \"city\":\"Portland\",\n                        \"state\":\"Oregon\",\n                        \"zip\":\"04563\",\n                        \"opt_out\":1,\n                        \"certifications\":\"ISO 90002\",\n                        \"description\":\"Contact to add\",\n                        \"comments\":\"Testing this out\",\n                        \"desired_skills\":\"Typography\",\n                        \"desired_categories\":\"Fascimile\",\n                        \"desired_specialties\":\"Teleprompter\",\n                        \"title\":\"Executive Assistant\",\n                        \"type\":\"Target\",\n                        \"username\":\"test2\",\n                        \"password\":\"!dg%k5f_SHN%$F\",\n                        \"contact_preference\":\"phone\",\n                        \"status\":\"New Lead\",\n                        \"owner\":{\"id\":490}\n                },\n                \"api_request_custom\":{\n                    \"customText1\":\"test\"\n                }\n        }\n}"},"url":"{{ats-connect}}/contact/upsert","description":"<p>For adding or updating a contact</p>\n<ul>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>opt_out - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Indicates whether the Contact has chosen not to be included in mass emails through the Bullhorn system.</p>\n</li>\n<li><p>certifications - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>description - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>comments - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>desired_skills - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>desired_categories - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>owner - object- {\"id\":490} - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>title - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>type - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Describes the type of Contact (for example, Primary, Secondary, Target, Gatekeeper). Possible values can be configured using field maps.</p>\n</li>\n<li><p>employer - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Client for which the Contact works.</p>\n<ul>\n<li>id - <strong>REQUIRED</strong> - if a record is being added or field is being updated</li>\n</ul>\n</li>\n<li><p>username - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Contact’s username for logging in to Bullhorn. The default value is _[random number].</p>\n</li>\n<li><p>password - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Contact’s password for logging in to Bullhorn. The default value is a randomly generated string.</p>\n</li>\n<li><p>contact_preference - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Contact's preferred method of contact (For example, phone, email, and so forth.)</p>\n</li>\n<li><p>status - <strong>REQUIRED</strong> - if a record is being added or field is being updated - Status of the Contact; for example, New Lead, Active, Prospect, and so forth. Possible values can be configured using field maps.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test2@Test071416.com\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"Testing\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"955 Lincoln Rhodes\",\n                        \"city\":\"Portland\",\n                        \"state\":\"Oregon\",\n                        \"zip\":\"04563\",\n                        \"opt_out\":0,\n                        \"certifications\":\"ISO 90002\",\n                        \"description\":\"Contact to add\",\n                        \"comments\":\"Testing this out\",\n                        \"desired_skills\":\"Typography\",\n                        \"desired_categories\":\"Fascimile\",\n                        \"desired_specialties\":\"Teleprompter\",\n                        \"title\":\"Executive Assistant\",\n                        \"type\":\"Target\",\n                        \"employer_id\":{\"id\": 5},\n                        \"username\":\"test2\",\n                        \"password\":\"!dg%k5f_SHN%$F\",\n                        \"contact_preference\":\"phone\",\n                        \"status\":\"New Lead\"\n        }\n }\n\n</code></pre>","urlObject":{"path":["contact","upsert"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"99120dcc-b7c7-4a06-bb15-2c87d7fa85c2","name":"Contact Upsert - Add","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test2@Test071416.com\",\n                        \"first_name\":\"Test\",\n                        \"last_name\":\"Testing\",\n                        \"phone\":\"555-555-5555\",\n                        \"address1\":\"955 Lincoln Rhodes\",\n                        \"city\":\"Portland\",\n                        \"state\":\"Oregon\",\n                        \"zip\":\"04563\",\n                        \"opt_out\":1,\n                        \"certifications\":\"ISO 90002\",\n                        \"description\":\"Contact to add\",\n                        \"comments\":\"Testing this out\",\n                        \"desired_skills\":\"Typography\",\n                        \"desired_categories\":\"Fascimile\",\n                        \"desired_specialties\":\"Teleprompter\",\n                        \"title\":\"Executive Assistant\",\n                        \"type\":\"Target\",\n                        \"employer\":{\"id\": 5},\n                        \"username\":\"test2\",\n                        \"password\":\"!dg%k5f_SHN%$F\",\n                        \"contact_preference\":\"phone\",\n                        \"status\":\"New Lead\"\n                }\n        }\n}"},"url":"{{ats-connect}}/contact/upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Jan 2021 16:28:03 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"795"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3067949"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/contact/upsert"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 827\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientContact\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.573551\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2021-01-12T16:28:05\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Contact added\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"massMailOptOut\\\":\\\"1\\\",\\\"status\\\":\\\"New Lead\\\",\\\"comments\\\":\\\"Testing this out\\\",\\\"clientCorporation\\\":{\\\"id\\\":5},\\\"email\\\":\\\"test2@Test071416.com\\\",\\\"password\\\":\\\"!dg%k5f_SHN%$F\\\",\\\"lastName\\\":\\\"Testing\\\",\\\"address\\\":{\\\"zip\\\":\\\"04563\\\",\\\"city\\\":\\\"Portland\\\",\\\"address1\\\":\\\"955 Lincoln Rhodes\\\",\\\"state\\\":\\\"Oregon\\\"},\\\"desiredSkills\\\":\\\"Typography\\\",\\\"firstName\\\":\\\"Test\\\",\\\"occupation\\\":\\\"Executive Assistant\\\",\\\"preferredContact\\\":\\\"phone\\\",\\\"phone\\\":\\\"555-555-5555\\\",\\\"certifications\\\":\\\"ISO 90002\\\",\\\"description\\\":\\\"Contact to add\\\",\\\"desiredSpecialties\\\":\\\"Teleprompter\\\",\\\"username\\\":\\\"test2\\\",\\\"desiredCategories\\\":\\\"Fascimile\\\",\\\"type\\\":\\\"Target\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/ClientContact?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.703134\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_contact\"\n    },\n    \"atsconnect_message\": \"1 Contact added\"\n}"},{"id":"d5a4baba-9ccd-4656-8c09-1fae30d63118","name":"Contact Upsert - Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"email\":\"test2@Test071416.com\",\n                        \"first_name\":\"Testee\"\n                    }\n        }\n}"},"url":"{{ats-connect}}/contact/upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 22 Jan 2021 17:02:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"512"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3184433"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/contact/upsert"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 827\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"ClientContact\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.483774\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2021-01-22T17:02:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Contact updated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"Testee\\\",\\\"email\\\":\\\"test2@Test071416.com\\\",\\\"id\\\":\\\"827\\\",\\\"address\\\":{}}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/ClientContact/827?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"2.336562\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_contact\"\n    },\n    \"atsconnect_message\": \"1 Contact updated\"\n}"}],"_postman_id":"b9ccd550-dd2c-476a-995c-af18f7c6ff99"}],"id":"eb3cf733-a99c-41ca-95eb-9d22f5043d93","_postman_id":"eb3cf733-a99c-41ca-95eb-9d22f5043d93","description":""},{"name":"Custom","item":[{"name":"Custom","id":"e7fab7be-15b2-4af1-937a-85fa098edb9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_fields\":\"id,name\",\n        \"api_custom_call\":\"Category\",\n        \"api_custom_action\":\"POST\",\n        \"api_custom_type\":\"query\",\n        \"api_request_query\":{\n        \t        \"name\":\"Hospitality\"\n        }\n    }\n}\n"},"url":"{{ats-connect}}/custom","description":"<p>For submitting or retreiving data.</p>\n\n<p><b>NOTE: Because this is a custom function you may need to refer to the Bullhorn Api Reference for detailed requirements of the call you're wanting to make.</b></p>\n\n<p>Here: <a href=\"http://developer.bullhorn.com/sites/default/files/BullhornRESTAPI_0.pdf\">Bullhorn REST API</a></p>\n\n<ul>\n<li><p>api_custom_call - <b>REQUIRED</b> - single value e.g. 'jobs' or 'people', or 'talentpools'</p>\n</li>\n<li><p>api_custom_action - <b>REQUIRED</b> - single value e.g. 'GET' or 'POST' or 'PATCH'</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL BASED ON CALL</b> - These will need to match the fields allowed for the specific API call</p>\n</li>\n<li><p>api_request_query - <b>OPTIONAL BASED ON CALL</b> - These will need to match the query parameters set for the specific API call</p>\n</li>\n<li><p>api_request_custom - <b>OPTIONAL BASED ON CALL</b> - These will need to match the field parameters set for the specific API call</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_request_fields\":\"id,firstName,lastName,email,phone,mobile,address,dateOfBirth,disability,ethnicity,gender,veteran,massMailOptOut,source,description,dateAdded,skillSet,salary,occupation,employmentPreference,categories,category,owner\",\n        \"api_custom_call\":\"Candidate\",\n        \"api_custom_action\":\"GET\",\n        \"api_custom_type\":\"search\",\n        \"api_request_query\":{\n                    \"firstName\":\"test\"\n        }\n    }\n</pre>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ea0b5fb7-bf20-4f0b-9960-6c813c85167b","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_fields\":\"id,firstName,lastName,email,phone,mobile,address,dateOfBirth,disability,ethnicity,gender,veteran,massMailOptOut,source,description,dateAdded,skillSet,salary,occupation,employmentPreference,categories,category,owner\",\n        \"api_custom_call\":\"Candidate\",\n        \"api_custom_action\":\"GET\",\n        \"api_custom_type\":\"search\",\n        \"api_request_query\":{\n        \t        \"firstName\":\"test\"\n        }\n    }\n}\n"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 22:42:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"14623"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272691"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": [\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker121119@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 754,\n                \"lastName\": \"test21\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1576095958237,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker12519-1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 750,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"MA\",\n                    \"address2\": null,\n                    \"city\": \"Milltown\",\n                    \"zip\": \"70543\",\n                    \"address1\": \"10 Paper Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"<HTML>\\r\\n<HEAD>\\r\\n<!-- saved from url=(0014)about:internet --><META HTTP-EQUIV=\\\"Content-Type\\\" CONTENT=\\\"text/html; charset=utf-8\\\">\\r\\n<style>\\r\\n\\tp.std   { margin-top: 0; margin-bottom: 0; border: 0 0 0 0; }\\r\\n</style>\\r\\n</HEAD>\\r\\n<BODY>\\r\\n\\n<!-- [[[ PDF.Page-->\\n<BR>\\nAmanda Billings <BR>\\n10 Paper Road â\\u0080¢ Milltown, MA 70543 â\\u0080¢ (555) 123-1234 â\\u0080¢ amanda_billings@email.com <BR>\\nACCOUNTING MANAGER <BR>\\nHighly organized and diligent professional drawing upon ten years of experience in accounting and finance <BR>\\nto contribute to smooth and productive operations. Collaborate cross-functionally across organizational <BR>\\nlevels to build consensus, track benchmark achievement, and troubleshoot emerging issues. &nbsp;<BR>\\n- Core Competencies - <BR>\\nâ\\u0080¢ Bookkeeping: AP, AR, Account Reconciliations, <BR>\\nPayroll <BR>\\nâ\\u0080¢ Oral and Written Communications <BR>\\nâ\\u0080¢ Federal and State Tax Preparation <BR>\\nâ\\u0080¢ Office Administration <BR>\\nâ\\u0080¢ Positive Teamwork and Collaboration <BR>\\nâ\\u0080¢ QuickBooks and Microsoft Office Suite <BR>\\nPROFESSIONAL EXPERIENCE <BR>\\nBarclay Professional Accounting Services, Inc., Milltown, MA <BR>\\nPractice Manager (October 2014 â\\u0080\\u0093 Present) <BR>\\nHandle and optimize all administrative operations for 7-physician medical practice. Scope of <BR>\\nresponsibilities includes: accounts receivable / payable, accounting, budget review, and preparation of <BR>\\nfinancials for CPA. Selected Contributions: <BR>\\nâ\\u0080¢ Eliminated backlog in financial reporting responsibilities within 25 days of initial hiring . <BR>\\nâ\\u0080¢ Successfully project-managed acquisition and installation of state-of-the-art healthcare billing <BR>\\nsoftware that reduced errors by 30%. <BR>\\nReddington Hardware , Wellington, MA <BR>\\nAccountant (August 2008 â\\u0080\\u0093 October 2014) <BR>\\nSkillfully performed all office accounting tasks for small hardware store. Gathered and analyzed financial <BR>\\ndata, and processed accounts payable, accounts receivable, and payroll for workforce of 35 personnel. <BR>\\nSelected Contributions: <BR>\\nâ\\u0080¢ Created monthly and annual budget and forecast reports that contributed to a 5% decrease in <BR>\\nannual expenditures . <BR>\\nâ\\u0080¢ Migrated accounting system to a new software provider and integrated all accounting, <BR>\\nbookkeeping, tax, and payroll functions into the new system. <BR>\\nEDUCATION &amp; CREDENTIALS <BR>\\nVermont State College , Rutland, VT <BR>\\nBachelor of Science in Accounting, 2007 <BR>\\nGraduated Magna cum Laude &nbsp;<BR>\\n&nbsp;<BR> \\n<BR>\\n\\n<!-- ]]] PDF.Page-->\\n<P style=\\\"page-break-before:always; border-top-style: dashed; border-top-width:thin; color:silver; \\\" ></P></BODY></HTML>\",\n                \"salary\": 0,\n                \"dateAdded\": 1575580629173,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker12519@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 749,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"MA\",\n                    \"address2\": null,\n                    \"city\": \"Milltown\",\n                    \"zip\": \"70543\",\n                    \"address1\": \"10 Paper Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; line-height:115%; font-size:24pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; font-weight:bold\\\">Amanda Billings</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; line-height:115%; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">10 Paper Road â\\u0080¢ Milltown, MA 70543 â\\u0080¢ (555) 123-1234 â\\u0080¢ amanda_billings@email.com</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:2pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:18pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">ACCOUNTING MANAGER</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:9pt; margin-bottom:0pt; text-align:justify; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<a name=\\\"_Hlk522525703\\\"><span style=\\\"font-family:Helvetica\\\">Highly organized and diligent professional drawing upon ten years of experience in accounting and finance to contribute to smooth and productive operations. Collaborate cross-functionally across organizational levels to build consensus, track benchmark achievement, and troubleshoot emerging issues. </span></a>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:6pt; margin-bottom:6pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">- Core Competencies -</span></p>\\r\\n\\t\\t\\t<div style=\\\"text-align:center\\\">\\r\\n\\t\\t\\t\\t<table cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" style=\\\"width:100.68%; margin-right:auto; margin-left:auto; border-collapse:collapse\\\">\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td style=\\\"width:261.9pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:top\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Bookkeeping: AP, AR, Account Reconciliations, Payroll</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Oral and Written Communications</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Federal and State Tax Preparation</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t<td style=\\\"width:242.05pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:top\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Office Administration</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Positive Teamwork and Collaboration</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:18pt; margin-bottom:0pt; text-indent:-13.5pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">QuickBooks and Microsoft Office Suite</span>\\r\\n\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t</div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:10pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:18pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">PROFESSIONAL EXPERIENCE</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:12pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"-aw-bookmark-end:_Hlk522525703\\\"></span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">Barclay Professional Accounting Services, Inc.,</span><span style=\\\"font-family:Helvetica\\\"> Milltown, MA</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Practice Manager</span><span style=\\\"font-family:Helvetica\\\"> (October 2014 â\\u0080\\u0093 Present)</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Handle and optimize all administrative operations for 7-physician medical practice. Scope of responsibilities includes: accounts receivable / payable, accounting, budget review, and preparation of financials for CPA. </span><span style=\\\"font-family:Helvetica; font-style:italic\\\">Selected Contributions:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Eliminated backlog in financial reporting responsibilities within </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">25 days of initial hiring</span><span style=\\\"font-family:Helvetica\\\">.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt; font-variant:small-caps\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Successfully project-managed acquisition and installation of state-of-the-art healthcare billing software that reduced errors </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">by 30%.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:18pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-weight:bold\\\">Reddington Hardware</span><span style=\\\"font-family:Helvetica\\\">, Wellington, MA</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Accountant</span><span style=\\\"font-family:Helvetica\\\"> (August 2008 â\\u0080\\u0093 October 2014)</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Skillfully performed all office accounting tasks for small hardware store. Gathered and analyzed financial data, and processed accounts payable, accounts receivable, and payroll for workforce of 35 personnel. </span><span style=\\\"font-family:Helvetica; font-style:italic\\\">Selected Contributions:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Created monthly and annual budget and forecast reports that contributed to a </span><span style=\\\"font-family:Helvetica; font-weight:bold\\\">5% decrease in annual expenditures</span><span style=\\\"font-family:Helvetica\\\">.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:5pt; margin-left:45.35pt; margin-bottom:0pt; text-indent:-18pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-size:9pt\\\">?</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:Helvetica\\\">Migrated accounting system to a new software provider and integrated all accounting, bookkeeping, tax, and payroll functions into the new system.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:20pt; margin-bottom:10pt; text-align:center; line-height:115%; border-top:0.75pt solid #7f7f7f; padding-top:20pt; font-size:15pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Helvetica Light'; letter-spacing:0.5pt\\\">EDUCATION &amp; CREDENTIALS</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-weight:bold\\\">Vermont State College</span><span style=\\\"font-family:Helvetica\\\">, Rutland, VT</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica\\\">Bachelor of Science in Accounting, 2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; font-style:italic\\\">Graduated Magna cum Laude </span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; line-height:115%; widows:0; orphans:0; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:Helvetica; color:#4472c4\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<div style=\\\"-aw-headerfooter-type:footer-primary\\\">\\r\\n\\t\\t\\t\\t<p style=\\\"margin-top:4pt; margin-bottom:0pt; text-align:center; font-size:10pt\\\">\\r\\n\\t\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">â\\u0080¦continuedâ\\u0080¦</span>\\r\\n\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t</div>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                \"salary\": 0,\n                \"dateAdded\": 1575580324383,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"latiftest3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 747,\n                \"lastName\": \"tester\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"7164161572\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572543160877,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test10311904@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 745,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"TESt\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572539871360,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test10311903@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 743,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"TESt\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572539606213,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakertest1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 742,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572538496540,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test10311902@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 740,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"TESt\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572537726493,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test10311901@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 739,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"TESt\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572533923153,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemake@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 738,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572533382300,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tiffany@halemarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 737,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572533224710,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tiffany@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 735,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1572456150603,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tms10102019@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 734,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1570730530120,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09167@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 727,\n                \"lastName\": \"test21\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568665217477,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09166@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 726,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568664764520,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09165@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 724,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568663832617,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09164@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 723,\n                \"lastName\": \"tester\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568663699497,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09163@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 722,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568663467937,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09162@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 721,\n                \"lastName\": \"test21\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568656865773,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tiffany09161@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 720,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568656791090,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker09161@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 719,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1568656750863,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker030719@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 718,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1551975456527,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker030519-5@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 716,\n                \"lastName\": \"Shoemaker\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Tiffany Shoemaker</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">94 North Transit Road</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Lockport, NY 14094&#xa0;</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">(555) 555-5555</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<a href=\\\"#sanitized\\\" style=\\\"text-decoration:none\\\"><span style=\\\"font-family:'Times New Roman'; font-weight:bold; text-decoration:underline; color:#0000ff\\\">tshoemaker020519-1@haleymarketing.com</span></a>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Education:</span><span style=\\\"width:20.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">State University of New York at Buffalo</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Master of Science in Nursing, Anticipated May 2008</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:36pt; margin-bottom:0pt; text-indent:36pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">Family Nurse Practitioner </span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Daemen College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Nursing, May 2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Summa cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Erie Community College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Associate of Applied Science in Nursing, January 2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Magna cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Ithaca College</span><span style=\\\"width:4.49pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Health Information Administration, May 1997</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Nurse Practitioner Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Hamilton B. Mizer Primary Care</span><span style=\\\"width:23.3pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           8/2007 â\\u0080\\u0093 12/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Niagara Falls, NY</span><span style=\\\"width:27.66pt; display:inline-block\\\"></span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Wendy Bissell FNP</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Newfane Family Medicine</span><span style=\\\"width:21.2pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             1/2007 â\\u0080\\u0093 8/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Newfane, NY</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Maggie Desmarais FNP</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Work Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  </span><span style=\\\"width:35.35pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           7/2003 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Buffalo Cardiology and Pulmonary Associates</span><span style=\\\"width:35.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             9/1998 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                \"salary\": 0,\n                \"dateAdded\": 1551809475900,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker030519-2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 714,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"7166318981\",\n                \"description\": \"<HTML>\\r\\n<HEAD>\\r\\n<!-- saved from url=(0014)about:internet --><META HTTP-EQUIV=\\\"Content-Type\\\" CONTENT=\\\"text/html; charset=utf-8\\\">\\r\\n<style>\\r\\n\\tp.std   { margin-top: 0; margin-bottom: 0; border: 0 0 0 0; }\\r\\n</style>\\r\\n</HEAD>\\r\\n<BODY>\\r\\n\\n<!-- [[[ PDF.Page-->\\n<BR>\\ntest test1 <BR>\\n94 North Transit Road <BR>\\nLockport, NY 14094 <BR>\\n(555) 555-5555 <BR>\\nt_foltz@yahoo.com <BR>\\n&nbsp;&nbsp;<BR>\\n&nbsp;<BR>\\nEducation: State University of New York at Buffalo <BR>\\n&nbsp;&nbsp;Master of Science in Nursing, Anticipated May 2008 <BR>\\nFamily Nurse Practitioner &nbsp;<BR>\\n&nbsp;&nbsp;Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter &nbsp;<BR>\\n&nbsp;&nbsp;Daemen College <BR>\\n&nbsp;&nbsp;Bachelor of Science in Nursing, May 2005 <BR>\\n&nbsp;&nbsp;Summa cum Laude <BR>\\n&nbsp;<BR>\\n&nbsp;&nbsp;Erie Community College <BR>\\n&nbsp;&nbsp;Associate of Applied Science in Nursing, January 2003 <BR>\\n&nbsp;&nbsp;Magna cum Laude <BR>\\n&nbsp;&nbsp;Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter &nbsp;<BR>\\n&nbsp;&nbsp;Ithaca College &nbsp;&nbsp;&nbsp;<BR>\\n&nbsp;&nbsp;Bachelor of Science in Health Information Administration, May 1997 &nbsp;Nurse Practitioner Experience: &nbsp;&nbsp;&nbsp;<BR>\\n&nbsp;&nbsp;Hamilton B. Mizer Primary Care &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8/2007 â\\u0080\\u0093 12/2007 <BR>\\n&nbsp;&nbsp;Niagara Falls, NY &nbsp;<BR>\\n&nbsp;&nbsp;Preceptor: &nbsp;Wendy Bissell FNP &nbsp;<BR>\\n&nbsp;&nbsp;Newfane Family Medicine &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1/2007 â\\u0080\\u0093 8/2007 <BR>\\n&nbsp;&nbsp;Newfane, NY <BR>\\n&nbsp;&nbsp;Preceptor: &nbsp;Maggie Desmarais FNP &nbsp;<BR>\\nWork Experience: &nbsp;<BR>\\n&nbsp;&nbsp;Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7/2003 â\\u0080\\u0093 present <BR>\\n&nbsp;&nbsp;Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present <BR>\\n&nbsp;&nbsp;Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005 <BR>\\n&nbsp;&nbsp;Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004 &nbsp;<BR>\\n&nbsp;&nbsp;Buffalo Cardiology and Pulmonary Associates &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9/1998 â\\u0080\\u0093 1/2006 <BR>\\n&nbsp;&nbsp;Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006 <BR>\\n&nbsp;&nbsp;Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003 &nbsp;<BR>\\n&nbsp;&nbsp;<BR> \\n<BR>\\n\\n<!-- ]]] PDF.Page-->\\n<P style=\\\"page-break-before:always; border-top-style: dashed; border-top-width:thin; color:silver; \\\" ></P></BODY></HTML>\",\n                \"salary\": 0,\n                \"dateAdded\": 1551809340103,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker022719@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 711,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1551301721473,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker222-1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 706,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1550852888207,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker222-0@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 705,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Tiffany Shoemaker</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">94 North Transit Road</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Lockport, NY 14094&#xa0;</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">(555) 555-5555</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<a href=\\\"#sanitized\\\" style=\\\"text-decoration:none\\\"><span style=\\\"font-family:'Times New Roman'; font-weight:bold; text-decoration:underline; color:#0000ff\\\">tshoemaker020519-1@haleymarketing.com</span></a>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Education:</span><span style=\\\"width:20.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">State University of New York at Buffalo</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Master of Science in Nursing, Anticipated May 2008</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-left:36pt; margin-bottom:0pt; text-indent:36pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">Family Nurse Practitioner </span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Daemen College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Nursing, May 2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Summa cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Erie Community College</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Associate of Applied Science in Nursing, January 2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Magna cum Laude</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-style:italic\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Ithaca College</span><span style=\\\"width:4.49pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Bachelor of Science in Health Information Administration, May 1997</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Nurse Practitioner Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Hamilton B. Mizer Primary Care</span><span style=\\\"width:23.3pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           8/2007 â\\u0080\\u0093 12/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Niagara Falls, NY</span><span style=\\\"width:27.66pt; display:inline-block\\\"></span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Wendy Bissell FNP</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Newfane Family Medicine</span><span style=\\\"width:21.2pt; display:inline-block\\\"></span><span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             1/2007 â\\u0080\\u0093 8/2007</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Newfane, NY</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Preceptor:  Maggie Desmarais FNP</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Work Experience:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  </span><span style=\\\"width:35.35pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">           7/2003 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">Buffalo Cardiology and Pulmonary Associates</span><span style=\\\"width:35.05pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'; font-weight:bold\\\">             9/1998 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"width:36pt; display:inline-block\\\"></span><span style=\\\"font-family:'Times New Roman'\\\">Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; text-align:center; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Times New Roman'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                \"salary\": 0,\n                \"dateAdded\": 1550852759740,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker011418@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 693,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1547487871247,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"7166398621\",\n                \"email\": \"tshoemaker13@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 690,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536845470397,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker84@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 689,\n                \"lastName\": \"test6\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536785250193,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"5552007497\",\n                \"email\": \"tshoemaker48@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 688,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536785027437,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"5552007497\",\n                \"email\": \"tshoemaker26@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 687,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536784479550,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"7168889999\",\n                \"email\": \"tshoemaker159@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 686,\n                \"lastName\": \"test4\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536782868317,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker147@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 684,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536782117903,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker258@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 683,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536781854370,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker369@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 682,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536770305977,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker963@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 681,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536770095057,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker852@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 680,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536769805627,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker741@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 679,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536769763133,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker7895@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 678,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536769690217,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker7894@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 677,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536769122940,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker789@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 676,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536769032567,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker1231@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 675,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536760860973,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker1234@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 674,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1536678837813,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker-pdf@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 669,\n                \"lastName\": \"test3\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"test test1\\r\\n                                 94 North Transit Road\\r\\n                                  Lockport, NY 14094\\r\\n                                     (555) 555-5555\\r\\n                                  t_foltz@yahoo.com\\r\\n\\r\\n\\r\\nEducation:    State University of New York at Buffalo\\r\\n              Master of Science in Nursing, Anticipated May 2008\\r\\n              Family Nurse Practitioner\\r\\n              Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter\\r\\n\\r\\n              Daemen College\\r\\n              Bachelor of Science in Nursing, May 2005\\r\\n              Summa cum Laude\\r\\n\\r\\n              Erie Community College\\r\\n              Associate of Applied Science in Nursing, January 2003\\r\\n              Magna cum Laude\\r\\n              Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter\\r\\n\\r\\n              Ithaca College\\r\\n              Bachelor of Science in Health Information Administration, May 1997\\r\\n\\r\\nNurse Practitioner Experience:\\r\\n\\r\\n              Hamilton B. Mizer Primary Care                              8/2007 â\\u0080\\u0093 12/2007\\r\\n              Niagara Falls, NY\\r\\n              Preceptor: Wendy Bissell FNP\\r\\n\\r\\n              Newfane Family Medicine                                      1/2007 â\\u0080\\u0093 8/2007\\r\\n              Newfane, NY\\r\\n              Preceptor: Maggie Desmarais FNP\\r\\n\\r\\nWork Experience:\\r\\n\\r\\n              Kaleida Health â\\u0080\\u0093 Millard Fillmore Suburban                  7/2003 â\\u0080\\u0093 present\\r\\n              Nurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present\\r\\n              Nurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005\\r\\n              Nurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004\\r\\n\\r\\n              Buffalo Cardiology and Pulmonary Associates                  9/1998 â\\u0080\\u0093 1/2006\\r\\n              Nurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006\\r\\n              Health Information Analyst, 9/1998 â\\u0080\\u0093 9/2003\",\n                \"salary\": 0,\n                \"dateAdded\": 1528468148977,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker-docx@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 668,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"Tiffany Shoemaker\\r\\n6028 Sheridan Drive\\r\\nWilliamsville, NY 14221\\r\\n888-696-2900\\r\\ntshoemaker@haleymarketing.com\\r\\nVersion 2\\r\\n\\r\\nEducation:\\tState University of New York at Buffalo\\r\\n\\t\\tMaster of Science in Nursing, Anticipated May 2008\\r\\nFamily Nurse Practitioner\\r\\n\\t\\tMember, Sigma Theta Tau Honor Society, Gamma Kappa chapter\\r\\n\\r\\n\\t\\tDaemen College\\r\\n\\t\\tBachelor of Science in Nursing, May 2005\\r\\n\\t\\tSumma cum Laude\\r\\n\\r\\n\\t\\tErie Community College\\r\\n\\t\\tAssociate of Applied Science in Nursing, January 2003\\r\\n\\t\\tMagna cum Laude\\r\\n\\t\\tMember, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter\\r\\n\\r\\n\\t\\tIthaca College\\r\\n\\t\\tBachelor of Science in Health Information Administration, May 1997\\r\\n\\r\\nNurse Practitioner Experience:\\r\\n\\r\\n\\t\\tHamilton B. Mizer Primary Care\\t\\t\\t           8/2007 â\\u0080\\u0093 12/2007\\r\\n\\t\\tNiagara Falls, NY\\r\\n\\t\\tPreceptor:  Wendy Bissell FNP\\r\\n\\r\\n\\t\\tNewfane Family Medicine\\t\\t\\t\\t             1/2007 â\\u0080\\u0093 8/2007\\r\\n\\t\\tNewfane, NY\\r\\n\\t\\tPreceptor:  Maggie Desmarais FNP\\r\\n\\r\\nWork Experience:\\r\\n\\r\\n\\t\\tKaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  \\t           7/2003 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005\\r\\n\\t\\tNurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004\\r\\n\\r\\n\\t\\tBuffalo Cardiology and Pulmonary Associates\\t             9/1998 â\\u0080\\u0093 1/2006\\r\\n\\t\\tNurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006\\r\\n\\t\\tHealth Information Analyst, 9/1998 â\\u0080\\u0093 9/2003\",\n                \"salary\": 0,\n                \"dateAdded\": 1528468062057,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker-doc@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 667,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"Tiffany Shoemaker\\r\\n6028 Sheridan Drive\\r\\nWilliamsville, NY 14221\\r\\n888-696-2900\\r\\ntshoemaker@haleymarketing.com\\r\\nVersion 2\\r\\n\\r\\nEducation:\\tState University of New York at Buffalo\\r\\n\\t\\tMaster of Science in Nursing, Anticipated May 2008\\r\\nFamily Nurse Practitioner\\r\\n\\t\\tMember, Sigma Theta Tau Honor Society, Gamma Kappa chapter\\r\\n\\r\\n\\t\\tDaemen College\\r\\n\\t\\tBachelor of Science in Nursing, May 2005\\r\\n\\t\\tSumma cum Laude\\r\\n\\r\\n\\t\\tErie Community College\\r\\n\\t\\tAssociate of Applied Science in Nursing, January 2003\\r\\n\\t\\tMagna cum Laude\\r\\n\\t\\tMember, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter\\r\\n\\r\\n\\t\\tIthaca College\\r\\n\\t\\tBachelor of Science in Health Information Administration, May 1997\\r\\n\\r\\nNurse Practitioner Experience:\\r\\n\\r\\n\\t\\tHamilton B. Mizer Primary Care\\t\\t\\t           8/2007 â\\u0080\\u0093 12/2007\\r\\n\\t\\tNiagara Falls, NY\\r\\n\\t\\tPreceptor:  Wendy Bissell FNP\\r\\n\\r\\n\\t\\tNewfane Family Medicine\\t\\t\\t\\t             1/2007 â\\u0080\\u0093 8/2007\\r\\n\\t\\tNewfane, NY\\r\\n\\t\\tPreceptor:  Maggie Desmarais FNP\\r\\n\\r\\nWork Experience:\\r\\n\\r\\n\\t\\tKaleida Health â\\u0080\\u0093 Millard Fillmore Suburban  \\t           7/2003 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Mother-Baby Unit, 11/2005 â\\u0080\\u0093 present\\r\\n\\t\\tNurse, Critical Care Unit, 11/2004 â\\u0080\\u0093 11/2005\\r\\n\\t\\tNurse, Orthopedics/Medical-Surgical, 7/2003 â\\u0080\\u0093 11/2004\\r\\n\\r\\n\\t\\tBuffalo Cardiology and Pulmonary Associates\\t             9/1998 â\\u0080\\u0093 1/2006\\r\\n\\t\\tNurse, Telephone Triage, 9/2003 â\\u0080\\u0093 1/2006\\r\\n\\t\\tHealth Information Analyst, 9/1998 â\\u0080\\u0093 9/2003\",\n                \"salary\": 0,\n                \"dateAdded\": 1528468026937,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakertest2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 666,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1527191922787,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker050818-06@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 665,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": null,\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1525813138810,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112817-1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 654,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511895125207,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112817@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 653,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511894956667,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112717-5@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 651,\n                \"lastName\": \"jbapplynoneselected\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511809452607,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112717-3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 650,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511809263657,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112717-2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 649,\n                \"lastName\": \"Shoemaker\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"5338 Greenhurst Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"7162007497\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511809142070,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112717-1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 648,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511809061717,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker112717@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 647,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1511809014813,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker111517-3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 624,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1510779184953,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker111517-2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 623,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1510778833253,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker111517-1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 622,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1510778439100,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker111517@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 621,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1510778285787,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"test\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker111417@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 616,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1510696662327,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test@test123.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 585,\n                \"lastName\": \"test123\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1508939299997,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"test\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker091817-03@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 542,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1505768661230,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"referral\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker091817-02@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 541,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"M\",\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1505765957413,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"B\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker091817-01@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 540,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"M\",\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1505765884030,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"C\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"C\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker091817@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 539,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"C\",\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1505765308617,\n                \"_score\": 1,\n                \"disability\": \"C\"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker082917@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 506,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Hayley Marketing\",\n                    \"lastName\": \"2017\",\n                    \"id\": 490\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1504031602913,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": [\n                    \"This is the section where I typed in additional skills-resume parser to list additional skills.\"\n                ],\n                \"massMailOptOut\": false,\n                \"veteran\": \" \",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"\",\n                \"mobile\": \"7165555555\",\n                \"email\": \"tshoemaker08-01-2017-03@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Banking & Finance\",\n                    \"id\": 847391\n                },\n                \"id\": 504,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"Canada\",\n                    \"countryCode\": \"CA\",\n                    \"state\": \"Ontario\",\n                    \"address2\": \"\",\n                    \"city\": \"Lockport\",\n                    \"zip\": \"N5F 7T5\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 2216\n                },\n                \"gender\": \" \",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Direct Hire\",\n                    \"Contract To Hire\"\n                ],\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Health Care\",\n                            \"id\": 847394\n                        },\n                        {\n                            \"name\": \"Admin - Clerical\",\n                            \"id\": 847392\n                        },\n                        {\n                            \"name\": \"Banking & Finance\",\n                            \"id\": 847391\n                        }\n                    ],\n                    \"total\": 3\n                },\n                \"occupation\": \"Head Bottle Washer\",\n                \"phone\": \"7166314444\",\n                \"description\": \"<p>Spicy jalapeno bacon ipsum dolor amet beef ribs t-bone bacon swine, pork belly sirloin ipsum occaecat ad cow short ribs tempor sausage. Est dolor ut venison cillum culpa cupidatat. Ea tongue enim esse. Rump chuck picanha swine salami meatball pork belly biltong short ribs sed. Duis sirloin ground round eiusmod.</p>\\r\\n\\r\\n<p>Laborum minim pork, ullamco sed anim in magna pastrami. Qui pork loin ham brisket esse boudin meatball. Burgdoggen ut shoulder qui meatball kielbasa. Est meatball pork chuck cupim quis fatback spare ribs jerky enim. Quis andouille rump ipsum ullamco dolor in occaecat pork chop turducken filet mignon culpa frankfurter. Kevin labore tempor, deserunt sirloin aliquip sunt velit voluptate pastrami porchetta pancetta.</p>\\r\\n\\r\\n<p>&nbsp;</p>\\r\\n\",\n                \"salary\": 25000,\n                \"dateAdded\": 1501608278207,\n                \"_score\": 1,\n                \"disability\": \" \"\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \" \",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"\",\n                \"mobile\": \"\",\n                \"email\": \"tshoemaker08012017-01@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 503,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": \"\",\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": \" \",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": \"\",\n                \"phone\": \"555-555-1212\",\n                \"description\": \"<p>test test1 94 North Transit Road Lockport, NY 14094 (555) 555-5555 t_foltz@yahoo.com Education: State University of New York at Buffalo Master of Science in Nursing, Anticipated May 2008 Family Nurse Practitioner Member, Sigma Theta Tau Honor Society, Gamma Kappa chapter Daemen College Bachelor of Science in Nursing, May 2005 Summa cum Laude Erie Community College Associate of Applied Science in Nursing, January 2003 Magna cum Laude Member, Phi Beta Kappa Honor Society, Alpha Nu Delta chapter Ithaca College Bachelor of Science in Health Information Administration, May 1997 Nurse Practitioner Experience: Hamilton B. Mizer Primary Care 8/2007 &ndash; 12/2007 Niagara Falls, NY Preceptor: Wendy Bissell FNP Newfane Family Medicine 1/2007 &ndash; 8/2007 Newfane, NY Preceptor: Maggie Desmarais FNP Work Experience: Kaleida Health &ndash; Millard Fillmore Suburban 7/2003 &ndash; present Nurse, Mother-Baby Unit, 11/2005 &ndash; present Nurse, Critical Care Unit, 11/2004 &ndash; 11/2005 Nurse, Orthopedics/Medical-Surgical, 7/2003 &ndash; 11/2004 Buffalo Cardiology and Pulmonary Associates 9/1998 &ndash; 1/2006 Nurse, Telephone Triage, 9/2003 &ndash; 1/2006 Health Information Analyst, 9/1998 &ndash; 9/2003</p>\\r\\n\",\n                \"salary\": 0,\n                \"dateAdded\": 1501607245647,\n                \"_score\": 1,\n                \"disability\": \" \"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"18886962900\",\n                \"email\": \"tshoemaker071117@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 501,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"18886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1499798310867,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \" \",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tms062017@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Information Technology\",\n                    \"id\": 847396\n                },\n                \"id\": 499,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": \"\",\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \" \",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Information Technology\",\n                            \"id\": 847396\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": \"\",\n                \"phone\": \"8886962900\",\n                \"description\": \"\",\n                \"salary\": 0,\n                \"dateAdded\": 1497979898807,\n                \"_score\": 1,\n                \"disability\": \" \"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker060917-4@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 498,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"F\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1497032439523,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": [\n                    \"testing\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakerindeed4@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 495,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1496249712260,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakerindeed3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 493,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1496238372723,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakerindeed2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 492,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1496238241173,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakerindeed1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 491,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1496237351747,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"555-555-1212\",\n                \"email\": \"tets@Test051017.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 487,\n                \"lastName\": \"Test051017\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"Or\",\n                    \"address2\": null,\n                    \"city\": \"Portland\",\n                    \"zip\": \"97086\",\n                    \"address1\": \"1234 Any St\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"555-123-4567\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1494438394647,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"routing@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 486,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1494277926833,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"050517@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 485,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1494010165030,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"11@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 382,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106737663,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"10@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 381,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106681137,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"9@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 380,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106590353,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"8@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 379,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106529850,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"7@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 378,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106482837,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"6@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 377,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106404767,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"5@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 376,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490106350910,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 375,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490105922747,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 374,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490105870250,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"1234@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 373,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490105795080,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"123@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 372,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1490105745900,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \" \",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"t2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 371,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": \"\",\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \" \",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Test\",\n                    \"id\": 72\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [\n                        {\n                            \"name\": \"Other Area(s)\",\n                            \"id\": 846574\n                        }\n                    ],\n                    \"total\": 1\n                },\n                \"occupation\": \"\",\n                \"phone\": \"8886962900\",\n                \"description\": \"\",\n                \"salary\": 0,\n                \"dateAdded\": 1488896658943,\n                \"_score\": 1,\n                \"disability\": \" \"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"t1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 370,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1488896629837,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": null,\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 366,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1488823030123,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tsho123456@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 357,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1488490836920,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tsho12345@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 355,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1488490641307,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tsho1234@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 354,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1488490494113,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tsho2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 338,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"tsho2@haleymarketing.com\",\n                \"salary\": 0,\n                \"dateAdded\": 1487348268360,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tsho1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 337,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": \"tsho1@haleymarketing.com\",\n                \"salary\": 0,\n                \"dateAdded\": 1487348137243,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"C\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": null,\n                \"email\": \"tsho123@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 336,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"C\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1487298021370,\n                \"_score\": 1,\n                \"disability\": \"C\"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe3@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 329,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1487014580853,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 328,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1487014401743,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemakerindeed@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 326,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Lockport\",\n                    \"zip\": \"14094\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1486581101247,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe667@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 325,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1486578498907,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6037@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 310,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485448377400,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6035@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 309,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485446482250,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6034@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 308,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485445788023,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker4444@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 307,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485443446750,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6033@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 306,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485381301373,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker6032@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 305,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485380016870,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6031@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 304,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485379881017,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6030@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 303,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485355299810,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"Indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker6029@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 302,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"MA\",\n                    \"address2\": null,\n                    \"city\": \"North Adams\",\n                    \"zip\": \"01247\",\n                    \"address1\": \"121 Bracewell ave apt 3\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485355199817,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker6028@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 301,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"MA\",\n                    \"address2\": null,\n                    \"city\": \"North Adams\",\n                    \"zip\": \"01247\",\n                    \"address1\": \"121 Bracewell ave apt 3\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485355036927,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"social-media\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe123@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 300,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485203666863,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 299,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1485203404373,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tiffany1234@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 298,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484944614967,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker1010@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 297,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484936044657,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker99999@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 296,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484935467837,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker999@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 295,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484935159517,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker5555@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 294,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484689720867,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker2222@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 293,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484687414237,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker1111@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 292,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484685712643,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"indeed\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tiffany@talmax.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 287,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484243348690,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tms@ats-connect.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 286,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"Canada\",\n                    \"countryCode\": \"CA\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"g7r 7f7\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 2216\n                },\n                \"gender\": \"M\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484243192733,\n                \"_score\": 1,\n                \"disability\": \"N\"\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"888696290\",\n                \"email\": \"tms@jobfuel.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 282,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"Ontario\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"M3C 0C1\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484083106147,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": \"555-555-5555\",\n                \"email\": \"tms@barquar.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 281,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"ON\",\n                    \"address2\": null,\n                    \"city\": \"Toronto\",\n                    \"zip\": \"M3C 0C1\",\n                    \"address1\": \"94 North Transit Road\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"F\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484082476927,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": \"N\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"W\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tms@barqar.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 280,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": \"F\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1484081802073,\n                \"_score\": 1,\n                \"disability\": \"N\"\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker@hayleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 278,\n                \"lastName\": \"test5\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1483727463417,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"A\",\n                \"mobile\": null,\n                \"email\": \"tshoemaker@restmarkgroup.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 277,\n                \"lastName\": \"test3\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": \"F\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"555-555-5555\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1483726947457,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoe1@talmax.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 273,\n                \"lastName\": \"test2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1483722413077,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"716-888-8981\",\n                \"email\": \"tshoe1234@dine365.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 272,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1483721213380,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"7166318981\",\n                \"email\": \"tshoe1234@talmax.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 271,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1483720225620,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test122216@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 256,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"7776665555\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1482418015630,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test120716@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 246,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1481128522553,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"tshoemaker321@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 230,\n                \"lastName\": \"fullresume\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1479258970553,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"C\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"C\",\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 225,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": \"C\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477354674690,\n                \"_score\": 1,\n                \"disability\": \"C\"\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe323@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 220,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477321584583,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe322@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 219,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477321485183,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe321@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 218,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477321438573,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoe12345@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 217,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477321200310,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"7166318981\",\n                \"email\": \"tshoe1234@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 216,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1477320150607,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-fair\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test101816@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 215,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1476813807837,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": true,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"7162222222\",\n                \"email\": \"tshoemaker446@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 160,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1466798952457,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker445@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 159,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United Kingdom\",\n                    \"countryCode\": \"UK\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 2359\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1466798885217,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"social-media\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker444@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 158,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"Canada\",\n                    \"countryCode\": \"CA\",\n                    \"state\": \"Ontario\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"b5y 8s8\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 2216\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1466798755200,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"newspaper\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker323@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 155,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"ontario\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"j7g 5j6\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1466712810173,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"web-search\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker322@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 154,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1466712338723,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job-board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker9998@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 138,\n                \"lastName\": \"test1pdf\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1465484812167,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"test source\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker2@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 136,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1464205892807,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"other\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"8886962900\",\n                \"email\": \"tshoemaker1@haleymarketing.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 135,\n                \"lastName\": \"test1\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"New York\",\n                    \"address2\": null,\n                    \"city\": \"Williamsville\",\n                    \"zip\": \"14221\",\n                    \"address1\": \"6028 Sheridan Drive\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"8886962900\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1464205632513,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test081315@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 111,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": null,\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1439492323477,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"07091505@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 105,\n                \"lastName\": \"User\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"NY\",\n                    \"address2\": null,\n                    \"city\": \"Clarence\",\n                    \"zip\": \"14031\",\n                    \"address1\": \"5191 KRAUS ROAD\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"+1 716 2284254\",\n                \"description\": \"<!DOCTYPE HTML PUBLIC \\\"-//W3C//DTD HTML 4.0//EN\\\">\\r\\n<html>\\r\\n<head>\\r\\n    <title>Microsoft Word - bush.doc</title>\\r\\n    <meta name=\\\"Author\\\" content=\\\"Richard Bush\\\" />\\r\\n    <meta http-equiv=\\\"content-type\\\" content=\\\"text/html; charset=UTF-16\\\" />\\r\\n</head>\\r\\n<body>\\r\\n<div style=\\\"position:absolute;top:68px;left:270px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\">5191 KRAUS ROAD â\\u0080¢ CLARENCE, NY 14031\\n</div>\\n<div style=\\\"position:absolute;top:80px;left:217px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\">PHONE 716.228.4254 â\\u0080¢ E-MAIL RBUSH@COOLTHEORY.COM\\n</div>\\n<div style=\\\"position:absolute;top:101px;left:244px;font-family:'Times New Roman';font-size:18pt;white-space:nowrap;\\\">RICHARD K. BUSH\\n</div>\\n<div style=\\\"position:absolute;top:163px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">OBJECTIVE\\n</div>\\n<div style=\\\"position:absolute;top:184px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">To share my internet and business vision with a dynamic, energetic team of inspired\\n</div>\\n<div style=\\\"position:absolute;top:199px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">professionals dedicated to bringing new technology and new ideas to market. To lead by\\n</div>\\n<div style=\\\"position:absolute;top:214px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">example and grow personally and professionally by helping others realize their goals and\\n</div>\\n<div style=\\\"position:absolute;top:229px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">objectives.\\n</div>\\n<div style=\\\"position:absolute;top:260px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">SUMMARY OF QUALIFICATIONS\\n</div>\\n<div style=\\\"position:absolute;top:279px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">10 years of corporate leadership, tactical and strategic planning, and hands-on development in\\n</div>\\n<div style=\\\"position:absolute;top:295px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">startup and new business unit initiatives in advanced web technologies.\\n</div>\\n<div style=\\\"position:absolute;top:331px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">ACHIEVEMENTS\\n</div>\\n<div style=\\\"position:absolute;top:350px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2007 Tae Kwon Do - Black Belt\\n</div>\\n<div style=\\\"position:absolute;top:367px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2006 Adobe, Inc - awarded seat on the Adobe Flash Encoder Beta Team\\n</div>\\n<div style=\\\"position:absolute;top:385px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2005 Operation Hurricane Katrina - volunteer on Communications ESF-2 team, creating a\\n</div>\\n<div style=\\\"position:absolute;top:401px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">point-to-point wireless network between New Orleans, LA and Biloxi, MS\\n</div>\\n<div style=\\\"position:absolute;top:418px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2005 OpenSAS release - an open source apache/mod_perl application server\\n</div>\\n<div style=\\\"position:absolute;top:435px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2003 Telus Interactive - first online personals WAP application in Canada\\n</div>\\n<div style=\\\"position:absolute;top:452px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2001 NHL/Empire Sports - first Wink Enhanced NHL Broadcast\\n</div>\\n<div style=\\\"position:absolute;top:471px;left:244px;font-family:'Times New Roman';font-size:5pt;white-space:nowrap;\\\"><i>(XML data feeds from the NHL delivered to cable subscribers in real time during the broadcast)</i>\\n</div>\\n<div style=\\\"position:absolute;top:486px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">2000 Kanoodle.com - product featured on Howard Stern Show\\n</div>\\n<div style=\\\"position:absolute;top:503px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">1994 and 1995 White Directory Publishers - Top Employee Honors\\n</div>\\n<div style=\\\"position:absolute;top:534px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">PROFICIENCIES\\n</div>\\n<div style=\\\"position:absolute;top:553px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">XHTML, SQL, Perl, Javascript, ActionScript, Flash, AJAX, ASP, PHP, Unix system\\n</div>\\n<div style=\\\"position:absolute;top:569px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">administration, database administration and design, wireless \\n</div>\\n<div style=\\\"position:absolute;top:569px;left:547px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">and \\n</div>\\n<div style=\\\"position:absolute;top:569px;left:572px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">wired networking, VoIP,\\n</div>\\n<div style=\\\"position:absolute;top:585px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">digital production (scanning and page layout to press) and video compression and delivery.\\n</div>\\n<div style=\\\"position:absolute;top:616px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">PROFESSIONAL EXPERIENCE\\n</div>\\n<div style=\\\"position:absolute;top:644px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>5/05-Present</b>\\n</div>\\n<div style=\\\"position:absolute;top:644px;left:334px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Geekwarriors</b>\\n</div>\\n<div style=\\\"position:absolute;top:644px;left:583px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:662px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Managing Partner - </i>\\n</div>\\n<div style=\\\"position:absolute;top:662px;left:329px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><i>http://www.geekwarriors.net</i>\\n</div>\\n<div style=\\\"position:absolute;top:681px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Work closely with entrepreneurs to create pioneering companies which change the way\\n</div>\\n<div style=\\\"position:absolute;top:696px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">people, live, work and play. Mentor and advise the entrepreneur, making introductions to and\\n</div>\\n<div style=\\\"position:absolute;top:711px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">preparing them for angel and venture investors. Architect and engineer the entrepreneur's\\n</div>\\n<div style=\\\"position:absolute;top:726px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">concept, brining it quickly from documentation to functional demo and production.\\n</div>\\n<div style=\\\"position:absolute;top:752px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>2/03-Present</b>\\n</div>\\n<div style=\\\"position:absolute;top:752px;left:334px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Thinwires</b>\\n</div>\\n<div style=\\\"position:absolute;top:752px;left:585px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:770px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><i>President/Director - http://www.thinwires.com</i>\\n</div>\\n<div style=\\\"position:absolute;top:789px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Architected and engineered the hardware and software infrastructure for Thinwires' managed\\n</div>\\n<div style=\\\"position:absolute;top:804px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">services. Mentor and advise the executive team. Thinwires' focus is the integration of Wi-Fi\\n</div>\\n<div style=\\\"position:absolute;top:819px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">related services into hospitality and larger scale multi-dwelling unit and residential\\n</div>\\n<div style=\\\"position:absolute;top:834px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">(condominiums, apartments, gated communities, universities) properties.\\n</div>\\n<div style=\\\"position:absolute;top:864px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>5/04-Present</b>\\n</div>\\n<div style=\\\"position:absolute;top:864px;left:334px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>AirExpert Technics</b>\\n</div>\\n<div style=\\\"position:absolute;top:864px;left:585px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:882px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><i>Non-Executive Director - http://www.aogonsite.com</i>\\n</div>\\n<div style=\\\"position:absolute;top:901px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Architected and engineered the hardware and software infrastructure for real time video and\\n</div>\\n<div style=\\\"position:absolute;top:916px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">data communications. Mentor and advise the executive team. AOG Onsite is designed to\\n</div>\\n<div style=\\\"position:absolute;top:931px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">allow instant \\n</div>\\n<div style=\\\"position:absolute;top:931px;left:287px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">and \\n</div>\\n<div style=\\\"position:absolute;top:931px;left:309px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">secure REAL TIME visual and audio communications between maintenance\\n</div>\\n<div style=\\\"position:absolute;top:946px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">support experts and on-site technicians. The FAA has written a positioning letter indicating\\n</div>\\n<div style=\\\"position:absolute;top:961px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">that this system could replace the FAA's onsite expert requirement in many instances.\\n</div>\\n<div style=\\\"position:absolute;top:1056px;left:12px;white-space:nowrap;\\\"><hr />\\n</div>\\n<div style=\\\"position:absolute;top:1139px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>10/05-12/06</b>\\n</div>\\n<div style=\\\"position:absolute;top:1139px;left:329px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>VoyageMedia</b>\\n</div>\\n<div style=\\\"position:absolute;top:1139px;left:587px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1157px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Non-Executive Director</i>\\n</div>\\n<div style=\\\"position:absolute;top:1175px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Architected and engineered the hardware and software infrastructure for real time video poker\\n</div>\\n<div style=\\\"position:absolute;top:1190px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">application. Mentor and advise the executive team. Worked with Las Vegas Gaming\\n</div>\\n<div style=\\\"position:absolute;top:1205px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Commission to assure product specifications met legal requirements. Worked directly with\\n</div>\\n<div style=\\\"position:absolute;top:1220px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Adobe Product managers in San Francisco to push their Media Server application beyond its\\n</div>\\n<div style=\\\"position:absolute;top:1235px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">published capabilities.\\n</div>\\n<div style=\\\"position:absolute;top:1261px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>5/04-12/06</b>\\n</div>\\n<div style=\\\"position:absolute;top:1261px;left:323px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>LeadTheory</b>\\n</div>\\n<div style=\\\"position:absolute;top:1261px;left:579px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1279px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><i>VP of Product Development/Director - http://www.leadtheory.com</i>\\n</div>\\n<div style=\\\"position:absolute;top:1298px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Architected and engineered the hardware and software infrastructure for aggregating national\\n</div>\\n<div style=\\\"position:absolute;top:1314px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">real estate listings and producing an integrated web based CRM solution tied to custom\\n</div>\\n<div style=\\\"position:absolute;top:1329px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">branded broker websites.\\n</div>\\n<div style=\\\"position:absolute;top:1355px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>9/00-Present</b>\\n</div>\\n<div style=\\\"position:absolute;top:1355px;left:317px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Simpull Technologies</b>\\n</div>\\n<div style=\\\"position:absolute;top:1355px;left:581px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1372px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Managing Partner/Director</i>\\n</div>\\n<div style=\\\"position:absolute;top:1391px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Architected and engineered the hardware and software infrastructure for several enterprise\\n</div>\\n<div style=\\\"position:absolute;top:1406px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">web applications, including\\n</div>\\n<div style=\\\"position:absolute;top:1406px;left:371px;font-family:'Times New Roman';font-size:8pt;color:#0000ff;background-color:#ffffff;white-space:nowrap;\\\">http://www.datopia.com\\n</div>\\n<div style=\\\"position:absolute;top:1406px;left:508px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">(and several hundred other branded\\n</div>\\n<div style=\\\"position:absolute;top:1421px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">implementations of the online personals engine for newspapers in the US and Canada), and a\\n</div>\\n<div style=\\\"position:absolute;top:1436px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">call center solution integrating dozens of newspaper classifieds back ends systems into a single\\n</div>\\n<div style=\\\"position:absolute;top:1451px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">web based, voice over IP, call overflow application that can accurately price ads for any\\n</div>\\n<div style=\\\"position:absolute;top:1466px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">member newspaper.\\n</div>\\n<div style=\\\"position:absolute;top:1492px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>4/00-8/00</b>\\n</div>\\n<div style=\\\"position:absolute;top:1492px;left:318px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>NexNewMedia/Interactive</b>\\n</div>\\n<div style=\\\"position:absolute;top:1492px;left:583px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1510px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Chief Knowledge Officer/Acting President</i>\\n</div>\\n<div style=\\\"position:absolute;top:1529px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Coordinate with the Executive Staff to design hardware and software systems that assist in the\\n</div>\\n<div style=\\\"position:absolute;top:1544px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">smooth and efficient flow of information between all corporate divisions. The company was\\n</div>\\n<div style=\\\"position:absolute;top:1559px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">closed shortly after taking over rTheory when financial backing evaporated in the 2000\\n</div>\\n<div style=\\\"position:absolute;top:1573px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">internet bubble burst.\\n</div>\\n<div style=\\\"position:absolute;top:1600px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>6/95-4/00</b>\\n</div>\\n<div style=\\\"position:absolute;top:1600px;left:345px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>rTheory</b>\\n</div>\\n<div style=\\\"position:absolute;top:1600px;left:590px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1616px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>CEO/President</i>\\n</div>\\n<div style=\\\"position:absolute;top:1636px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Founded with 3 part time employees, rTheory grew to a team of 24 seasoned web developers.\\n</div>\\n<div style=\\\"position:absolute;top:1651px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Revenues doubled each year, reaching $1.2 million in 1999. Performed duties as programmer,\\n</div>\\n<div style=\\\"position:absolute;top:1666px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">technical writer, editor, quality engineer, strategic consultant, and customer service rep, in\\n</div>\\n<div style=\\\"position:absolute;top:1681px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">addition to the duties of a stockholder and officer of the corporation.\\n</div>\\n<div style=\\\"position:absolute;top:1708px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>4/98-5/99</b>\\n</div>\\n<div style=\\\"position:absolute;top:1708px;left:311px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>White Directory Publishers</b>\\n</div>\\n<div style=\\\"position:absolute;top:1708px;left:584px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1723px;left:222px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Web Technologies Manager</i>\\n</div>\\n<div style=\\\"position:absolute;top:1744px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Cultivated the corporate vision for all information publishing systems; in print, in house\\n</div>\\n<div style=\\\"position:absolute;top:1760px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">communications, sales automation/information \\n</div>\\n<div style=\\\"position:absolute;top:1760px;left:469px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">acquisition, \\n</div>\\n<div style=\\\"position:absolute;top:1760px;left:532px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">intranet, internet, and world wide\\n</div>\\n<div style=\\\"position:absolute;top:1776px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">web.\\n</div>\\n<div style=\\\"position:absolute;top:1806px;left:218px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;\\\"><b>3/96 </b>\\n</div>\\n<div style=\\\"position:absolute;top:1807px;left:247px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>-4/98</b>\\n</div>\\n<div style=\\\"position:absolute;top:1807px;left:314px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>White Directory Publishers</b>\\n</div>\\n<div style=\\\"position:absolute;top:1807px;left:583px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1825px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Publishing Systems Integrator</i>\\n</div>\\n<div style=\\\"position:absolute;top:1844px;left:218px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;\\\">Solicited and evaluated proposals for system enhancements. Oversaw implementation\\n</div>\\n<div style=\\\"position:absolute;top:1861px;left:218px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;\\\">of all systems (relational ad management database, email, group scheduling software,\\n</div>\\n<div style=\\\"position:absolute;top:1877px;left:218px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;\\\">inter-application communication, corporate intranet, internet presence, sales\\n</div>\\n<div style=\\\"position:absolute;top:1894px;left:218px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;\\\">force/contract laptop automation, http://www.talkingphonebook.com)\\n</div>\\n<div style=\\\"position:absolute;top:1922px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>6/93-3/96</b>\\n</div>\\n<div style=\\\"position:absolute;top:1922px;left:315px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>White Directory Publishers</b>\\n</div>\\n<div style=\\\"position:absolute;top:1922px;left:584px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\"><b>Buffalo, New York</b>\\n</div>\\n<div style=\\\"position:absolute;top:1940px;left:218px;font-family:'Times New Roman';font-size:7pt;white-space:nowrap;\\\"><i>Compilation Editor, Graphics Department Supervisor, Graphics Department Manager</i>\\n</div>\\n<div style=\\\"position:absolute;top:1973px;left:120px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">EDUCATION\\n</div>\\n<div style=\\\"position:absolute;top:1998px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">University College at Buffalo\\n</div>\\n<div style=\\\"position:absolute;top:1998px;left:587px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">Buffalo, New York\\n</div>\\n<div style=\\\"position:absolute;top:2014px;left:218px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;\\\">1991 Bachelor Of Arts, English</div>\\n\\n<div style=\\\"position:absolute;top:2034px;\\\"></div></body>\\r\\n</html>\",\n                \"salary\": 0,\n                \"dateAdded\": 1433892623977,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"P\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": null,\n                \"email\": \"07091503@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 104,\n                \"lastName\": \"user5\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": \"M\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"6543211234\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1433886865417,\n                \"_score\": 1,\n                \"disability\": \"Y\"\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test07091502@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 100,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"7167167615\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1433881625690,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test@email.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 99,\n                \"lastName\": \"TEst\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"test\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1433881103847,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test020515@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 96,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"716-716-7166\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1433271095150,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": null,\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": \"N\",\n                \"dateOfBirth\": null,\n                \"ethnicity\": \"AI\",\n                \"mobile\": null,\n                \"email\": \"test051915@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 93,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": \"M\",\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"716-393-7536\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1432924290337,\n                \"_score\": 1,\n                \"disability\": \"N\"\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test@testingthis.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 84,\n                \"lastName\": \"last\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"4124567895\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1424387264263,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": null,\n                \"email\": \"test021115@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 79,\n                \"lastName\": \"USER\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": null,\n                    \"address2\": null,\n                    \"city\": null,\n                    \"zip\": null,\n                    \"address1\": null,\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"TEST\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"716-716-7166\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1423680960963,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"\",\n                \"email\": \"testll@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 19,\n                \"lastName\": \"LouLou\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"\",\n                    \"address2\": null,\n                    \"city\": \"\",\n                    \"zip\": \"\",\n                    \"address1\": \"\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"716-716-7165\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1379697805467,\n                \"_score\": 1,\n                \"disability\": null\n            },\n            {\n                \"source\": [\n                    \"job board\"\n                ],\n                \"skillSet\": null,\n                \"massMailOptOut\": false,\n                \"veteran\": null,\n                \"dateOfBirth\": null,\n                \"ethnicity\": null,\n                \"mobile\": \"\",\n                \"email\": \"test092013@cooltheory.com\",\n                \"category\": {\n                    \"name\": \"Other Area(s)\",\n                    \"id\": 846574\n                },\n                \"id\": 17,\n                \"lastName\": \"User2\",\n                \"address\": {\n                    \"countryName\": \"United States\",\n                    \"countryCode\": \"US\",\n                    \"state\": \"\",\n                    \"address2\": null,\n                    \"city\": \"\",\n                    \"zip\": \"\",\n                    \"address1\": \"\",\n                    \"countryID\": 1\n                },\n                \"gender\": null,\n                \"owner\": {\n                    \"firstName\": \"Haley\",\n                    \"lastName\": \"Marketing\",\n                    \"id\": 2\n                },\n                \"firstName\": \"Test\",\n                \"employmentPreference\": [\n                    \"Permanent\"\n                ],\n                \"categories\": {\n                    \"data\": [],\n                    \"total\": 0\n                },\n                \"occupation\": null,\n                \"phone\": \"716-716-7165\",\n                \"description\": null,\n                \"salary\": 0,\n                \"dateAdded\": 1379695998417,\n                \"_score\": 1,\n                \"disability\": null\n            }\n        ],\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.016272\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T22:42:50\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Custom success\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/Candidate?count=500&query=isDeleted:0 AND firstName:test&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.812324\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Custom success\"\n}"}],"_postman_id":"e7fab7be-15b2-4af1-937a-85fa098edb9f"}],"id":"2346dd75-d5d7-41c8-bcbe-91f8cff3cc3b","_postman_id":"2346dd75-d5d7-41c8-bcbe-91f8cff3cc3b","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"579a4ff6-d48d-45bd-a9d3-2b9a92412c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\r\n      \"file_name\": \"Test.doc\",\r\n      \"id\": 750\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment.</p>\n\n<ul>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n      \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEAMgAsADAAMAAwACAAZwBsAG8AYgBhAGwAIAB1AHMAZQByAHMALgANAEUAbgB0AGUAcgBwAHIAaQBzAGUAIABJAG0AcABsAGUAbQBlAG4AdABhAHQAaQBvAG4AcwANAEsAUABJACAARABhAHMAaABiAG8AYQByAGQAcwAgACYAIABTAGMAbwByAGUAYwBhAHIAZABzAA0ARABhAHQAYQAgAE0AaQBuAGkAbgBnACAAJgAgAEEAbgBhAGwAeQB0AGkAYwBzAA0ADQBSAGkAcwBrACAATQBhAG4AYQBnAGUAbQBlAG4AdAANAEIASQAsACAARQBSAFAAIAAmACAAQgBpAGcAIABEAGEAdABhACAAUABsAGEAdABmAG8AcgBtAHMADQBTAEEAUAAvAFMAQQBTACAAUwBvAGwAdQB0AGkAbwBuAHMADQANABQgIAA5AC4AMgAlACAAcgBlAHYAZQBuAHUAZQAgAGcAcgBvAHcAdABoACAAKAAyADAAMQA2ACkADQAUICAAVQBwACAAdABvACAANAA1ACUAIABpAG4AIABlAGYAZgBpAGMAaQBlAG4AYwB5ACAAZwBhAGkAbgBzAA0ADQAUICAAJAA1ADcANQBLACAAYwBhAHAAaQB0AGEAbAAtAGUAeABwAGUAbgBzAGUAIAByAGUAZAB1AGMAdABpAG8AbgANABQgIAAkADEALgAxAE0AIABsAGEAYgBvAHIALQBjAG8AcwB0ACAAcwBhAHYAaQBuAGcAcwANAA0AFCAgADkANwAlACAAYQBjAGMAbwB1AG4AdAAtAHIAZQB0AGUAbgB0AGkAbwBuACAAcgBhAHQAZQBzAA0AFCAgADEAMAAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAcgBlAGYAZQByAHIAYQBsAHMADQANAA0ADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAICAAAFggAABgIAAAaCAAAHAgAADAIAAAyCAAARAgAAJQIAACWCAAA5AgAAOYIAAA2CQAAOAkAAFgJAABaCQAAdAkAAI4JAACQCQAAuAkAANIJAADUCQAAFAoAAC4KAAAwCgAASg0AAEwNAABODQAAfA4AAH4OAACADgAAgg4AAIQOAACGDgAAiA4AAIoOAAAaEQAAHBEAAGgSAABqEgAA6QDk5ADQv62Zrb8Ah3ZnAHZnAHZnAHZnAL8Av78A5OTkAL+/vwC/AAAAHDoIADsIAENKGAA2CAA1CABeSgYAT0oGAFFKBgAAIDBKHQA6CAA7CABDShgANggANQgAXkoGAE9KBgBRSgYAACMwSh0AOggAOwgAQ0oYADYIAD4qATUIAF5KBgBPSgYAUUoGACcwSh4AOggAOwgAQ0oYAECIAAA2CAA+KgE1CABeSgYAT0oGAFFKBgAjOggAOwgAQ0oYAECIAAA2CAA+KgE1CABeSgYAT0oGAFFKBgAgOggAOwgAQ0oYAECIAAA2CAA1CABeSgYAT0oGAFFKBgAAJzBKHQA6CAA7CABDShgAQIgAADYIADUIAV5KBgBcCAFPSgYAUUoGAAkDagAAAABVCAErQioAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAoahIAAOoTAADsEwAAIBQAAAwVAAAOFQAAEBUAAEQVAABGFQAASBUAAEoVAACEFQAAiBUAAIoVAACMFQAAyhUAAMwVAADOFQAA0BUAAAAWAAAEFgAABhYAAAgWAAA+FgAAQBYAAEIWAABEFgAAdhYAAHwWAADvAOsA59/QAOff0ADn39AA59/QAOff0ADn39AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcOggAOwgAQ0oYADYIADUIAF5KBgBPSgYAUUoGAAAOOggAOwgAUEoDAF5KAwAABjoIADsIAAAGNQgBXAgBACA6CAA7CABDShgAQIgAADYIADUIAF5KBgBPSgYAUUoGABwACAAAFAgAABYIAAAcCAAA5ggAAFoJAAD5AAAAAAAAAAAAAAAA+QAAAAAAAAAAAAAAAMsAAAAAAAAAAAAAAACUAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOSUAFiQBSWYBAAAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA2IAASZGgBAAADJAFhJAExJAFehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAC0kAAMkAGEkABOkAAAUpBsBJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAQMPAFDGCICAgAABAwAAJ2QAAAAAUcYIAAAAAAAAAAAMJAFBJAAGAAADJABhJABBJAAABVoJAACQCQAA1AkAADAKAADFAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5JQAWJAFJZgEAAAASZGgBAAADJABhJABehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAADklABYkAUlmAQAAABJkaAEAAAMkAGEkAF6EAABdhAAAYIQAABOkAAAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAOSUAFiQBSWYBAAAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAADMAoAADIKAABMDQAAfg4AAK4AAAAAAAAAAAAAAAB3AAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOyAACiYAC0YDAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA2IAASZGgBAAADJABhJAAxJAFehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAFAAABYkARckAUlmAQAAAAjWMAACAADJE/QmgAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAnWBAABAAES1hQAAAD/////AAAAAAAA/////wAAAHDWFAAAAP////8AAAAAAAD/////AAAANNYGAAEBAwAANNYGAAECAwAANNYGAAEEAwAANNYGAAEIAwAAZjQAAzQAAAN+DgAAhg4AAIgOAAAcEQAAahIAAOwTAAAiFAAAxAAAAAAAAAAAAAAAAMQAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAAiQAAAAAAAAAAAAAAAIkAAAAAAAAAAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5IAAKJgALRgEAAyQAYSQADcYFAAEAAABehAAAXYQAAGCE5f4TpEsAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAOyAACiYAC0YEAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkADsgAAomAAtGAAADJABhJAAxJAENxgUAAQAAAF6EAABdhAAAYIQAABOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAABiIUAABaFAAAihQAAIwUAACsFAAAxQAAAAAAAAAAAAAAAIsAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkgAAomAAtGAgADJABhJAANxgUAAQAAAF6EAABdhAAAYITl/hOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAAQAAADkgAAomAAtGAQADJABhJAANxgUAAQAAAF6EAABdhAAAYITl/hOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAOSAACiYAC0YBAAMkAGEkAA3GBQABAAAAXoQAAF2EAABghOX+E6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAAErBQAAOYUAAAKFQAADBUAAEYVAACGFQAAiBUAAMwVAAACFgAABBYAAMUAAAAAAAAAAAAAAACLAAAAAAAAAAAAAAAAiQAAAAAAAAAAAAAAAFQAAAAAAAAAAAAAAABUAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAFQAAAAAAAAAAAAAAABUAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAABAAAAAQAANSAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAABAAAAOSAACiYAC0YCAAMkAGEkAA3GBQABAAAAXoQAAF2EAABghOX+E6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA5IAAKJgALRgIAAyQAYSQADcYFAAEAAABehAAAXYQAAGCE5f4TpEsAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAAkEFgAAQBYAAHgWAAB6FgAAfBYAAH4WAADKAAAAAAAAAAAAAAAAygAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAADGAAAAAAAAAAAAAAAAigAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOyAACiYAC0YEAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkADsAAQAAAAEAADUgABJkaAEAAAMkAGEkAF6EAABdhAAAYIQAABOkAAAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAABTMAPDAAH7DQLyCw4D0hsG4EIrBuBCOQbgQkkG4EMlAAADGQWAIwcACAAAAzUAAAKDIADjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgBvAG8AdAAgAEUAbgB0AHIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYABQD//////////wEAAAAGCQIAAAAAAMAAAAAAAABGAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAAAAAAABAEMAbwBtAHAATwBiAGoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgACAAIAAAAEAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAAAEATwBsAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAIA/////wMAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABQAAAAAAAAAMQBUAGEAYgBsAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAgD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAA1hwAAAAAAAAFAFMAdQBtAG0AYQByAHkASQBuAGYAbwByAG0AYQB0AGkAbwBuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAACAAUAAAAHAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAACsAAAAAAAAAFcAbwByAGQARABvAGMAdQBtAGUAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAIABgAAAP//////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAADUqAAAAAAAATwBiAGoAZQBjAHQAUABvAG8AbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAQD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAFAEQAbwBjAHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBtAGEAdABpAG8AbgAAAAAAAAAAAAAAOAACAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAB0AAAAAAAAAA==\",\n      \"file_name\": \"Test.doc\",\n      \"id\": 750\n    }\n\n</code></pre>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"038fa070-9ef4-40e5-ab74-d21cc651473c","name":"Response_201","originalRequest":{"method":"GET","header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"atsconnect_ticket\": {\"request\": {\"call\": \"https://rest9.bullhornstaffing.com/rest-services/infm1/file/Candidate/255/raw?externalID=Portfolio&fileType=SAMPLE&BhRestToken=xxxxxxxxxxxxxxxxxx\",\"values\": \"\"},\"fn\": \"_api_file\",\"key\": \"xxxxxxxxxxxxxxxxxx\",\"elapsed\": \"0.729202\",\"api_version\": \"1.1\",\"vendor\": \"bullhorn\"},\"atsconnect_status\": \"1\",\"atsconnect_message\": \"\",\"api_response\": {\"api_status\": \"1\",\"api_log\": {\"CALL_ATTEMPTS\": 1,\"CALL_STATUS\": 1,\"CALL_REQUEST\": \"file/Candidate\",\"CALL_TIME\": 0.587273,\"CALL_ACTION\": \"PUT-FILE\",\"TIMESTAMP\": \"2016-12-21T14:17:30\",\"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\"MESSAGE\": \"Success\",\"VENDOR\": \"bullhorn\"},\"api_data\": {\"id\": 110}}}"},{"id":"3f256457-721d-49e9-b4a0-d1dc4f40c524","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\r\n      \"file_name\": \"Test.doc\",\r\n      \"id\": 750\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 22:49:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"489"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199882"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 475\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"file/Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.589762,\n            \"CALL_ACTION\": \"PUT-FILE\",\n            \"TIMESTAMP\": \"2020-01-09T22:49:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"File uploaded\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/file/Candidate/750/raw?externalID=Portfolio&fileType=SAMPLE&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.636145\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"File uploaded\"\n}"}],"_postman_id":"579a4ff6-d48d-45bd-a9d3-2b9a92412c30"}],"id":"eeff5b21-8098-4a52-ac5d-56e11390730b","_postman_id":"eeff5b21-8098-4a52-ac5d-56e11390730b","description":""},{"name":"Job","item":[{"name":"Job Get","id":"228fb884-00ba-48cd-81b3-71733a2ae161","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_fields\":\"type,isPublic,isOpen,customText4\"\n    }\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all open jobs.</p>\n<ul>\n<li>api_request_fields - <strong>OPTIONAL</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{}\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3c2d74ba-a79c-4058-9b34-9e6a414068ad","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{}\n}\n"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 22:57:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3643"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272703"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<h2><b>Our clients need help with social media and content marketing!</b></h2>\\r\\n\\r\\n<p>As a Social Media Marketing Advisor, you&#39;ll work directly with our clients on the implementation of blogging and social media marketing campaigns. You&#39;ll be in charge of developing a content marketing strategy, managing our writing team, analyzing results and consulting our clients on social media and marketing best practices.</p>\\r\\n\\r\\n<p><b>Key Responsibilities:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Ensure the success of our client&#39;s marketing efforts.</li>\\r\\n\\t<li>Develop marketing recommendations.</li>\\r\\n\\t<li>Plan content for client blogs.</li>\\r\\n\\t<li>Set-up and manage client accounts on LinkedIn, Facebook, Twitter and other social media outlets.</li>\\r\\n\\t<li>Train and direct the activities of writers.</li>\\r\\n\\t<li>Edit blog posts and optimize posts for search engines.</li>\\r\\n\\t<li>Analyze Google Analytics and adjust client plans accordingly.</li>\\r\\n\\t<li>Make sure our clients are thrilled with our service.</li>\\r\\n</ul>\\r\\n\\r\\n<div>\\r\\n<div><a href=\\\"http://jobs.haleymarketing.com/Social-Media-Marketing-Advisor-Jobs-in-Williamsville-NY/1605368#collapseTwo\\\">Job Requirements</a></div>\\r\\n\\r\\n<div>\\r\\n<div>\\r\\n<p><b>Minimum Requirements:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Exceptional verbal and written communication skills.</li>\\r\\n\\t<li>In-depth knowledge of social media marketing.</li>\\r\\n\\t<li>Experienced blog or marketing copywriter.</li>\\r\\n\\t<li>2 or more years in marketing or a customer service role.</li>\\r\\n\\t<li>Experience managing client projects or relationships.</li>\\r\\n\\t<li>Understanding of search engine optimization (SEO).</li>\\r\\n</ul>\\r\\n\\r\\n<p><b>Our Ideal Candidate:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Very intelligent.</li>\\r\\n\\t<li>Detail oriented.</li>\\r\\n\\t<li>Well organized.</li>\\r\\n\\t<li>Able to handle a large client load (up to 50 clients).</li>\\r\\n\\t<li>100% track record of success.</li>\\r\\n\\t<li>Caring. Patient. Committed to excellence.</li>\\r\\n\\t<li>Passionate about social media and customer service.</li>\\r\\n\\t<li>Embraces change.</li>\\r\\n\\t<li>Quick learner.</li>\\r\\n\\t<li>Doesn&#39;t need to be micro-managed.</li>\\r\\n\\t<li>Meets deadlines.</li>\\r\\n\\t<li>Able to easily relate to others from from line staff to CEOs.</li>\\r\\n\\t<li>Interesting in learning about and using new technology.</li>\\r\\n</ul>\\r\\n</div>\\r\\n</div>\\r\\n</div>\\r\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"01/07/2016\",\n                    \"url\": \"\",\n                    \"id\": 4,\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"type\": \"Contract\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 847390\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14510\",\n                        \"city\": \"Mt. Morris\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Social Media Marketing Advisor\"\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<p><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">Video Link Here</a></p>\\n\\n<p>This position is a high level manager for a prominent organization that has been well recognized throughout the region.&nbsp; They are seeking a top level manager overseeing a staff of 50-80.&nbsp; This individual will report directly to the COO.&nbsp; They do not have to be from a specific industry, but it is beneficial to come from a high end professional services organization.&nbsp; Good examples are CPA firms, Engineering, Legal, and Financial Services industries.&nbsp; They are seeking an individual who can implement new ways to increase staff efficiency.&nbsp; They will be responsible for knowing the skill sets of all support staff in order to balance workloads and any necessary training.&nbsp; Through overseeing the secretarial staff heavy employee relations will be involved.&nbsp; This position will also oversee any facilities management and act as a liaison to building management.&nbsp;<br />\\n&nbsp;<br />\\nThis position offers highly competitive pay plus a full range of benefits.</p>\\n\\n<p><strong>Requirements</strong>:</p>\\n\\n<ul>\\n\\t<li>Bachelor Degree Required</li>\\n\\t<li>Experience managing a large administrative staff</li>\\n\\t<li>Experience in Professional Services is Recommended</li>\\n\\t<li>Ability to Identify New Processes to Drive Efficiencies</li>\\n\\t<li>Adopt and Initiate Change</li>\\n</ul>\\n\\n<p>They are an Equal opportunity employer; all resumes will be held in confidence.</p>\\n\\n<p>&nbsp;</p>\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"10/02/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Admin - Clerical\",\n                                \"id\": 847392\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"id\": 3,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"11111\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"Office Manager\"\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<DIV>\\r\\n<DIV class=accordion-group>\\r\\n<DIV id=collapseOne class=\\\"accordion-body collapse in\\\">\\r\\n<DIV class=accordion-inner itemprop=\\\"description\\\">\\r\\n<P><STRONG>Our clients need help with social media and content marketing!</STRONG></P>\\r\\n<P>As a Social Media Marketing Advisor, you'll work directly with our clients on the implementation of blogging and social media marketing campaigns. You'll be in charge of developing a content marketing strategy, managing our writing team, analyzing results and consulting our clients on social media and marketing best practices. </P>\\r\\n<P><STRONG>Key Responsibilities:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Ensure the success of our client's marketing efforts.</LI>\\r\\n<LI>Develop marketing recommendations.</LI>\\r\\n<LI>Plan content for client blogs.</LI>\\r\\n<LI>Set-up and manage client accounts on LinkedIn, Facebook, Twitter and other social media outlets.</LI>\\r\\n<LI>Train and direct the activities of writers.</LI>\\r\\n<LI>Edit blog posts and optimize posts for search engines.</LI>\\r\\n<LI>Analyze Google Analytics and adjust client plans accordingly.</LI>\\r\\n<LI>Make sure our clients are thrilled with our service.</LI></UL></DIV></DIV></DIV>\\r\\n<DIV class=accordion-group>\\r\\n<DIV class=accordion-heading><A class=\\\"accordion-toggle active-accord\\\" href=\\\"http://jobs.haleymarketing.com/Social-Media-Marketing-Advisor-Jobs-in-Williamsville-NY/1605368#collapseTwo\\\" data-toggle=\\\"collapse\\\"><I class=icon-accordion></I>Job Requirements</A></DIV>\\r\\n<DIV id=collapseTwo class=\\\"accordion-body collapse in\\\">\\r\\n<DIV class=accordion-inner itemprop=\\\"experienceRequirements\\\">\\r\\n<P><STRONG>Minimum Requirements:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Exceptional verbal and written communication skills.</LI>\\r\\n<LI>In-depth knowledge of social media marketing. </LI>\\r\\n<LI>Experienced blog or marketing copywriter.</LI>\\r\\n<LI>2 or more years in marketing or a customer service role.</LI>\\r\\n<LI>Experience managing client projects or relationships.</LI>\\r\\n<LI>Understanding of search engine optimization (SEO).</LI></UL>\\r\\n<P><STRONG>Our Ideal Candidate:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Very intelligent.</LI>\\r\\n<LI>Detail oriented.</LI>\\r\\n<LI>Well organized.</LI>\\r\\n<LI>Able to handle a large client load (up to 50 clients).</LI>\\r\\n<LI>100% track record of success.</LI>\\r\\n<LI>Caring. Patient. Committed to excellence. </LI>\\r\\n<LI>Passionate about social media and customer service.</LI>\\r\\n<LI>Embraces change.</LI>\\r\\n<LI>Quick learner.</LI>\\r\\n<LI>Doesn't need to be micro-managed.</LI>\\r\\n<LI>Meets deadlines.</LI>\\r\\n<LI>Able to easily relate to others from from line staff to CEOs.</LI>\\r\\n<LI>Interesting in learning about and using new technology. </LI></UL></DIV></DIV></DIV></DIV>\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"09/18/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 846574\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"id\": 2,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14221\",\n                        \"city\": \"Williamsville\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Social Media Marketing -- Advisor\"\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<p><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">https://vimeo.com/358903576/e0ca47c763</a></p>\\n\\n<div>Responsible for providing accounting support to accounting supervisors and other managers within the department. Keys daily worksheets to the general ledger system, ensures files are complete and maintained as needed, handles accounts payable duties, and assists accounting personnel.</div>\\n\\n<div>&nbsp;</div>\\n\\n<div><strong>Primary responsibilities</strong></div>\\n\\n<ul>\\n\\t<li>\\n\\t<div>Perform accounting and clerical functions to support supervisors.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Research, track, and resolve accounting problems.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Compile and sort invoices and checks.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Issue checks for accounts payable.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Place checks in envelopes and mail out.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Record business transactions and key daily worksheets to the general ledger system.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Record charges and refunds.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Support accounting personnel.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Input type vouchers, invoices, checks, account statements, reports, and other records.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Provide front desk customer service.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>File and tally deposits.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Work with adding machines, calculators, databases and bank accounts.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Match invoices to work orders.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Process bills for payment.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Open mail and match payments to invoices.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Arrange for money to be delivered to bank.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Utilize computer systems to run databases, pay bills and order supplies.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Contact individuals with delinquent accounts.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Ensure customers accept payments.</div>\\n\\t</li>\\n</ul>\\n\\n<div><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">Video Link Here</a></div>\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"08/27/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 847390\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Contract\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Test\",\n                        \"id\": 72\n                    },\n                    \"id\": 1,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14094\",\n                        \"city\": \"Lockport\",\n                        \"address1\": \"test\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Job 1\"\n                }\n            ],\n            \"count\": 4\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobOrder\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.248113,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T22:57:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"4 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/query/JobOrder?count=100&showEditable=false&meta=off&where=isDeleted=false AND isOpen=true AND isPublic=1&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.997888\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"4 jobs returned\"\n}"},{"id":"48bbe4f2-9dc6-4fae-a62e-db6630927247","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"customText26\": \"Behavior Therapy Clinic\",\n        \"api_request_fields\":\"customText4\"\n    }\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 04 Nov 2025 15:26:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"59830"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=QHguhHAG2q7bLKt4mG+DeC7IEapKMrtYXVv/NPl/gtl3nsDU+wOjs65s8PNltNUjz1HXbvdntFwQdKlIkhtNZWCXds8TrepcQIW/qZtRr3OpbVLVW4CumTHYuRi/; Expires=Tue, 11 Nov 2025 15:26:21 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=QHguhHAG2q7bLKt4mG+DeC7IEapKMrtYXVv/NPl/gtl3nsDU+wOjs65s8PNltNUjz1HXbvdntFwQdKlIkhtNZWCXds8TrepcQIW/qZtRr3OpbVLVW4CumTHYuRi/; Expires=Tue, 11 Nov 2025 15:26:21 GMT; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"SAS=hash&b891a88b59009cfbc8987b8e5b49cf7b&time&1762269981&ip&67.249.58.74&user&nobody&logged&0&id&60642b5294d3b4439d78b8cf&expires&86400; path=/; domain=api.ats-connect.com; sameSite=lax"},{"key":"Set-Cookie","value":"SAS=hash&b891a88b59009cfbc8987b8e5b49cf7b&time&1762269981&ip&67.249.58.74&user&nobody&logged&0&id&60642b5294d3b4439d78b8cf&expires&86400; path=/; domain=api.ats-connect.com; sameSite=lax"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"X-SASnode","value":"v153.haleymarketing.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"291840920"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIAUTH","value":""},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77375\",\n                        \"city\": \"Tomball\",\n                        \"address1\": \"1110 Ulrich Rd\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19595,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Estimator</strong><br />\\nOur client located in Tomball, TX has an immediate need for an Estimator. This is a direct hire opportunity.<br />\\n<br />\\n<strong>Client Profile:</strong><br />\\nGrowing Manufacturer<br />\\n<br />\\n<strong>Estimator Role:</strong><br />\\nDevelop accurate and competitive cost estimates for custom plastic and gasket sealing products<br />\\nAnalyze material, labor, overhead, and production costs to ensure profitability and consistency<br />\\nUse ERP or quoting software (Global Shop or similar) to generate and maintain detailed quotes<br />\\nKeep pricing data current for materials, labor, and vendor costs<br />\\nCollaborate with engineers to interpret technical specifications and production requirements<br />\\nPartner with purchasing to gather and confirm updated supplier pricing<br />\\nSupport the sales team by producing timely, detailed quotes that reflect manufacturing capabilities<br />\\nMaintain organized documentation for all quotes, calculations, and related records<br />\\nProvide reporting on quote accuracy, turnaround times, and pricing trends<br />\\nIdentify and implement process improvements to streamline quoting and improve consistency<br />\\nContribute to the continued standardization of workflows as the team transitions away from sales-led quoting<br />\\nCommunicate clearly with a wide range of experience levels across the sales and production teams<br />\\nAsk clarifying questions to ensure accuracy on custom, one-off parts for each order<br />\\nOperate effectively in a hands-off management environment that values accountability and independence<br />\\n<br />\\n<strong>Estimator Background Profile:</strong><br />\\n3â\\u0080\\u00935+ years of estimating experience within a manufacturing or production environment<br />\\nStrong background in plastics, gasket sealing, or custom fabrication required<br />\\nProficiency in ERP or quoting software (Global Shop experience strongly preferred)<br />\\nAdvanced Excel and analytical skills<br />\\nExcellent communication skills with the ability to clarify incomplete or complex information<br />\\nHighly organized and detail-oriented; maintains thorough documentation and records<br />\\nComfortable balancing multiple priorities and deadlines in a fast-paced environment<br />\\nPatient, process-focused, and adaptable to ongoing workflow improvements<br />\\nSelf-motivated and disciplined in a hands-off leadership culture<br />\\nCollaborative mindset with the ability to build trust across sales, engineering, and operations teams<br />\\nProfessional, service-oriented, and committed to continuous improvement<br />\\n<br />\\n<strong>Benefits and Features:</strong><br />\\nMultiple Health and Insurance Plans<br />\\n2 Weeks PTO plus Holidays<br />\\n&nbsp;\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"11/03/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Estimator\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"25.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75039\",\n                        \"city\": \"Irving\",\n                        \"address1\": \"5221 N O Connor Blvd STE 1400\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19594,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Customer Service\",\n                                \"id\": 1009007\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Accounts Receivable Specialist</strong><br>\\nOur client in Irving, Texas is hiring two Accounts Receivable Specialists for a contract to possible hire. This role will focus on reviewing, transferring, and reconciling information to ensure accuracy and reduce errors during the conversion.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nTechnology Industry<br>\\nHealthcare<br>\\n<br>\\n<strong>Accounts Receivable Specialist Role:</strong><br>\\nTransfer and reconcile accounts receivable data between systems.<br>\\nReview invoices, statements, and account details to confirm accuracy.<br>\\nIdentify discrepancies and escalate issues as needed.<br>\\nApply knowledge of billing and collections processes to validate data integrity.<br>\\nDocument and track progress to support accounting leadership during the project.<br>\\nHandle sensitive financial information with professionalism and confidentiality.<br>\\n<br>\\n<strong>Accounts Receivable Specialist Background Profile:</strong><br>\\nHigh school diploma or GED required; Associateâ\\u0080\\u0099s degree in Accounting, Finance, or Business preferred.<br>\\n3+ years in accounts receivable, billing, or related accounting functions.<br>\\nB2B accounts receivable collections is required.Â <br>\\nFamiliarity with ERP platforms (e.g., NetSuite, HighRadius, or equivalent) and standard office software (Microsoft Office, Google Suite, Slack).<br>\\nUnderstanding of billing workflows, reconciliations, and payment processes.<br>\\nAccuracy with numbers, strong attention to detail, and the ability to work efficiently in a fast-paced project environment.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"11/03/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Contract\",\n                    \"title\": \"Accounts Receivable Specialist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75201\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"1601 Elm St. Ste. 4600\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19592,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Information Technology\",\n                                \"id\": 1009043\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Marketing Technology Manager</strong><br>\\nOur client located in Dallas, Texas is hiring a Marketing Technology Manager. This is an onsite direct hire opportunity.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nLegal Firm with multiple locations.<br>\\n<br>\\n<strong>Marketing Technology Manager Role:</strong><br>\\nThe Marketing Technology Manager will oversee the firmâ\\u0080\\u0099s marketing technology ecosystem, including CRM systems, digital platforms, and workflow processes.<br>\\nWill ensure data integrity, supports strategic marketing and business development initiatives, and drives technology-enabled solutions across all offices.<br>\\nThe role requires a strong blend of technical expertise and marketing insight, with the ability to manage a small team, train staff, and collaborate closely with Marketing, Events, Business Development, IT, and Practice Group Management.<br>\\nServing as primary data steward and administrator for CRM systems, ensuring integration, data quality, and reporting capabilities.<br>\\nSupporting digital marketing efforts, including brand strategy, website content, email campaigns, SEO, and template management.<br>\\nEnabling event technology support, including invitation distribution, RSVP tracking, and post-event reporting.<br>\\nProviding technical support, troubleshooting, and training for attorneys and staff; creating clear documentation and tutorials.<br>\\nManaging vendor relationships, monitoring system performance, and implementing best practices for marketing technologies.<br>\\nLeading, coaching, and mentoring the Marketing & Data Assistant, aligning team priorities with organizational objectives.<br>\\nThis role is ideal for a highly organized, proactive professional who can translate technical concepts for non-technical users, maintain a service-oriented approach, and thrive under pressure.<br>\\n<br>\\n<strong>Marketing Technology Manager Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Marketing, IT, Computer Science, or related field, or equivalent work experience.<br>\\n7â\\u0080\\u009310+ years in marketing, business development, sales, or a related field. Willing to look at less years of experience for the right fit.Â <br>\\nRequiring advanced experience with CRM systems (Salesforce, HubSpot, or equivalent), database management, cleaning, and optimization.<br>\\nProficiency with digital marketing platforms, campaign list management (Vuture preferred), website management, marketing automation, and graphic design software.<br>\\nDirect experience with brand strategy, client lifecycle management, digital campaigns, marketing analytics, and SEO.<br>\\nProven ability to manage a team, provide mentorship, and deliver technology training programs.<br>\\nStrong problem-solving, data-driven decision-making, and project management capabilities.<br>\\nAbility to clearly convey technical concepts to diverse audiences; strong verbal and written communication.<br>\\nCollaborative, detail-oriented, adaptable, proactive, and service-oriented. Calm under pressure with excellent time management and prioritization skills.<br>\\nProfessional services or law firm background preferred; prior experience in training and mentoring staff; experience with multi-office collaboration.<br>\\n<br>\\n<strong>Benefits and Features:</strong><br>\\n401(k) with 5% company match<br>\\nPaid parking or transit subsidy<br>\\n3 weeks vacation plus10 holidays<br>\\nPaid parental leave<br>\\n100% company-paid medical, dental, and vision and HSA contributions<br>\\nLife and accidental death & dismemberment coverage<br>\\nShort-term and long-term disability fully covered<br>\\nIdentity protection and critical/accidental coverage<br>\\nEmployee Assistance Program (EAP)<br>\\nConcierge health advocate service\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"11/03/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Marketing Technology Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"80011\",\n                        \"city\": \"Aurora\",\n                        \"address1\": \"15586 E 17th Ave STE A\",\n                        \"state\": \"CO\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19591,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Administrative\",\n                                \"id\": 1008991\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Exciting opportunity to join a fast-growing client in Aurora Colorado as a Bilingual Front Desk Coordinator. This is a direct hire role offering stability, growth, and the chance to play a key role in supporting scheduling and front desk operations.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nOur client is a well-established property services organization specializing in renovation, unit turn services, and painting solutions across the Denver metro and surrounding areas. Serving a wide range of commercial clients, this dynamic company is known for delivering timely and high-quality service. With a collaborative environment, strong leadership, and long-term stability, this organization provides a supportive place to build your career.<br>\\n<br>\\n<strong>Bilingual Front Desk Coordinator Role:</strong><br>\\nAs the Bilingual Front Desk Coordinator, you will be the central point of communication between clients and the service teams. The Bilingual Front Desk Coordinator is responsible for scheduling painters, cleaners, carpet cleaners, renovation crews, and clean-up projects while managing two service lines. In this role, being bilingual in English and Spanish is essential to communicate effectively with a diverse client and subcontractor base.<br>\\nRespond to client phone calls, emails, and text messages in both English and Spanish.<br>\\nCoordinate and reschedule service projects as needed<br>\\nFollow up with clients to obtain missing purchase order information<br>\\nRotate as a back-up on the emergency line<br>\\nProvide front desk coverage for subcontractor walk-ins and occasional applicant visits<br>\\nCollaborate closely with the field team to ensure accurate scheduling, efficient resource use, and excellent customer service<br>\\nWork Yard experience is a plus but not requiredÂ <br>\\n<br>\\n<strong>Bilingual Front Desk Coordinator Background Profile:</strong><br>\\nBilingual â\\u0080\\u0093 fluent in English and Spanish required<br>\\nMinimum of 3+ years of experience in scheduling, dispatch, administrative support, or front desk role service industry highly preferred<br>\\nStrong organizational skills and ability to manage multiple priorities in a fast-paced environment<br>\\nExcellent communication and customer service skills<br>\\nComfortable with data entry and following up to collect information<br>\\nQuick learner with ability to adapt to new software systems Work Yard experience a plus but not required<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nDirect hire opportunity with a stable and growing company<br>\\nStandard Mondayâ\\u0080\\u0093Friday business hours with occasional afterhours availability<br>\\n401(k) with employer match<br>\\nVacation and sick accrual<br>\\nMedical benefits<br>\\nSupportive, team-oriented environment with opportunities for professional growth<br>\\nPlay an essential role in a company where your work makes a direct impact on client service and satisfaction\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"11/03/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Bilingual Front Desk Coordinator \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79932\",\n                        \"city\": \"El Paso\",\n                        \"address1\": \"6351 S Desert Blvd #210\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19590,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Dentist â\\u0080\\u0093 $25K Sign-On + $5K Relocation | Partnership Track</strong><br>\\n<strong>Location:</strong> El Paso, TX (Additional openings in Midland, TX)<br>\\n<strong>Employer:</strong> Frontline Source Group â\\u0080\\u0093 Premier Dental Staffing</p>\\n\\n<p>Join a thriving, patient-focused practice thatâ\\u0080\\u0099s transforming dental care in West Texas! Whether youâ\\u0080\\u0099re a passionate new graduate ready to launch your career or an experienced dentist seeking growth and partnership potential, this is your opportunity to work with a highly successful team in a state-of-the-art environment.</p>\\n\\n<hr>\\n<h3><strong>Why This Opportunity Stands Out</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p><strong>$25K Sign-On Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$5K Relocation Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$2K CE Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$1K Daily Guarantee</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>Aggressive Pay + Future Partnership Track</strong></p>\\n\\t\\n\\t<li>\\n\\t<p>Growing, established practice with advanced technology and strong patient demand</p>\\n\\t\\n</ul>\\n\\n<hr>\\n<h3><strong>What Youâ\\u0080\\u0099ll Do</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Diagnose, treat, and manage dental conditions with compassion and precision</p>\\n\\t\\n\\t<li>\\n\\t<p>Perform procedures including extractions, root canals, cavity fillings, and bite/alignment corrections</p>\\n\\t\\n\\t<li>\\n\\t<p>Provide preventive care, cleanings, and patient education for long-term oral health</p>\\n\\t\\n\\t<li>\\n\\t<p>Administer anesthesia or sedatives when necessary</p>\\n\\t\\n\\t<li>\\n\\t<p>Prescribe medications for pain management and infection control</p>\\n\\t\\n\\t<li>\\n\\t<p>Order, analyze, and interpret x-rays and other diagnostic tests</p>\\n\\t\\n\\t<li>\\n\\t<p>Maintain detailed patient records and collaborate with a supportive, skilled team</p>\\n\\t\\n</ul>\\n\\n<hr>\\n<h3><strong>What You Bring</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p><strong>DDS or DMD</strong> from an accredited program</p>\\n\\t\\n\\t<li>\\n\\t<p>Valid <strong>state dental license</strong> and malpractice insurance</p>\\n\\t\\n\\t<li>\\n\\t<p>Strong clinical skills and familiarity with dental technology and diagnostic tools</p>\\n\\t\\n\\t<li>\\n\\t<p>Excellent communication skills and patient-focused mindset</p>\\n\\t\\n\\t<li>\\n\\t<p>Ability to lead, collaborate, and maintain the highest clinical standards</p>\\n\\t\\n</ul>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"11/03/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"80011\",\n                        \"city\": \"Aurora\",\n                        \"address1\": \"15586 E 17th Ave STE A\",\n                        \"state\": \"CO\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19588,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Aurora Colorado is seeking an Accounts Payable Clerk to join a trusted professional cleaning and facility maintenance organization on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:Â </strong><br>\\nOur client is a well-established property services organization specializing in renovation, unit turn services, and painting solutions across the Denver metro and surrounding areas. Serving a wide range of commercial clients, this dynamic company is known for delivering timely and high-quality service. With a collaborative environment, strong leadership, and long-term stability, this organization provides a supportive place to build your career.<br>\\n<br>\\n<strong>Accounts Payable Clerk Role:</strong><br>\\nAs the Accounts Payable Clerk, you will play a key role in supporting the finance team and ensuring all payables-related tasks are completed with accuracy and timeliness. This position requires a high level of attention to detail, organizational strength, and the ability to manage multiple priorities in a fast-paced setting.<br>\\nProcess vendor invoices accurately and in a timely manner.<br>\\nMatch invoices to purchase orders and receipts.<br>\\nEnter data into QuickBooks and maintain organized financial records.<br>\\nPost checks and manage payments according to company policies.<br>\\nReconcile vendor statements and resolve billing discrepancies.<br>\\nAssist with month-end closing processes related to payables.<br>\\nCommunicate effectively with vendors and internal departments to ensure documentation accuracy.<br>\\nMaintain confidentiality and accuracy in all financial data.<br>\\n<br>\\n<strong>Accounts Payable Clerk Background:</strong><br>\\n2â\\u0080\\u00933 years of Accounts Payable or general accounting experience.<br>\\nQuickBooks experience required; QuickBooks Enterprise preferred.<br>\\nHigh attention to detail and accuracy.<br>\\nStrong data entry and organizational skills.<br>\\nAbility to manage multiple priorities and meet deadlines.<br>\\nExcellent communication and interpersonal skills.<br>\\nProficiency in Microsoft Excel and related accounting tools.<br>\\n<br>\\n<strong>Features and Benefits</strong><br>\\nDirect hire opportunity with a stable and growing company<br>\\n401(k) with employer match<br>\\nVacation and sick accrual<br>\\nMedical benefits<br>\\nSupportive, team-oriented environment with opportunities for professional growth\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/31/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \" Accounts Payable Clerk\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"21.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75057\",\n                        \"city\": \"Lewisville\",\n                        \"address1\": \"830 E Valley Ridge Blvd\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19587,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Lewisville, Texas is has an immediate need for an Accounts Payable Clerk for a 3-4 month contract assignment.Â <br>\\n<br>\\n<strong>Company Profile:Â </strong><br>\\nOur client is a well-established construction company known for its hands-on, collaborative work environment and long-standing reputation for quality.<br>\\n<br>\\n<strong>Accounts Payable Clerk Role:</strong><br>\\nAs the Accounts Payable Clerk, youâ\\u0080\\u0099ll play a key role in supporting daily operations for the accounting department during this critical time. This temporary position will run approximately through the end of January and reports directly to the Assistant Controller.<br>\\nMonitor the Accounts Payable inbox and record all incoming invoices.<br>\\nEnter 1,000+ invoices per month, ensuring all are accounted for and properly documented.<br>\\nMaintain strong internal and external relationships with vendors and team members, resolving any discrepancies quickly.<br>\\nWork extensively within Excel spreadsheets and the Tremble Viewpoint Spectrum ERP system (training provided).<br>\\nManage repetitive, high-volume data entry tasks efficiently while maintaining accuracy.<br>\\nUnderstand and locate job numbers within invoices and project files.<br>\\n<br>\\n<strong>Accounts Payable Clerk Background:</strong><br>\\n2+ years of Accounts Payable or related accounting experience preferred<br>\\nStrong Excel and computer skills â\\u0080\\u0093 accuracy and speed in data entry are essential<br>\\nComfortable working with high volumes of invoices and repetitive tasks<br>\\nExperience within the construction industry is a plus, but not required<br>\\nStrong communication and organization skills with attention to detail<br>\\n<br>\\n<strong>Features and Benefits while On Contract:</strong><br>\\nWe go beyond the basic staffing agency offerings! You can view our extensive list of benefits on our website under the Candidate Benefits tab, including medical, dental, vision, and more.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/31/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Contract\",\n                    \"title\": \"Accounts Payable Clerk\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"07662\",\n                        \"city\": \"Rochelle Park\",\n                        \"address1\": \"220 W Passaic St\",\n                        \"state\": \"NJ\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19586,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Corporate Development Manager</strong><br>\\nOur client in Rochelle Park, NJ, has an immediate opening for a Corporate Development Manager on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nRetailer<br>\\nTeam atmosphere and environment<br>\\nProudly supporting the community they serve<br>\\n<br>\\n<strong>Corporate Development Manager:</strong><br>\\nTake charge as the visionary behind retail transformation. In this high impact role, youâ\\u0080\\u0099ll ignite growth by launching new retail locations, guiding renovations, and championing facility excellence. Youâ\\u0080\\u0099ll lead a creative, highly skilled team, ensuring each project is delivered with innovation, precision, and unwavering standards.<br>\\nDesign and launch major store projects from initial location analysis through grand opening.<br>\\nElevate facilities, driving proactive maintenance, innovative upgrades, and seamless operations.<br>\\nServe as the bridge across internal and external collaborators, aligning stakeholders and mobilizing resources to achieve project goals.<br>\\nTranslate complex progress into crisp updates for executive leaders, highlighting wins and surfacing challenges.<br>\\nArchitect project strategies, oversee bidding, and challenge technical details for clarity and impact.<br>\\nManage demanding schedules, balancing costs, timelines, and compliance with agility.<br>\\nMaintain meticulous records, ensuring every detail is accurate, accessible, and audit ready.<br>\\nExplore fresh site opportunities and champion data driven decisions for expansion or improvement.<br>\\nFoster cross team synergy through clear communication and proactive coordination.<br>\\n<br>\\n<strong>Corporate Development Manager Background Profile:</strong><br>\\nBachelors degree in Construction Management, Architecture, Civil Engineering, or a closely related field. Masters degree is a strong plus.<br>\\nAt least 5 years managing large scale construction or facility projects, ideally within the retail sector.<br>\\nProficient with AutoCAD and project management software; Excel at using the MS Office suite.<br>\\nDemonstrated strengths in leadership, critical thinking, and communication, able to inspire teams and turn complex plans into clear action.<br>\\nAnalytical and decisive under pressure, with the ability to balance multiple deadlines and priorities.<br>\\nExperience with regulatory compliance, budgeting, and risk management in construction environments.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Dental, Vision, Life Insurance, and more.<br>\\nGenerous paid time off<br>\\nCompany Car<br>\\nCollaborative and supportive team environment.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/31/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Corporate Development Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77471\",\n                        \"city\": \"Rosenberg\",\n                        \"address1\": \"30444 SW Freeway\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19585,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Information Technology\",\n                                \"id\": 1009043\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client is seeking a Director of Information Systems for a direct hire, on-site leadership opportunity in Rosenberg, TX<br>\\nThis role is ideal for a hands-on IT leader who combines technical depth in software development and systems integration with the strategic insight to lead digital transformation across a growing organization.<br>\\n<br>\\n<strong>Company Profile:Â </strong><br>\\nWell-established and rapidly expanding company within the manufacturing and distribution sector.Â <br>\\n<br>\\n<br>\\n<strong>Director of Information Systems Role:Â </strong><br>\\nAs the Director of Information Systems, youâ\\u0080\\u0099ll lead all aspects of technology strategy, infrastructure, and software development. This is a direct hire opportunity offering the ability to both design and implement enterprise-wide solutions that improve efficiency, automation, and visibility across the organization.<br>\\nYouâ\\u0080\\u0099ll serve as a bridge between IT, operations, and executive leadership â\\u0080\\u0094 ensuring systems are secure, scalable, and aligned with business goals.<br>\\nDirect IT operations, infrastructure, and cybersecurity across multiple locations.<br>\\nAlign technology initiatives with organizational objectives across Operations, Manufacturing, Sales, and Finance.<br>\\nMentor and lead IT and development team members while remaining actively involved in technical projects.<br>\\nManage IT budgets, vendor contracts, and technology planning.<br>\\nSoftware Development & Systems Integration<br>\\nDesign, develop, and maintain custom internal systems and APIs using SQL, JavaScript, HTML/CSS, and related technologies<br>\\nBuild automation and data tools to streamline workflows and improve reporting accuracy.<br>\\nIntegrate business platforms such as ERP, CRM, and WMS systems to improve data connectivity and process efficiency.<br>\\nWrite and optimize SQL queries, stored procedures, and reporting pipelines.<br>\\nCross-Functional Collaboration<br>\\nPartner with business leaders to analyze workflows and identify technology improvements.<br>\\nTranslate functional requirements into technical design and deliver scalable solutions.<br>\\nLead initiatives that enhance process automation and data-driven decision-making.<br>\\nERP & Infrastructure<br>\\nAdminister and enhance SAP (Business One or S/4HANA) or similar ERP environments.<br>\\nSupport financial, operational, and inventory management processes through integrated system design.<br>\\nMaintain cybersecurity standards, backups, and disaster recovery procedures.<br>\\nDrive modernization initiatives, including virtualization, automation, and cloud migration.<br>\\n<br>\\n<br>\\n<strong>Director of Information Systems Background Profile:Â </strong><br>\\nBachelorâ\\u0080\\u0099s degree in Computer Science, Information Systems, or related field may consider equivalent professional experience<br>\\n8â\\u0080\\u009310 years of progressive IT experience with at least 5 years of hands-on programming experience in SQL, JavaScript, HTML/CSS.<br>\\nStrong working knowledge of Python, Node.js, or similar scripting languages.<br>\\nProven experience developing and integrating ERP and business systems.<br>\\nUnderstanding of accounting and operational workflows to support system optimization.<br>\\nExperience in manufacturing or distribution environments strongly preferred.<br>\\nExcellent communication and leadership skills with the ability to collaborate across departments.<br>\\n<br>\\n<strong>Features and Benefits</strong><br>\\nCompetitive compensation and leadership-level benefits package.<br>\\nMedical, dental, and vision coverage, plus paid holidays and PTO.<br>\\n401(k) with company match.<br>\\nStable and growing company with a strong focus on modernization and innovation.<br>\\nCollaborative environment with visible executive engagement and support for technology investment.<br>\\nOpportunity to make a measurable impact on the companyâ\\u0080\\u0099s digital transformation and business performance.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/30/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Director of Information Systems\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"37069\",\n                        \"city\": \"Franklin\",\n                        \"address1\": \"2020 Fieldstone Parkway Suite 900\",\n                        \"state\": \"TN\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19578,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Retail/Wholesale\",\n                                \"id\": 1009069\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Store Manager</strong><br>\\nOur client in Franklin, TN, has an immediate opening for a Store Manager on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nRetail service center supporting both businesses and consumers with professional solutions for printing, packing, shipping, and mailbox services. Dedicated to providing convenient, high-quality support that enhances the guest experience through efficiency, accuracy, and personal attention.<br>\\nThe team enjoys a collaborative work culture built around customer relationships, community engagement, and steady work-life balanceâ\\u0080\\u0094an environment that promotes both personal and professional growth.<br>\\n<br>\\n<strong>Store Manager:</strong><br>\\nThe Store Manager leads all aspects of daily operations in a high-service retail environment. This role focuses on delivering an exceptional guest experience, achieving sales goals, maintaining operational excellence, and fostering a positive, team-oriented work culture. The ideal candidate combines leadership, customer engagement, and attention to detail with a hands-on approach to daily store activities.<br>\\nRecruit, train, mentor, and manage store associates to ensure consistent quality service and team success.<br>\\nDeliver outstanding service, promptly resolve guest inquiries, and foster a friendly and solutions-focused environment.<br>\\nSupervise daily store functions, including cash handling, scheduling, reporting, and compliance with service standards.<br>\\nAchieve sales targets by promoting in-store solutions, retail products, and business services.<br>\\nTrack and maintain inventory levels, ensuring accuracy and availability of materials to meet customer needs.<br>\\nImplement local marketing strategies and participate in community initiatives to increase awareness and customer loyalty.<br>\\nMaintain store organization, cleanliness, and safety standards, fostering a welcoming environment for both guests and staff.<br>\\n<br>\\n<strong>Store Manager Background Profile:</strong><br>\\nProven retail or service-based management experience with a focus on leadership and customer service excellence.<br>\\nStrong communication and interpersonal skills for both customer interaction and staff development.<br>\\nProficiency in Microsoft Office and point-of-sale systems.<br>\\nSolid understanding of business operations, sales performance metrics, and financial oversight.<br>\\nAbility to work flexible retail hours that promote work-life balance.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nPaid Time Off<br>\\nBonus Incentive Plan<br>\\nCollaborative and supportive team environment.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/29/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Store Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78703\",\n                        \"city\": \"Austin\",\n                        \"address1\": \"\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19577,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Customer Service\",\n                                \"id\": 1009007\n                            },\n                            {\n                                \"name\": \"Administrative\",\n                                \"id\": 1008991\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client is seeking a Customer Operations Manager in Austin, TX, to lead North American operations for a growing global organization. This is a direct hire opportunity for a dynamic professional ready to build and lead a unified customer operations function focused on exceptional customer experience, scalability, and operational excellence.<br>\\n<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nOur client is a global technology solutions company.<br>\\n<br>\\n<strong>Customer Operations Manager Role</strong><br>\\nAs the Customer Operations Manager, North America, you will play a strategic leadership role responsible for building and executing unified, scalable customer operations across the region. Youâ\\u0080\\u0099ll lead and develop the Customer Operations team, ensuring seamless end-to-end customer experienceâ\\u0080\\u0094from client onboarding and service delivery to ongoing support.<br>\\nEstablish and implement the North American customer operations model and lead a high-performing LCM (Lifecycle Management) team.<br>\\nOversee client management, service delivery, and customer engagement across all operational functions.<br>\\nCollaborate with global and regional leadership to unify operations, processes, and systems.<br>\\nDrive efficiency and scalability through process improvement, data-driven KPIs, and strategic planning.<br>\\nRecruit, coach, and empower team members to deliver top-tier customer service and continuous improvement.<br>\\nLead customer experience initiatives and ensure operational compliance with global standards.<br>\\nMonitor performance, identify areas for improvement, and implement actionable solutions to enhance results.<br>\\n<br>\\n<strong>Customer Operations Manager Background Profile</strong><br>\\n10+ years of experience in customer operations or customer service leadership roles<br>\\nProven track record in leading teams, improving processes, and driving operational success<br>\\nExperience in international or matrix organizations; ability to manage across diverse cultures and regions<br>\\nDemonstrated success implementing scalable systems and service delivery models<br>\\nStrong business acumen, with a focus on results, efficiency, and customer satisfaction<br>\\nBachelorâ\\u0080\\u0099s degree or equivalent vocational education required.<br>\\nExcellent communication skills<br>\\n<br>\\n<br>\\n<strong>Features and Benefits</strong><br>\\nComprehensive medical, dental, and vision insurance coverage<br>\\nOpportunity to lead a new regional function and make a lasting impact on company growth<br>\\nCollaborative, global team environment with opportunities for cross-functional and international collaboration<br>\\nStrong commitment to employee development, innovation, and leadership empowerment<br>\\nBe part of an organization that values sustainability, customer focus, and operational excellence\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/29/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Customer Operations Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"34787\",\n                        \"city\": \"Winter Garden\",\n                        \"address1\": \"700 W Plant St\",\n                        \"state\": \"FL\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19576,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Information Technology\",\n                                \"id\": 1009043\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Join an innovative technology-driven organization as a Senior Software Developer in Winter Garden, Fl. This direct hire position offers the opportunity to take ownership of complex software architecture, lead modernization initiatives, and contribute to the development of a high-performance point cloud processing platform. Our client is seeking a highly skilled engineer passionate about optimization, scalability, and performance.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nKnown for innovation and technical excellence, the company supports a range of industries including geospatial, manufacturing, and engineering. The environment is highly collaborative and technology-forward, offering opportunities to shape the next generation of performance-driven applications.<br>\\n<br>\\n<strong>Senior Software Developer Role:Â </strong><br>\\nAs the Senior Software Developer, youâ\\u0080\\u0099ll lead modernization and high-performance development efforts across the companyâ\\u0080\\u0099s core software platform. You will play a critical role in evolving existing C++ and C# systems to leverage the latest performance standards and GPU computing techniques<br>\\nLead the modernization and refactoring of legacy C++ systems, upgrading to C++20 for scalability, performance, and maintainability<br>\\nDesign, implement, and optimize a high-performance engine for processing and rendering point cloud datasets exceeding 1 billion points<br>\\nArchitect and optimize spatial data structures (Octrees, k-d trees) to accelerate spatial queries and rendering<br>\\nBuild new features and tools for the companyâ\\u0080\\u0099s point cloud software suite, from concept through deployment<br>\\nApply GPU programming techniques (e.g., Boost.Compute or equivalent) to maximize computational efficiency<br>\\nCollaborate with a seasoned development team through code reviews, technical discussions, and best practice initiatives<br>\\nDiagnose and resolve performance bottlenecks, rendering issues, and computational errors to ensure reliability and speed<br>\\n<br>\\n<strong>Senior Software Developer background Profile:Â </strong><br>\\n5+ years of professional software development experience<br>\\nExpert proficiency in modern C++ (C++20)<br>\\nStrong experience with C# and .NET 4.8 Framework<br>\\nHands-on experience with GPU programming (Boost.Compute or similar)<br>\\nSolid foundation in linear algebra (vectors, matrices, transformations)<br>\\nProficiency with Git and modern version control workflows<br>\\nProven ability to architect complete software solutions independently<br>\\nStrong knowledge of spatial data structures (Octrees, k-d trees) a plusÂ <br>\\n<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nmedical, dental, and vision coverage.<br>\\n401(k) plan with employer match<br>\\nPTO and paid holidays\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/28/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Senior Software Developer\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"26.44\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"85034\",\n                        \"city\": \"Phoenix\",\n                        \"address1\": \"4320 E Magnolia Street\",\n                        \"state\": \"AZ\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19575,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Accounting SpecialistÂ </strong><br>\\nOur client located inÂ Phoenix, AZÂ has an immediate need for anÂ Accounting SpecialistÂ Â on a contract to possible hire basis.Â <br>\\nÂ <br>\\n<strong>Company Profile:</strong><br>\\nFabrication companyÂ <br>\\n<br>\\n<strong>Accounting SpecialistÂ Â Role:</strong><br>\\nThe Accounting SpecialistÂ Â is responsible for assisting the controller with accounts payable, accounts receivable andÂ Â reconciliations.<br>\\nReceive, process and enter accounts payable for processing<br>\\nInvoice clients and ensure company receives payment in a timely manner<br>\\nContact past due clients to confirm they received the invoice and have it set up to pay or already processed payment as well as request check numbers for payment and confirm when payment was sent<br>\\nReconciliation:Â Balance accounts, reconcile statements, and note and report discrepancies.Â <br>\\nFinancial reporting: Assist with preparing financial and fiscal reports, statements, and other financial records.<br>\\n<br>\\n<strong>Accounting Specialist Background Profile:</strong><br>\\nHigh School Diploma or equivalent<br>\\n3+ years previous experience in accounting<br>\\nExperience with QuickBooksÂ <br>\\nMust pay attention to details<br>\\nPositive attitude & willingness to pitch in and help others<br>\\nAbility to work independently<br>\\nÂ <br>\\n<strong>Features & Benefits of Client:Â </strong><br>\\nMedical, Dental, Vision<br>\\nPTO<br>\\nExcellent work environmentÂ <br>\\nStrong team that works well togetherÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/28/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Contract\",\n                    \"title\": \"Accounting Specialist \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"30666\",\n                        \"city\": \"Statham\",\n                        \"address1\": \"1940 Statham Drive\",\n                        \"state\": \"GA\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19574,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Human Resources Manager</strong></p>\\n\\n<p>Our client in Athens, GA is seeking an experienced Human Resources Manager to join their team on a direct-hire basis.</p>\\n\\n<p><strong>Company Profile:</strong></p>\\n\\n<ul>\\n\\t<li>Construction and Utility Services Firm</li>\\n\\t<li>Family-Oriented, Safety-Driven Culture</li>\\n\\t<li>Strong Commitment to Employee Growth and Operational Excellence</li>\\n</ul>\\n\\n<p><strong>Human Resources Manager:</strong></p>\\n\\n<p>We are seeking a strategic and hands-on Human Resources Manager to lead and modernize HR functions within a growing construction and utility services organization. The ideal candidate is a trusted advisor with strong employee relations skills, a process-improvement mindset, and the ability to balance compliance with an engaging employee experience.</p>\\n\\n<ul>\\n\\t<li>Evaluate and enhance current HR policies, procedures, and systems to identify gaps and improve efficiency.</li>\\n\\t<li>Lead HR modernization initiatives across onboarding, compliance, benefits, and employee relations.</li>\\n\\t<li>Partner with leadership to promote a positive, respectful workplace culture that supports accountability and professional development.</li>\\n\\t<li>Manage full-cycle recruitment for skilled trade and professional roles, ensuring consistency and alignment with company values.</li>\\n\\t<li>Redesign and implement an onboarding experience that supports engagement and long-term retention.</li>\\n\\t<li>Provide guidance on performance management, coaching, and conflict resolution.</li>\\n\\t<li>Administer benefits, compensation programs, and leave policies while maintaining full legal compliance.</li>\\n\\t<li>Ensure adherence to all federal, state, and local labor laws and safety regulations.</li>\\n\\t<li>Oversee HR records, reporting, and HRIS administration; leverage HR metrics to inform business decisions.</li>\\n</ul>\\n\\n<p>Human Resources Manager Background Profile:</p>\\n\\n<ul>\\n\\t<li>Bachelorâ\\u0080\\u0099s degree in Human Resources, Business Administration, or related field required; HR certification (PHR/SPHR or SHRM-CP/SHRM-SCP) preferred.</li>\\n\\t<li>7+ years of progressive HR experience, preferably within construction, utilities, or related field.</li>\\n\\t<li>Proven success implementing and improving HR processes, systems, and programs.</li>\\n\\t<li>Strong knowledge of employment law, compliance, and workforce planning.</li>\\n\\t<li>Exceptional communication, interpersonal, and problem-solving skills.</li>\\n\\t<li>Proficiency in HRIS platforms and Microsoft Office Suite; NetSuite experience a plus.</li>\\n\\t<li>&nbsp;Bilingual (English/Spanish) preferred.</li>\\n</ul>\\n\\n<p><strong>Features and Benefits:</strong></p>\\n\\n<ul>\\n\\t<li>Comprehensive health, dental, and vision insurance.</li>\\n\\t<li>Monthly bonus&nbsp;</li>\\n\\t<li>Car allowance and fuel card</li>\\n\\t<li>401(k) with company match.</li>\\n\\t<li>Generous paid time off and holidays.</li>\\n\\t<li>Professional development and training opportunities.</li>\\n</ul>\\n\\n<p>&nbsp;</p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/27/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Human Resources Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"20.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75219\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"3811 Turtle Creek, Suite 1725\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19572,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Customer Service\",\n                                \"id\": 1009007\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Dallas, Texas has an immediate opening for a Customer Service Representative on a contract to hire basis.<br>\\n<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEnvironmental Services<br>\\nIn business over 20 years<br>\\nFully In Office<br>\\n<br>\\n<strong>Customer Service Representative Role:</strong><br>\\nThe Customer Service Representative will be responsible for managing customer inquiries proactively finding solutions and ensuring overall customer satisfaction.<br>\\nRespond to customer inquiries via phone and email maintaining professionalism and efficiency.<br>\\nIdentify customer concerns evaluate their needs and provide the most suitable resolutions.<br>\\nAct quickly to resolve issues while keeping customers updated throughout the process.<br>\\nRecord interactions and solutions in the CRM system for accurate tracking.<br>\\nCollaborate with internal and external teams to ensure smooth service delivery and problem resolution.<br>\\nUtilize strong problem-solving skills to address challenges independently escalating when necessary.<br>\\nGenerate reports and monitor cases to ensure timely follow-ups and complete customer satisfaction.<br>\\nAssist field employees as needed including managing logistics shipping materials and supplies to stores and drivers.<br>\\n<br>\\n<strong>Customer Service Representative Profile</strong><br>\\nHigh school diploma or equivalent<br>\\n2-3 years of proven customer support experience<br>\\nStrong problem-solving skills with a figure it out mindset.<br>\\nAbility to work independently and take initiative.<br>\\nStrong phone and email communication skills with active listening and clear problem resolution.<br>\\nFamiliarity with CRM systems ServiceChannel experience is a plus.<br>\\nAbility to adapt to different customer communication styles and de-escalate tense situations.<br>\\nExcellent multitasking prioritization and time-management skills.<br>\\nWorking knowledge of Microsoft Excel and ability to quickly learn new software.<br>\\nBilingual a plus<br>\\n<br>\\n<strong>Features and Benefits while On Contract:</strong><br>\\nWe go beyond the basic staffing agency offerings! Opportunity to participate in a comprehensive benefit plan, Paid Time Off on an accrual basis and weekly direct deposit.<br>\\n<br>\\n<strong>Features and Benefits of Client:</strong><br>\\nMedical<br>\\nDental<br>\\nVision<br>\\nPTO\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/24/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Contract\",\n                    \"title\": \"Customer Service Representative\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78703\",\n                        \"city\": \"Austin\",\n                        \"address1\": \"\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19571,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Austin, TX is seeking a HR Manager to drive growth and innovation in a dynamic, fast-paced environment. Apply now for this direct hire opportunity with an international technology organization. Bachelor&apos;s degree and 7+ years of progressive HR experience required.<br>\\n<br>\\n<br>\\nCompany Profile:<br>\\nInternational technology and services organization experiencing rapid growth across the U.S. and Canadian markets. With an established global presence and a strong reputation for innovation, they are scaling both organically and through strategic partnerships. The company values collaboration, integrity, and long-term employee development, offering an environment that combines global resources with a local, entrepreneurial culture<br>\\n<br>\\n<br>\\n<strong>HR Manager Role</strong><br>\\nAs the HR Manager you will be responsible for driving and executing a comprehensive HR strategy that supports business growth across both the U.S. and Canadian markets. This dynamic, hands-on role blends strategic partnership with operational excellence, requiring a balance of talent acquisition, employee relations, and HR process implementation.<br>\\nThe HR Manager will lead the development and execution of the regional HR plan aligned with group-wide strategy, ensuring compliance with local labor laws, fostering a consistent employee experience, and driving cross-cultural collaboration across teams. A major focus of this role will be direct recruitment and talent acquisition, building strong employer branding and sustainable pipelines to support ongoing expansion.<br>\\nDevelop and execute the North American HR plan aligned with business objectives and global HR strategy.<br>\\nAct as a trusted HR partner to senior leaders and line managers across the full employee lifecycle.<br>\\nLead and execute Talent Acquisition strategiesÂ  including workforce planning, direct sourcing, employer branding, and end-to-end recruitment.<br>\\nImplement and manage HR policies, programs, and processes that comply with U.S. and Canadian labor laws.<br>\\nSupport onboarding, learning, and development programs to enhance employee experience and retention.<br>\\nPartner with global Centers of Excellence (Talent Acquisition, L&D, Compensation & Benefits, HR Systems) to ensure consistent process execution.<br>\\nManage HR systems, data integrity, and reporting systems include Sympa, LMS 360, Teamtailor, etc.<br>\\nMaintain relationships with external vendors, benefits providers, and HR partners.<br>\\nOversee payroll cooperation, benefits administration, and employee engagement initiatives.<br>\\nLead HR communications, internal updates, and data reporting on HR KPIs and trends.<br>\\n<br>\\n<strong>HR Manager Background Profile</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Human Resources, Organizational Development, or related field (Masterâ\\u0080\\u0099s preferred).<br>\\n7+ years of progressive HR experience, including strong hands-on Talent Acquisition and generalist experience.<br>\\nProven success executing HR strategy across multi-location or multi-country organizations.<br>\\nExperience implementing HR policies and systems in a growing, fast-paced business environment.<br>\\nSolid knowledge of U.S. and Canadian employment laws.<br>\\nExcellent communication, stakeholder management, and interpersonal skills.<br>\\nStrong analytical ability and familiarity with HR data and reporting metrics.<br>\\nIndependent, proactive, and structured approach â\\u0080\\u0094 able to balance operational delivery with strategic partnership.<br>\\n<br>\\n<strong>Features and Benefits</strong><br>\\nCompetitive base salary with annual bonus potential.<br>\\nComprehensive benefits package including medical, dental, vision, and 401(k).<br>\\nGenerous paid time off and flexible hybrid work options.<br>\\nGlobal exposure and opportunity to shape HR in a fast-scaling international organization.<br>\\nCollaborative, inclusive culture that values innovation and professional growth.<br>\\nMeaningful role driving HR impact and alignment across North American operations.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/24/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"HR Manager \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"21212\",\n                        \"city\": \"Baltimore\",\n                        \"address1\": \"6213 N Charles St\",\n                        \"state\": \"MD\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19570,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Human Resources Manager</strong><br>\\nOur client in Baltimore, MD, has an immediate opening for a Human Resources Manager on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSpecialty Grocery Retailer<br>\\nTeam Atmosphere and Environment<br>\\nPassion for Food and People<br>\\n<br>\\n<strong>Human Resources Manager:</strong><br>\\nWe are seeking an experienced Retail Human Resources Manager to oversee all HR functions supporting a workforce of 250+ employees across multiple retail locations in the Baltimore area. The ideal candidate is proactive, people-focused, and passionate about driving organizational culture, engagement, and compliance within a fast-paced retail environment.<br>\\nLead all aspects of the employee lifecycle including recruitment, onboarding, performance management, and offboarding.<br>\\nPartner with store and corporate leadership to align HR initiatives with business goals and ensure consistent employee experiences.<br>\\nDevelop and implement policies and practices that promote a positive workplace culture, retention, and productivity.<br>\\nProvide coaching and guidance to managers on employee relations, conflict resolution, and disciplinary actions.<br>\\nManage HR compliance and ensure adherence to federal, state, and local employment laws.<br>\\nOversee payroll and benefits administration in coordination with corporate HR and external vendors.<br>\\nAnalyze workforce data and metrics to support decision-making and reporting.<br>\\nCoordinate training and development programs to enhance employee skills and engagement.<br>\\nÂ Â  Â <br>\\n<strong>Human Resources Manager Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Human Resources, Business Administration, or a related field required; Masterâ\\u0080\\u0099s degree preferred.<br>\\n5+ years of progressive HR experience, with at least 2 years in a retail or multi-site environment.<br>\\nStrong working knowledge of employment laws (EEO, FMLA, ADA, FLSA, etc.).<br>\\nProven ability to manage complex employee relations issues with tact and fairness.<br>\\nExcellent written and verbal communication skills.<br>\\nProficiency with HRIS systems, Microsoft Office Suite, and payroll software.<br>\\nPHR or SHRM-CP certification preferred.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Dental, Life Insurance, AD&D, FSA, and more.<br>\\nGenerous paid time off<br>\\nCollaborative and supportive team environment.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/22/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Human Resources Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Confidential\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77056\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"5051 Westheimer Rd Ste 1900\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19569,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Are you an experienced Controller ready to lead and strengthen the accounting function of a growing organization? Our client is seeking a hands-on Controller in Houston, Texas to oversee financial reporting. You will manage audit and tax compliance, and drive accounting process improvements. This direct hire opportunity is ideal for a strategic accounting professional who thrives in a fast-paced, global environment.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nOur client operates within a global, project-based industry, supporting large-scale initiatives in the energy and infrastructure sector.Â <br>\\n<br>\\n<strong>Controller Role</strong><br>\\nThe Controller will oversee consolidated reporting under US GAAP and Japanese GAAP, manage audits and tax processes, and implement system upgrades to enhance accuracy and efficiency. This position requires both technical expertise and strong leadership to guide a growing team and support ongoing business expansion.<br>\\nOversee monthly, quarterly, and annual financial reporting processes<br>\\nLead external financial reporting and consolidated statements<br>\\nCoordinate with external auditors and ensure full audit compliance<br>\\nManage tax filings and relationships with external tax advisors<br>\\nApply accounting treatments per US GAAP, Japanese GAAP, and internal policies<br>\\nMaintain and strengthen internal controls and reporting standards<br>\\nProvide accounting guidance on new business transactions and complex issues<br>\\nLead accounting system implementation or upgrade initiatives (e.g., SAP, OneStream, or similar)<br>\\nCollaborate with subsidiaries for consolidated financial reporting<br>\\nPrepare financial reports and presentations for senior management and the audit committee<br>\\nManage, mentor, and evaluate a team of accountants and contractors<br>\\n<br>\\n<br>\\n<strong>Controller Backgroud Profile</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Accounting or related field required; active CPA license<br>\\n10+ years of progressive accounting and finance experience<br>\\nDeep knowledge of US GAAP and complex accounting transactions<br>\\nProven leadership in financial reporting, internal controls, and audit coordination<br>\\nAdvanced Microsoft Excel skills<br>\\nPreferred experience:<br>\\nMultinational or complex corporate environments<br>\\nEnergy industry background<br>\\nFamiliarity with Diva, OneStream, or SAP systems<br>\\nCross-cultural or bilingual reporting experience<br>\\n<br>\\n<br>\\n<strong>Features and Benefits of Client:</strong><br>\\nMedicalÂ <br>\\nDentalÂ <br>\\nVision<br>\\nPTO<br>\\nBonus PotentialÂ <br>\\nHybrid schedule\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/21/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Controller\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"28.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77380\",\n                        \"city\": \"The Woodlands\",\n                        \"address1\": \"10055 Grogans Mill Road, Suite 250\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19568,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Are you an experienced Accounting Specialist seeking a temporary or contract-to-hire opportunity in the energy and infrastructure industry? Our client is looking for a hands-on professional to support multi-entity accounting operations, month-end close, and internal reporting. This Accounting Specialist role in The Woodlands Texas is ideal for someone who thrives in a dynamic environment and is looking to make a long-term impact within a growing organization.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nOur client is a well-established organization within the energy and infrastructure sector, supporting large-scale, project-based operations. Known for innovation and operational excellence, the company fosters a collaborative and fast-paced work culture where employees are encouraged to take ownership and drive results.Â <br>\\n<br>\\n<strong>Accounting Specialist Role</strong><br>\\nAs the Accounting Specialist, you will assist the Controller in maintaining accurate financial records and ensuring smooth day-to-day accounting operations. Youâ\\u0080\\u0099ll manage general ledger activity, handle vendor payables and customer receivables, process employee expenses, and support month-end close activities. The Accounting Specialist will also help track capital expenditures (CAPEX), manage intercompany allocations, and prepare internal financial reports.<br>\\nPrepare and post journal entries; reconcile balance sheet and income statement accounts<br>\\nManage accounts payable, accounts receivable, employee expenses, and credit card reconciliations<br>\\nSupport month-end and year-end close processes, including preparation of financial reporting packages<br>\\nAssist with intercompany accounting, fixed asset tracking, and capital project reporting<br>\\nReview and verify expense submissions in Expensify, ensuring accurate coding and compliance<br>\\nMaintain documentation for audits and ensure adherence to internal accounting policies<br>\\nPartner with the Controller on cash flow analysis, budgeting, and financial planning<br>\\nSupport process improvement initiatives and assist with potential ERP migration from QuickBooks to Oracle<br>\\n<br>\\n<br>\\n<strong>Accounting Specialist Backgroup Profile</strong><br>\\n4+ years of progressive accounting experience, preferably in energy, infrastructure, or project-based industries<br>\\nStrong understanding of GAAP and full-cycle accounting<br>\\nAdvanced Excel skillsÂ <br>\\nProficiency in QuickBooks and Microsoft Excel requiredExperience with Expensify or similar expense management software<br>\\nBachelorâ\\u0080\\u0099s degree in Accounting or Finance required; CPA track or certification a plus<br>\\nProven ability to prioritize tasks, meet deadlines, and work independently in a fast-paced environment<br>\\n<br>\\n<strong>Features and Benefits While On Contract:</strong><br>\\nWe go beyond the basics! As part of our network, youâ\\u0080\\u0099ll have access to our extensive list of benefits, including health coverage, 401(k), and paid time off options. Visit the Candidate Benefits tab on our website to learn more.<br>\\n<br>\\n<strong>Features and Benefits of Client:</strong><br>\\nMedicalÂ <br>\\nDentalÂ <br>\\nVision\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/21/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Contract\",\n                    \"title\": \"Accounting Specialist \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"07662\",\n                        \"city\": \"Rochelle Park\",\n                        \"address1\": \"220 W Passaic St\",\n                        \"state\": \"NJ\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19566,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Bakery Merchandiser</strong><br>\\nOur client in Rochelle Park, NJ, has an immediate opening for a Bakery Merchandiser on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nGrocery Retailer<br>\\nTeam Atmosphere and Environment<br>\\nPassion for Food and People<br>\\n<br>\\n<strong>Bakery Merchandiser:</strong><br>\\nThe bakery merchandiser is responsible for ensuring the visual appeal, product freshness, and strategic placement of bakery items across retail locations. This role combines creativity with analytical thinking to maximize sales, maintain brand consistency, and enhance customer shopping experience.<br>\\nMaintain attractive and well-stocked bakery displays that align with brand standards and seasonal themes.<br>\\nMonitor product quality and freshness.<br>\\nPartner with store management and bakery teams to plan product placements, pricing strategies, and promotional materials.<br>\\nTrack sales performance, inventory levels, and customer preferences to inform merchandising decisions.<br>\\nCoordinate implementation of new product launches, special promotions, and seasonal campaigns.<br>\\nEnsure compliance with food safety and store sanitation standards.<br>\\nProvide feedback to corporate leadership regarding customer trends and competitor activity.<br>\\nTrain in-store bakery staff on display maintenance and promotional execution.<br>\\n<br>\\n<strong>Bakery Merchandiser Background Profile:</strong><br>\\nHigh school diploma or equivalent; associate or bachelorâ\\u0080\\u0099s degree preferred.<br>\\n2+ years of merchandising experience in a bakery.<br>\\nStrong organizational and visual merchandising skills.<br>\\nExcellent communication and time management abilities.<br>\\nProficiency in using inventory management systems and Microsoft Office Suite.<br>\\nTravel between store locations required.<br>\\nFlexible schedule, including early mornings, weekends, and holidays, based on promotional or store needs.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Dental, Vision, Life Insurance, and more.<br>\\nGenerous paid time off<br>\\nCompany Car<br>\\nBonus Incentive Plan<br>\\nCollaborative and supportive team environment.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/20/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Bakery Merchandiser\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75006\",\n                        \"city\": \"Carrollton\",\n                        \"address1\": \"1735 Sandy Lake Road\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19565,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Logistics Manager</strong><br>\\nOur client located in Dallas Fort Worth Metro is hiring a Logistics Manager. This is a direct hire opportunity.Â <br>\\n<br>\\n<strong>Logistics Manager Role:</strong><br>\\nPlan, manage, and optimize logistics, warehouse, transportation, and customer service activities.<br>\\nCreate and implement procedures to optimize product workflow and minimize costs.<br>\\nDirect and coordinate full order cycle activities, including receiving, kitting, cycle counting, put-away, shipping, and outside processing.<br>\\nEnsure compliance with ISO 9001, quality, and safety standards.<br>\\nOversee shipping operations, negotiate freight rates, and troubleshoot transportation issues.<br>\\nDevelop scheduling methods for raw materials to support production and minimize cost impacts.<br>\\nEnsure compliance with transportation regulations, including hazardous materials.<br>\\nOversee vehicle maintenance and company drivers.<br>\\nManage department budgets and analyze supply chain cost drivers to improve financial performance.<br>\\nSet production goals and performance objectives for logistics teams.<br>\\nLead personnel development, including hiring, training, performance management, and team motivation.<br>\\nEstablish workflow policies that enhance efficiency while maintaining product integrity.<br>\\nMonitor equipment productivity and ensure minimal downtime.<br>\\nCapture and track operational data for reporting purposes.<br>\\nSupervise direct reports, including shipping and loading supervisors and scheduling coordinators.<br>\\nPerform additional duties as needed to support operational goals.<br>\\n<br>\\n<strong>Logistics Manager Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Business Administration, Logistics, Supply Chain, or related field.<br>\\nMinimum of 5 years of logistics and shipping experience or equivalent combination of education and experience to qualify.<br>\\nPrior supervisory or management experience required.<br>\\nComprehensive understanding of all logistics functions and operations.<br>\\nKnowledge of ISO 9001 standards and their application to logistics.<br>\\nStrong analytical, problem-solving, delegation, conflict resolution, motivational, and team-building skills.<br>\\nExcellent interpersonal, communication, time management, and self-motivation skills.<br>\\nDemonstrated ability to lead and manage staff effectively.<br>\\nProficiency in Microsoft Office (Word, Excel, PowerPoint, Outlook) and standard logistics software.<br>\\nLean manufacturing or continuous improvement experience preferred.<br>\\nAbility to perform financial calculations, create, and manage budgets.<br>\\nKnowledge of DOT and FMCSR regulations.<br>\\nAbility to make decisions in a fast-paced environment.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth Benefits<br>\\nPTO and Holidays<br>\\n401K<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/20/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Logistics Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"85014\",\n                        \"city\": \"Phoenix\",\n                        \"address1\": \"1010 E MIssouri Avenue\",\n                        \"state\": \"AZ\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19561,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Join our established nonprofit organization in Phoenix AZ as a Controller and lead the financial operations while providing strategic guidance to senior leadership. CPA required with 7+ years of progressive accounting experience and strong knowledge of GAAP and internal controls.Â <br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nLongstanding organization in the Nonprofit industry.<br>\\nTenured TeamÂ <br>\\nOpportunity for growthÂ <br>\\n<br>\\n<strong>Controller Role:</strong><br>\\nThe Controller is responsible for leading and overseeing all accounting and financial operations . This role ensures the production of timely and accurate financial statements with insightful commentary, develops a comprehensive set of controls, budgets, and forecast models to mitigate risk, and provides strategic guidance to senior leadership. The Controller supervises the accounting team, manages audit processes, and coordinates with external advisors to support the organizationâ\\u0080\\u0099s financial health.<br>\\nResponsible for all accounting operations, including the production of timely & accurate financial statements with insightful commentary<br>\\nDevelops and maintains controls, budgets, and forecast models to mitigate risk<br>\\nCash flow forecasting and monitoring<br>\\nPrepares monthly financial reviews<br>\\nOversees tax planning and preparation, including review of return schedules<br>\\nManages escalated collection/dispute issues<br>\\nApproves monthly closeout and journal entries<br>\\nCoordinates with external advisors<br>\\nLeads profit improvement initiatives<br>\\nSpearheads the monthly general ledger close process, including detailed reconciliations and comprehensive reporting<br>\\nOversees a high-performing accounting staff, fostering collaboration and accountability<br>\\nManages year-end audit processes, ensuring compliance and accuracy<br>\\nCoordinates income tax-related schedules and performs thorough tax return reviews<br>\\nGuarantees all accounting activities adhere to US GAAP, internal controls, and corporate policies<br>\\nSupports analytical, planning, and cost control initiatives across the organization<br>\\nCollaborates with cross-functional teams to enhance efficiency and effectiveness of accounting practices<br>\\nAssists operations with project management, focusing on forecast accuracy and refined revenue recognition<br>\\nProvides financial insights to support strategic decision-making<br>\\n<br>\\n<br>\\n<strong>Controller Background Profile:</strong><br>\\nCPA required<br>\\nAccounting/Finance degree required, advanced degree preferred<br>\\nMinimum 7 years progressive accounting experience<br>\\nMinimum 3 years management experience leading accounting/finance teams<br>\\nStrong knowledge of GAAP, audit processes, and internal controls<br>\\nProficiency with Sage Intacct is a plus<br>\\nExcellent analytical, problem-solving, and communication skills<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth & Wellness: Medical, dental, and vision insurance plans with employer contributions<br>\\nRetirement: 401(k) plan with employer match<br>\\nPaid Time Off: Generous PTO, including vacation, sick leave, and paid holidays<br>\\nPerformance Incentives: Performance-based bonus<br>\\nProfessional Development: Opportunities for training, certifications, and career advancement<br>\\nWork-Life Balance: Flexible scheduling and potential hybrid work options<br>\\n<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/14/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Controller\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"37085\",\n                        \"city\": \"Lascassas\",\n                        \"address1\": \"9085 Twelve Corners Road\",\n                        \"state\": \"TN\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19560,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Administrative\",\n                                \"id\": 1008991\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<h3><strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">In-home Personal Assistant â\\u0080\\u0093 Murfreesboro, TN â\\u0080\\u0093 Direct Hire</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Our staffing agency client is seeking a highly organized and proactive In-home Personal Assistant to support a busy executive&nbsp;in the Murfreesboro, TN area. This is a direct hire, full-time position offering hands-on support in personal, household, and administrative tasks for a dynamic and fast-paced environment.</span></span><br />\\n<br />\\n<strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Personal Assistant Job Profile:</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Our client is a rapidly growing organization in the digital marketing space. They focus on promoting high-quality products and services through engaging online platforms while maintaining a professional and supportive team culture. The ideal candidate will thrive in an environment that values creativity, reliability, and adaptability.</span></span><br />\\n<br />\\n<strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Personal Assistant&nbsp;Role:</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">As an In-home Personal Assistant, you will be responsible for managing daily operations and personal support tasks, ensuring all household and work-related activities run smoothly.<br />\\n<br />\\n<strong>Key responsibilities include:</strong></span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Maintain organization and cleanliness of home, office, and filming areas.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Handle laundry, wardrobe management, and household upkeep.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Plan, prepare, and coordinate meals and snacks according to dietary preferences.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Manage grocery lists, restocking, and errands.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Coordinate daily schedules, calendars, and briefings.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Assist with event preparation, content shoots, and travel logistics.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Support with mail, shipments, and product management when needed.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Provide flexible availability, including occasional evenings, weekends, and travel.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">This In-home Personal Assistant position requires strong multitasking, attention to detail, and excellent communication skills to balance personal and professional priorities efficiently.</span></span><br />\\n<br />\\n<strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Personal Assistant Background Profile:</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Minimum of 3 years of experience as a Personal Assistant or in a similar role.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">High school diploma or equivalent required.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Valid driverâ\\u0080\\u0099s license, clean driving record, and reliable transportation.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Ability to pass a fingerprint and comprehensive background check.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Strong skills in communication, organization, discretion, and adaptability.</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Must be tech-savvy, dependable, and capable of managing confidential information.</span></span><br />\\n<br />\\n<strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Features and Benefits:</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Two weeks of paid vacation after one year of employment</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">4 hours of paid personal time per month</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Paid federal holidays</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Annual performance-based bonus</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Health plan reimbursement</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Supportive and collaborative work environment</span></span><br />\\n<br />\\n<strong><span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Schedule:</span></span></strong><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Full-time, 8-hour shifts (9:00 a.m. â\\u0080\\u0093 5:30 p.m. CST)</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Monday through Friday</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Overtime and weekends as needed</span></span><br />\\n<span style=\\\"font-size:12.0pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Work Location: In-person (Murfreesboro, TN area)<br />\\nWillingness to Travel: Up to 25% (Preferred)</span></span><br />\\n&nbsp;</h3>\\n\\n<p>&nbsp;</p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/14/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Personal Assistant\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"70113\",\n                        \"city\": \"New Orleans\",\n                        \"address1\": \"701 Baronne St\",\n                        \"state\": \"LA\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19559,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>District Manager</strong><br>\\nOur client in New Orleans, LA, has an immediate opening for a District Manager on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nGrocery Retailer<br>\\nTeam Atmosphere and Environment<br>\\nPassion for Food and People<br>\\n<br>\\n<strong>District Manager:</strong><br>\\nThe District Manager oversees daily operations and strategic performance for 8â\\u0080\\u009310 grocery stores within a defined region. This role ensures consistent execution of company standards, financial goals, and customer satisfaction across all locations. The ideal candidate combines operational excellence with strong leadership and a customer-first mindset.<br>\\nOversee all store operations within the assigned district, including sales, merchandising, staffing, and compliance.<br>\\nDevelop and execute strategic plans to drive sales, profitability, and market share.<br>\\nLead, train, and motivate store managers to achieve operational and financial goals.<br>\\nConduct regular store visits to evaluate performance, identify opportunities, and ensure consistent brand standards.<br>\\nAnalyze financial reports and KPIs to monitor progress and take corrective action when needed.<br>\\nPartner with HR and training departments to recruit and develop high-performing store leaders.<br>\\nEnsure compliance with company policies, food safety regulations, and local laws.<br>\\nManage inventory control, shrink reduction, and cost management initiatives.<br>\\nSupport the rollout of company programs, seasonal promotions, and new store openings.<br>\\nFoster a culture of accountability, teamwork, and exceptional customer service.<br>\\n<br>\\n<strong>District Manager Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in business, management, or a related field preferred.<br>\\n5+ years of multi-unit management experience in grocery retail or a similar environment.<br>\\nProven success in achieving financial and operational goals.<br>\\nStrong leadership, communication, and analytical skills.<br>\\nAbility to interpret financial data and plan accordingly.<br>\\nProficiency in retail management systems and Microsoft Office Suite.<br>\\nWillingness to travel regularly within the district.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nComprehensive medical, vision, and dental coverage.<br>\\nGenerous paid time off.<br>\\nCollaborative and supportive team environment.<br>\\nRelocation assistance available.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/13/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"District Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77017\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"2622 Martinville Dr Bldg C\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19558,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Inside Sales and Service Coordinator</strong><br>\\nOur client located in Houston, TX is looking to hire an Inside Sales and Service Coordinator. This is a direct hire opportunity.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nFamily owned growing business<br>\\nIndustrial Service<br>\\n<br>\\n<strong>Inside Sales and Service Coordinator Role:</strong><br>\\nCoordinate multiple service trucks and technician schedules.<br>\\nManage quotes, orders, and follow-ups for tire or industrial service jobs.<br>\\nServe as primary contact for inbound customer calls and key accounts.<br>\\nTrack workflow, update systems, manage open orders, and support invoicing accuracy.<br>\\nUpsell services and products where appropriate to maximize revenue.<br>\\n<br>\\n<strong>Inside Sales and Service Coordinator Background Profile:</strong><br>\\n2+ years in dispatch, inside sales, service coordination, or tire/industrial shop roles.<br>\\nExperience within Tire industry is a huge plus.<br>\\nExperience quoting, scheduling, following up, and closing service orders.<br>\\nFamiliarity with CRMs or ERP systems (e.g., FieldServio, TreadTracker, or similar).<br>\\nAbility to handle multiple priorities in a fast-paced environment.<br>\\nIndustrial, tire, or forklift industry experience preferred.<br>\\nBilingual (English/Spanish) is a plus.<br>\\n<br>\\n<strong>Features and Benefits</strong><br>\\nPerformance-based bonus opportunities<br>\\nPaid time off (PTO) and company-observed holidays<br>\\nComprehensive medical, dental, and vision insurance<br>\\nClear opportunities for professional growth and career advancement\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/10/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Inside Sales and Service Coordinator\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"76011\",\n                        \"city\": \"Arlington\",\n                        \"address1\": \"690 E. Lamar Blvd.\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19557,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Information Technology\",\n                                \"id\": 1009043\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Hiring a <strong>Chief Technology Officer (CTO) </strong>in Dallas Fort Worth - Apply Now!<br>\\n<br>\\nJoin our clientÂ organization in Dallas Fort Worth as the Chief Technology Officer (CTO).Â Lead strategic technology initiatives, promote innovation, and collaborate with stakeholders to enhance organizational performance. Apply now for this exciting opportunity!<br>\\n<br>\\n<strong>Job Responsibilities:</strong><br>\\n<strong>Operational Leadership</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Lead the strategic design, acquisition, management, and implementation of an enterprise-wide technology infrastructure.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Oversee the Technology Department, including Information Systems, Operations, Project Management, and Web Services.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Promote innovative use of technology to enhance organizational performance, data analysis, and on-demand learning.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Direct daily operations of technology systems and ensure optimal productivity for all technology users.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Coordinate professional learning and training programs related to technology integration.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Organizational Climate & Collaboration</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Model leadership behaviors that promote organizational values and culture.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Engage colleagues in developing a shared vision and sense of commitment to goals and priorities.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Foster collaboration, collegiality, and high expectations across all departments.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Communicate effectively and manage professional relationships based on trust, respect, and results.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Continuous Improvement & Strategic Planning</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Maintain focus on improving user and stakeholder experiences through technology.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Provide leadership for innovation and ethical use of emerging technologies, including AI.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Analyze and synthesize data to inform insights, strategy, and decision-making.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Design and manage both short- and long-range technology plans aligned with organizational objectives.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Oversee information security, disaster recovery, and business continuity initiatives.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Direct and implement technical systems, network infrastructure, standards, and integration of technology across all departments.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Ensure effective communication and collaboration with stakeholders, vendors, and leadership teams.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Personnel Management</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Determine staffing needs, recruit, and select qualified personnel for technology roles.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Supervise and evaluate Technology Department staff performance.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Establish professional development programs to improve staff competencies and support the department mission.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Administrative, Fiscal, and Facilities Management</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Provide management oversight and coordination for all Technology Department functions.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Prepare reports and maintain accurate records in compliance with administrative regulations.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Assist in preparing and managing the annual technology budget, including monitoring expenditures.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Ensure fiscal control, compliance management, and risk evaluation for technology assets.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Oversee procurement, bid specifications, vendor evaluation, and contract management for technology systems.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Support technology needs related to construction and facility projects.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Community & Stakeholder Relations</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Communicate organizational technology goals, achievements, and directions to internal and external stakeholders.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Foster partnerships with business, community, and educational leaders to advance technology initiatives.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Promote a positive image of the organization through professional communication and engagement.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Professional Growth & Conduct</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Use feedback and performance data to enhance leadership effectiveness.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Maintain ethical conduct, professional judgment, and flexibility in performing assigned duties.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Demonstrate collaboration, accountability, and commitment to continuous improvement.</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Job Requirements:</strong><br>\\n<strong>Education & Certification</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Bachelorâ\\u0080\\u0099s Degree in Computer Science, Business Administration, Management Information Systems, Information Technology, or related fieldÂ </span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Masterâ\\u0080\\u0099s Degree</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Certified Education Technology Leader certificationÂ </span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Experience</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Minimum five (5) years leading a progressive technology organization (required)</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Minimum three (3) years in the design, implementation, and integration of enterprise technology systems (preferred)</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Leadership experience in a large-scale environment preferred</span></span></p>\\n\\n<p><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Knowledge & Skills</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Comprehensive understanding of data center technologies, data management, and enterprise application integration.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Broad knowledge of current and emerging technologies and their strategic application.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Strong program and project management skills with the ability to manage multiple initiatives.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Excellent interpersonal, organizational, and strategic thinking skills.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Demonstrated ability to deliver customer-focused service and manage service level agreements.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Experience developing and maintaining IT policies, procedures, standards, and guidelines.</span></span></p>\\n\\n<p><br>\\n<span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\"><strong>Benefits:</strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Competitive salary and comprehensive benefits package.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Opportunities for professional growth and leadership development.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Collaborative, innovation-focused work culture.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Support for certifications and continuing education.</span></span></p>\\n\\n<p style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;\\\"><span style=\\\"font-size: 12.0px;\\\"><span style=\\\"font-family: Arial , Helvetica , sans-serif;\\\">Paid time off, holidays, and retirement plan participation.</span></span></p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/09/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Chief Technology Officer\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main St Ste 3400\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19554,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Legal\",\n                                \"id\": 1009047\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Dallas Texas is seeking an experienced Legal Billing Specialist for a direct hire opportunity. This is an excellent chance to join a dynamic and growing legal team known for its commitment to accuracy, innovation, and client service excellence.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nOur client is a well-established firm in the legal services industry, recognized for its professional excellence and client-focused culture. With a strong reputation for integrity, innovation, and collaboration, this firm provides a supportive environment where team members are valued and encouraged to grow. They are known for embracing technology, maintaining a strong work-life balance, and delivering top-tier service to clients across various practice areas.<br>\\n<br>\\n<strong>Legal Billing Specialist Role:</strong><br>\\nAs a Legal Billing Specialist, youâ\\u0080\\u0099ll play a key role in managing the firmâ\\u0080\\u0099s billing operations and ensuring compliance with client guidelines. This Billing Specialist position requires strong attention to detail, organizational skills, and the ability to work collaboratively across departments.<br>\\nGenerate and distribute prebills, ensuring attorneys review and return edited versions promptly.<br>\\nApply retainers, write-offs, and discounts in accordance with firm policy.<br>\\nProcess accurate and timely client invoices while ensuring compliance with client billing requirements.<br>\\nManage third-party e-billing systems such as TyMetrix, LegalTracker, CounselGo, Passport, Onit, and CounselLink.<br>\\nCoordinate submission of e-bills and communicate with attorneys regarding short-pays, rejections, appeals, budgets, and accruals.<br>\\nExecute complex billing tasks, including multiple discounts, split-party billing, and e-billing.<br>\\nRespond to client requests for cost back-up documentation.<br>\\nInput and maintain accurate client and matter data in the billing system.<br>\\nMonitor compliance with client billing guidelines, including rates, task codes, and approval requirements.<br>\\nResearch and resolve billing inquiries both internally and externally.<br>\\nProvide billing forecasts, accruals, and ad hoc reports to clients and management.<br>\\nManage retainers, process checks, monitor banking activity, and post deposits to the time and billing system.<br>\\nReview A/R aging schedules and generate daily cash reports.<br>\\n<br>\\n<strong>Legal Billing Specialist Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Finance, Accounting, or related field (or equivalent experience).<br>\\n5+ years of experience in legal billing or law firm finance.<br>\\nStrong knowledge of legal billing and e-billing systems such as Elite 3E, T360, and CounselLink.<br>\\nExcellent organizational, analytical, and communication skills.<br>\\nAdvanced proficiency in Microsoft Excel.<br>\\nProven ability to manage multiple priorities and meet deadlines independently.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nCompetitive compensation and performance-based incentives.<br>\\nComprehensive benefits package including medical, dental, and vision insurance, as well as 401(k) participation.<br>\\nGenerous paid time off and firm holidays.<br>\\nCollaborative, team-oriented work environment.<br>\\nOpportunity to join a stable and reputable legal organization with a supportive culture and long-term growth potential.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"10/09/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Legal Billing Specialist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"On Hold\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75225\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"8200 Douglas Ave Ste 300\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19549,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Real Estate Controller</strong><br>\\nOur client located in Dallas, TX is looking for a Real Estate Controller to manage their accounting team. This is a onsite direct hire position.<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nCommercial Real Estate<br>\\n<br>\\n<strong>Real Estate Controller Role:</strong><br>\\nLead accounting and finance operations with direct visibility to senior leadership<br>\\nOversee general ledger, accounts payable/receivable, payroll, consolidations, and treasury functions<br>\\nPrepare GAAP financial statements across multiple entities (30â\\u0080\\u009340 per accountant)<br>\\nManage budgets, forecasts, cash flow, and project funding<br>\\nProvide financial insights to support project performance and strategic decision-making<br>\\nImplement and strengthen internal controls, policies, and processes<br>\\nPartner with banks, auditors, tax advisors, and other external stakeholders<br>\\nMentor, train, and develop accounting staff to build a high-performing team<br>\\nHands-on role with active involvement in day-to-day accounting, not just review-level work<br>\\nLead and support staff in a fast-paced environment managing a large portfolio of entities<br>\\n<br>\\n<strong>Real Estate Controller Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Accounting or Finance; CPA strongly preferred<br>\\n7+ years of progressive accounting and finance experience, including 3+ years in a leadership role<br>\\nProficiency with ERP/accounting systems; Sage Intacct experience required<br>\\nBackground in real estate, land development, construction, or multifamily required<br>\\nStrong knowledge of GAAP, consolidations, and joint venture/partnership reporting<br>\\nExperience managing budgets, forecasting, cash flow, and investor reporting<br>\\nProven track record of stability and loyalty in prior roles (typically 4+ years at previous companies)<br>\\nAP/expenses experience with modern systems such as RAMP or equivalent<br>\\nStrong, steady performers (â\\u0080\\u009cB+ playersâ\\u0080\\u009d) who thrive in high-volume, complex accounting environments<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nCompetitive Salary<br>\\nPerformance Bonuses<br>\\nVarious Health Benefit Plans and for your pets.<br>\\n401k with match<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/30/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Real Estate Controller\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"21212\",\n                        \"city\": \"Baltimore\",\n                        \"address1\": \"6213 N Charles St\",\n                        \"state\": \"MD\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19547,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Executive Chef</strong><br>\\nOur client in Baltimore, MD, has an immediate opening for an Executive Chef on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSpecialty Grocery Retailer<br>\\nTeam Atmosphere and Environment<br>\\nPassion for Food and People<br>\\n<br>\\n<strong>Executive Chef:</strong><br>\\nThe Executive Chef will lead our culinary operations, overseeing the production of high-volume prepared foods, catering orders, and grab-and-go offerings. This role is responsible for ensuring excellence in food quality, safety, and presentation, while maintaining efficient and cost-effective kitchen operations. The Executive Chef will also guide, train, and inspire the kitchen team, fostering a culture of professionalism, creativity, and accountability.<br>\\nOversee preparation and service of all menu items, ensuring adherence to recipes, food safety standards, portion control, and consistent quality.<br>\\nMaintain a clean, organized, and sanitary kitchen that complies with company policies, health codes, and industry safety standards.<br>\\nManage food and labor costs through effective scheduling, training, and operational oversight to achieve budget goals.<br>\\nLead recipe development, menu planning, sourcing, costing, and seasonal/holiday offerings while keeping a pulse on food trends.<br>\\nDirect daily kitchen operations, including opening and closing, storage management, and workflow organization.<br>\\nMonitor inventory levels; oversee ordering, receiving, and proper storage of food and supplies.<br>\\nEnsure all food items are presented attractively, with visual appeal and freshness.<br>\\nRecruit, supervise, train, and evaluate kitchen staff while promoting a positive, professional work environment.<br>\\nPartner with department managers, vendors, and staff to proactively address production or service issues.<br>\\nDevelop and implement training programs to build staff expertise and uphold culinary standards.<br>\\nEnforce safety policies, ensuring staff consistently use appropriate protective equipment.<br>\\nConduct routine sanitation audits and implement corrective actions when needed.<br>\\nParticipate in industry trade shows and vendor meetings to identify products aligned with customer preferences.<br>\\nManage the Sous Chef, Cooks, and Kitchen Staff<br>\\n<br>\\n<strong>Executive Chef Background Profile:</strong><br>\\nMinimum 5 years of experience as an Executive Chef or in a senior kitchen leadership role.<br>\\nCulinary Arts degree or equivalent culinary certification preferred.<br>\\nStrong knowledge of culinary arts, including modern trends and global influences.<br>\\nExpertise in food preparation, recipe design, and high-volume food service.<br>\\nProven leadership skills with the ability to delegate effectively, motivate staff, and foster teamwork.<br>\\nStrong understanding of kitchen equipment, safety, and health regulations (HACCP/ServSafe).<br>\\nDemonstrated ability to manage budgets, control costs, and maintain operational efficiency.<br>\\nExcellent time management, organizational, and problem-solving skills; thrives under pressure.<br>\\nOutstanding interpersonal and communication skills with a polished, professional demeanor.<br>\\nProficiency with Microsoft Office Suite for scheduling, inventory, and recipe recordkeeping.<br>\\nServSafe Certification is highly preferred.<br>\\nAbility to work flexible shifts, including evenings, weekends, and holidays.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Dental, Life Insurance, AD&D, FSA, and more.<br>\\nGenerous paid time off and employee discount programs<br>\\nCollaborative and supportive team environment.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/29/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Executive Chef\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75234\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"1603 Lyndon B Johnson Fwy Ste 800\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19546,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Finance/Financial Services\",\n                                \"id\": 1404224\n                            },\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Real Estate Corporate Risk Manager</strong><br>\\nOur client located in Dallas, TX is in need of a Real Estate Corporate Risk Manager. This is a direct hire in office opportunity. Must have Real Estate industry experience to qualify. Must live in DFW.<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nCommercial Real Estate<br>\\n<br>\\n<strong>Real Estate Corporate Risk Manager Role:</strong><br>\\nLead the development, implementation, and oversight of the corporate insurance program with a focus on real estate industry risks.<br>\\nManage the full insurance lifecycle, including renewals, claims, coverage benchmarking, and policy oversight.<br>\\nBuild and maintain relationships with brokers and carriers, leading negotiations and strategic discussions.<br>\\nConduct contract reviews to ensure insurance provisions meet standards and support risk transfer strategies.<br>\\nEducate business units on policies, exposures, and best practices to reduce long-term risk.<br>\\nMonitor industry and economic trends to proactively adjust insurance structures and mitigate risks.<br>\\nPrepare and present reports on claims, coverage, and risk trends to executives and boards.<br>\\nIdentify and implement process improvements across risk management operations.<br>\\n<br>\\n<strong>Real Estate Corporate Risk Manager Background Profile:</strong><br>\\nMust have a bachelorâ\\u0080\\u0099s degree in business administration, finance, or related field (or equivalent experience).<br>\\nMust have a minimum of 10+ years of experience in risk management, insurance brokerage, underwriting, coverage, or consulting. Experience in the Real Estate industry is required.<br>\\nMust have proven expertise managing corporate insurance programs, including executive risk, property/casualty, and crime coverage.<br>\\nMust have strong analytical skills to assess risks, track trends, and recommend improvements.<br>\\nMust have experience collaborating with brokers, carriers, and internal stakeholders on complex insurance matters.<br>\\nMust have excellent organizational, communication, and presentation skills.<br>\\nPreferred: certifications such as Associate in Risk Management (ARM) or Management Liability Insurance Specialist (MLIS).<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nBonus Eligible<br>\\n3 Weeks PTO<br>\\nMedical, Dental, and Vision Insurance<br>\\nBasic Life and ADD Insurance<br>\\nVoluntary Life and ADD Insurance<br>\\nLong Term Disability Insurance<br>\\nDiscount Card Benefits Program<br>\\nFlexible Spending Accounts<br>\\nMedical and Dependent Care<br>\\n401(k) Plan\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/26/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Real Estate Corporate Risk Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"On Hold\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77002\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"815 Walker Street Suite 1145\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19545,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Administrative\",\n                                \"id\": 1008991\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Executive Assistant</strong><br>\\nJoin a high-performing as the Executive Assistant becoming the trusted right hand to the CEO and an anchor to office operations. This is a full-time, direct hire, hybrid role based in Houston, TX with a meaningful opportunity to support executive leadership and contribute to operational excellence.<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nValues-based consulting firm specializing in professional development, leadership strategy, and organizational excellence<br>\\nHigh-impact services to top-tier law, finance, and private equity firms across the nation.<br>\\n<br>\\n<strong>Executive Assistant Role</strong><br>\\nAs the Executive Assistant, you will directly support the CEO and act as a central administrative resource across the team.<br>\\nThis highly visible role requires exceptional organizational skills, discretion, and proactive problem-solving to manage executive scheduling, meeting preparation, logistics, and internal operations.<br>\\nManage complex executive calendars, appointments, and meeting logistics<br>\\nPrepare the CEO for meetings and events by compiling reports, documents, and key insights<br>\\nTrack CEOs priorities and ensure timely execution of follow-up tasks<br>\\nCoordinate domestic travel for the CEO and support team travel needs as required<br>\\nMaintain and update CRM systems, contact databases, and document archives<br>\\nTake detailed notes, transcribe meeting summaries, and manage task assignments<br>\\nSupport client-facing events and assist with presentation materials<br>\\nManage general office operations including vendor liaison, supply orders, and equipment tracking<br>\\nOversee team expense reports and facilitate standard operating procedures for efficiency<br>\\nCreate and edit reports, internal documents, and PowerPoint presentations<br>\\nAssist with civic, leadership, and professional commitments on behalf of the CEO<br>\\nTake initiative on special projects and ad hoc tasks in a dynamic environment<br>\\n<br>\\n<strong>Executive Assistant Background Profile:</strong><br>\\nBachelor degree required<br>\\nMinimum of 5 years experience supporting C-suite executives in a fast-paced, high-expectation environment<br>\\nProficient in Microsoft Office Suite (Outlook, Word, Excel, PowerPoint); will be tested<br>\\nKnowledge of LinkedIn, QuickBooks, and HubSpot is a plus<br>\\nHighly organized with strong attention to detail, time management, and multitasking abilities<br>\\nStrong written and verbal communication skills; must pass grammar and communication assessment<br>\\nDiscreet and professional, with a high degree of integrity and confidentiality<br>\\nTech-savvy with a willingness to learn new tools and systems<br>\\nPositive, team-oriented attitude with strong interpersonal and relationship-building skills<br>\\nComfortable in a small office environment with hybrid flexibility<br>\\nMust be authorized to work in the U.S. and pass a background check<br>\\n<br>\\n<strong>Features and Benefits of Client</strong><br>\\nCompetitive salary with annual bonus potential<br>\\n20 days of PTO annually (vacation and sick leave)<br>\\nSimple IRA retirement plan with 2% company match<br>\\nMonthly healthcare stipend<br>\\nHybrid work schedule with in-office presence in central Houston<br>\\nCollaborative team environment that values transparency, growth, and trust<br>\\nHigh-touch role with direct access to executive leadership and the ability to make a real impact<br>\\n<br>\\nEqual Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\n<em>Disclaimer: Sensitive and personal data will not be requested until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.</em>\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/25/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Executive Assistant\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"20024\",\n                        \"city\": \"Washington\",\n                        \"address1\": \"400 4th St SW, Washington, DC 20024\",\n                        \"state\": \"DC\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19544,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Human Resources Associate</strong><br>\\nOur client located in Washington D.C. needs an Human Resources Associate. This position is an immediate need and a direct hire opportunity.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nWell-known Christian organization<br>\\n<br>\\n<strong>Human Resources Associate Role:</strong><br>\\nManage the full recruitment lifecycle for assigned positions with minimal supervision, including sourcing, interviewing, and hiring qualified candidates.<br>\\nPartner with hiring managers to understand role requirements, skills, and competencies needed for open positions.<br>\\nDraft and update job descriptions in collaboration with HR leadership.<br>\\nOversee and coordinate background checks and employment eligibility verifications.<br>\\nConduct new hire orientations and ensure a smooth onboarding process.<br>\\nSupport and execute employee recognition programs.<br>\\nRemain knowledgeable about DC Paid Family Leave, FMLA, and other Leave of Absence (LOA) regulations; assist employees with related processes.<br>\\nManage employee-facing communication platforms, including digital boards.<br>\\nRespond to employment-related inquiries from applicants, employees, and supervisors; escalate complex or sensitive matters to the HR Director as needed.<br>\\nStay current with federal, state, and local employment laws and regulations; recommend policy and practice updates to ensure compliance.<br>\\nProvide guidance and documentation to employees on policies and guidelines.<br>\\nTrack HR metrics, prepare reports, and recommend process improvements.<br>\\nMaintain awareness of HR best practices, emerging trends, and new technologies to enhance HR operations.<br>\\nChampion the mission by fostering a culture that encourages engagement.<br>\\nPerform other duties as assigned.<br>\\n<br>\\n<strong>Human Resources Associate Background Profile:</strong><br>\\nDegree in Human Resources, Business Administration, or related field required.<br>\\nMinimum of 1 year of recruitment and/or HR generalist experience.<br>\\nStrong alignment with the mission and values of a Christian organization<br>\\nStrong knowledge of employment-related laws and regulations.<br>\\nPHR or other HR certification preferred.<br>\\nProficiency with Applicant Tracking Systems (ATS); ability to quickly learn HRIS and talent management systems.<br>\\nStrong professionalism, discretion, and ability to handle confidential information.<br>\\nExcellent organizational skills, attention to detail, and ability to manage multiple priorities.<br>\\nStrong interpersonal and communication skills (written and verbal).<br>\\nDemonstrated ability to remain composed and adaptable in a fast-paced environment.<br>\\nProficiency in Microsoft Office Suite or similar software.<br>\\nEnergetic, positive, and team-oriented disposition.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nPaid time off (PTO)<br>\\nSix paid holidays<br>\\nFour floating holidays of the employeeâ\\u0080\\u0099s choice<br>\\n401k retirement plan<br>\\nHealth, dental, and vision insurance<br>\\nEmployer-paid short-term disability, long-term disability, and life insurance\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/25/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Human Resource Associate\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"80246\",\n                        \"city\": \"Glendale\",\n                        \"address1\": \"425 S. Cherry Street, Ste 700\",\n                        \"state\": \"CO\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19542,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client is seeking a dedicated Registered Dental Hygienist to join their growing dental practice in Glendale, CO. This is a direct hire opportunity offering stability, professional growth, and a supportive team environment.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nOur client is a well-established healthcare organization specializing in comprehensive dental care. With years of experience serving patients in the community, they are recognized for delivering compassionate care, maintaining a patient-first culture, and following the highest clinical standards. Their modern facilities and focus on continuing education ensure both patients and staff receive the best possible experience.<br>\\n<br>\\n<strong>Registered Dental Hygienist Role:</strong><br>\\nAs a Registered Dental Hygienist, youâ\\u0080\\u0099ll play a key role in supporting patients and providing exceptional clinical care. You will work directly with dentists to deliver a positive patient experience while ensuring treatment aligns with the highest standards of care.<br>\\nReviewing patient charts and understanding health history prior to treatment<br>\\nGreeting and engaging patients, explaining treatment, and answering questions<br>\\nProviding clinical care, including five screenings, gathering records, and educating patients on oral health conditions and treatment plans<br>\\nScheduling recall and restorative appointments<br>\\nDocumenting patient updates and ensuring accurate records<br>\\nMaintaining infection control protocols, operatory cleanliness, and instrument sterilization<br>\\nExpanding clinical skills through ongoing training and continuing education<br>\\n<br>\\n<strong>Registered Dental Hygienist Background Profile:</strong><br>\\nCurrent Registered Dental Hygienist (RDH) license<br>\\nLaser Certification<br>\\nLocal Anesthetic Certification<br>\\nExperience with Carestack and SOTA Cloud preferred<br>\\nStrong interpersonal and communication skills<br>\\nDetail-oriented and able to multitask in a fast-paced clinical environment<br>\\nExperience with dental practice management software is a plus<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nCompetitive hourly compensation<br>\\nComprehensive benefits package (medical, dental, vision, PTO, retirement plan)<br>\\nOpportunities for professional development and continuing education<br>\\nA collaborative, patient-focused culture that values teamwork<br>\\nModern facilities with advanced technology<br>\\nSupportive leadership and growth opportunities within the practice\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/25/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Registered Dental Hygienist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"76541\",\n                        \"city\": \"Killeen\",\n                        \"address1\": \"412 N Gray St\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19540,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Our client in Kileen, Texas eeking a dynamic Human Resources Manager. This is a direct hire role offering the chance to make a significant impact within a government contracting environment.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nHighly respected government contractor that has been supporting clients across the U.S. and abroad for over 20 years.<br>\\n<br>\\n<strong>Human Resources Manager Role:</strong><br>\\nAs the Human Resources Manager, you will lead HR strategy, labor relations, and compliance for a growing team of professionals. This role requires hands-on leadership in labor relations, collective bargaining, employee engagement, talent acquisition, and compliance with federal employment law.<br>\\nServing as the primary point of contact for labor relations, grievance administration, and collective bargaining agreements.<br>\\nPartnering with leadership to drive HR and talent strategies around recruitment, retention, and succession planning.<br>\\nLeading HR operations, including compensation, benefits, training, compliance, and employee relations.<br>\\nSupporting talent acquisition and workforce planning for managerial, exempt, and professional roles.<br>\\nEnsuring compliance with SCA, FLSA, FMLA, ADA, EEO, and other federal labor law requirements.<br>\\nOverseeing onboarding, compliance training, and security clearance processes to support federal contracts.<br>\\nParticipating in audits, investigations, and external reviews to maintain labor law compliance.<br>\\nCoaching, developing, and mentoring HR staff.<br>\\n<br>\\n<strong>Human Resources Manager Background Profile:</strong><br>\\n5+ years of HR experience in a government contracting environment with at least 3 years in labor relations and union environments<br>\\nStrong knowledge of the Service Contract Act, Collective Bargaining Agreements, and federal labor law compliance<br>\\nProven experience in labor negotiations, grievance administration, and dispute resolution<br>\\nBachelorâ\\u0080\\u0099s degree in Human Resources or related field required<br>\\nPHR, SHRM-CP, SPHR, or SHRM-SCP certification required<br>\\nProficiency with HRIS systems and Microsoft Office Suite<br>\\nStrong communication, negotiation, and organizational skills<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\n401k<br>\\nDental insurance<br>\\nEmployee assistance program<br>\\nHealth insurance<br>\\nLife insurance<br>\\nPaid time off<br>\\nProfessional development assistance<br>\\nReferral program<br>\\nVision insurance\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/24/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Human Resources Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main St.\",\n                        \"state\": \"TX\",\n                        \"address2\": \"4940\"\n                    },\n                    \"id\": 19539,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Property Accountant</strong><br>\\nOur Dallas-based real estate client is looking for a Property Accountant to add to their team on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nGrowth Centric working environment<br>\\nThe firm owns and operates student housing communities located in the country&apos;s top university markets.<br>\\n<br>\\n<strong>Property Accountant Role:</strong><br>\\nSupport the Vice President with execution of property-level financials for student housing assets<br>\\nPrepare timely and accurate financial statements<br>\\nPerform full-cycle accounting<br>\\nAccounts payable processing<br>\\nJournal entries<br>\\nMonthly accruals and amortizations<br>\\nBalance sheet reconciliations<br>\\nManage accounting for multiple student housing properties<br>\\nAssist with preparation of annual budgets<br>\\nReview monthly charges, Gross Potential Rent reports, and other AR balances<br>\\nCalculate and process monthly property management fees<br>\\nPrepare month-end reporting packages and analyze budget-to-actual variances<br>\\nPrepare annual work papers and reconciliations for year-end tax returns and audits<br>\\nSupport cash flow analyses and address property manager inquiries<br>\\n<br>\\n<strong>Property Accountant Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Accounting<br>\\n1â\\u0080\\u00935 years of real estate property-level, accrual-basis accounting experience<br>\\nStudent housing or multifamily property accounting experience preferred<br>\\nProficiency in Microsoft Excel<br>\\nExperience with Entrata, MRI, and/or Yardi software preferred<br>\\nStrong technical aptitude with analytical and problem-solving skills<br>\\nDetail-oriented, coachable, enthusiastic, flexible, and creative<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nUnlimited PTO<br>\\nCompetitive benefits package<br>\\nRelaxed culture/environment<br>\\nEntrepreneurial working environment\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/24/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Property Accountant\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"70005\",\n                        \"city\": \"Metairie\",\n                        \"address1\": \"1525 Metairie Rd\",\n                        \"state\": \"LA\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19530,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Administrative\",\n                                \"id\": 1008991\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Senior Administrative Assistant</strong><br />\\nOur client located in Metairie, Louisiana is in need of a Senior Administrative Assistant. This is a direct hire opportunity.<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nFamily owned<br />\\nLuxury Retail Operation<br />\\n<br />\\n<strong>Senior Administrative Assistant Role:</strong><br />\\nSenior Administrative Assistant will support and manage a team of five administrative assistants with high volume daily operations. Will also provide IT support to entire staff.<br />\\nManage a team of five responsible for shipping/receiving, special orders, company sales, returns, and more.<br />\\nBe the companyâ\\u0080\\u0099s go to for low level IT support with iPhone and iPad connection to company email boxes, employee computer and printer set up, company software updates, and Office 365.<br />\\nContact 3rd party IT support for high level issues.<br />\\nReport generation daily, weekly, monthly, and quarterly.<br />\\nGeneral Administrative &amp; Audit work supporting our organization.<br />\\nProvide sales team and various departments, day to day support.<br />\\nPrimarily an internal position, but some customer interaction via phone/email.<br />\\n<br />\\n<strong>Senior Administrative Assistant Background Profile:</strong><br />\\nThree years work experience of general administrative support<br />\\nPrior senior administrative leadership experience required along with office management or operations<br />\\nMust have experience supporting teams with basic IT Day to day issues: iPhone, iPad, computer and printer set up, and Office 365<br />\\nAbility to work Tuesday through Saturday<br />\\nExperience working in high end luxury retail or similar is a plus<br />\\nGood knowledge of Microsoft office and working knowledge of basic systems, software.<br />\\nExcellent communication skills â\\u0080\\u0093 verbal and written<br />\\nOrganized and efficient with great attention to detail, positive support work style<br />\\nAdministrative experience &amp; ability to learn and develop new systems<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\nDiscretionary Bonus<br />\\n100% Employee covered Health Insurance<br />\\n401(k) Plan with generous match\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/15/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Cassidy\",\n                        \"lastName\": \"Jacobs\",\n                        \"id\": 1218000\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Senior Administrative Assistant\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"62864\",\n                        \"city\": \"Mt Vernon\",\n                        \"address1\": \"3401 Broadway St\",\n                        \"state\": \"IL\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19522,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Pharmacy\",\n                                \"id\": 1009033\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"We are seeking an experienced and dedicated Pharmacist in Charge to lead daily retail pharmacy operations in Mt Vernon Illinois.Â <br>\\n<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nWell-established, family-owned community pharmacy with a long-standing reputation for providing exceptional patient care and personalized service.<br>\\n<br>\\n<strong>Pharmacist in Charge Role:</strong><br>\\nThe Pharmacist-in-Charge will oversee a supportive team while ensuring smooth operations, regulatory compliance, and a patient focused approach<br>\\nOversee all aspects of pharmacy operations to ensure compliance with state and federal regulations<br>\\nProvide excellent patient care, including prescription verification, counseling, and medication therapy management<br>\\nSupervise, train, and mentor a team<br>\\nManage and optimize workflow using PioneerRx pharmacy software<br>\\nOversee compliance packaging operations using Dispill to ensure accuracy and timeliness<br>\\nCoordinate and oversee weekday deliveries to patients and facilities, ensuring safe and efficient service<br>\\nMaintain accurate records of prescriptions, controlled substances, and inventory<br>\\nDevelop and implement policies and procedures to ensure operational efficiency and regulatory compliance<br>\\nBuild strong relationships with patients, healthcare providers, and the local community<br>\\nEnsure quality assurance and compliance standards are consistently met<br>\\n<br>\\n<strong>Pharmacist in Charge Background Profile:</strong><br>\\nDoctor of Pharmacy (PharmD) degree from an accredited program<br>\\nActive pharmacist license in good standing<br>\\nMinimum of 5 years of retail pharmacy experience<br>\\nProven experience in a leadership or management capacity preferred<br>\\nStrong knowledge of pharmacy laws, regulations, and compliance standards<br>\\nExcellent communication, organizational, and problem-solving skills<br>\\nFamiliarity with PioneerRx pharmacy management software is a plus<br>\\nExperience with compliance packaging (Dispill) is preferred<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nMedical<br>\\n401k<br>\\nPTOÂ <br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/08/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Pharmacist in Charge\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street, Suite 4650\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19518,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 1005852\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Lead Capital Formation for America&apos;s Hottest Real Estate Market</span></strong></span></span><br>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Spearhead fundraising for a high-growth land investment platform targeting the explosive Texas market expansion. Join us in capitalizing on unprecedented demographic shifts across Dallas-Fort Worth, Houston, Austin, and San Antonio.</span></span></span><br>\\n<br>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Position Overview: </span></strong><span style=\\\"font-size: 11.0pt;\\\">Â We&apos;re seeking a results-driven <strong>Director of Capital Markets</strong> to lead fundraising efforts across institutional, family office, and high-net-worth channels. You&apos;ll shape our capital strategy and drive growth for current and future fund offerings.</span></span></span><br>\\n<br>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Key Responsibilities</span></strong></span></span>\\n<ul>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Capital Raising & Investor Relations</span></strong> </span></span>\\n\\t<ul style=\\\"list-style-type: circle;\\\">\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Lead all fundraising efforts for our TexasÂ land fund</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Build relationships with institutional investors, family offices, and HNW individuals</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Execute fundraising roadmaps and deliver compelling investor presentations</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Host investor updates, webinars, and events to maintain engagement</span></span></span>\\n\\t</ul>\\n\\t\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Strategic Leadership</span></strong> </span></span>\\n\\t<ul style=\\\"list-style-type: circle;\\\">\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Identify new capital channels domestically and internationally</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Collaborate on fund structure, terms, and capital strategy</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Monitor market trends to inform positioning and communication</span></span></span>\\n\\t</ul>\\n\\t\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Marketing & Team Building</span></strong> </span></span>\\n\\t<ul style=\\\"list-style-type: circle;\\\">\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Oversee pitch decks, PPMs, and marketing materials</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Ensure regulatory compliance (SEC, FINRA)</span></span></span>\\n\\t\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Build and manage capital markets team as fund scales</span></span></span>\\n\\t</ul>\\n\\t\\n</ul>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">Qualifications</span></strong></span></span>\\n\\n<ul>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">5+ years in capital raising, investment banking, private equity, or real estate fundraising</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Proven track record raising capital from institutional and HNW investors</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Deep knowledge of real estate PE, land development, or infrastructure investment</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Strong U.S. investor network, particularly Texas/Southwest</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Exceptional communication and presentation skills</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Bachelor&apos;s degree required; MBA/CFA preferred</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">FINRA licenses a plus</span></span></span>\\n</ul>\\n<br>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong><span style=\\\"font-size: 11.0pt;\\\">What We Offer</span></strong></span></span>\\n\\n<ul>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Competitive base + performance bonus tied to fundraising success</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Equity participation/carried interest potential</span></span></span>\\n\\t<li style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">Full benefits package + flexible work environment</span></span></span>\\n</ul>\\n<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/04/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Director of Capital Markets\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"37643\",\n                        \"city\": \"Elizabethton\",\n                        \"address1\": \"208 Parkway Blvd\",\n                        \"state\": \"TN\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19517,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<h1>Dentist Position - Elizabethton, TN</h1>\\n\\n<h2>About the Opportunity</h2>\\n\\n<p>Our established dental practice is looking for a dedicated General Dentist to provide comprehensive oral healthcare services to our community. This full-time position offers the chance to build meaningful patient relationships while practicing in a modern, well-equipped facility with a focus on quality care and professional development.</p>\\n\\n<h2>Primary Duties</h2>\\n\\n<ul>\\n\\t<li>Diagnose and treat various dental conditions through clinical examinations and diagnostic imaging\\n\\t<li>Perform routine and complex dental procedures including preventive care, restorations, and minor surgical interventions\\n\\t<li>Develop comprehensive treatment plans tailored to individual patient needs and preferences\\n\\t<li>Maintain detailed patient records using current practice management systems\\n\\t<li>Ensure compliance with all safety protocols and sterilization standards\\n\\t<li>Provide patient education regarding oral health maintenance and disease prevention\\n\\t<li>Collaborate effectively with dental team members to optimize patient outcomes\\n\\t<li>Participate in continuing education to enhance clinical skills and knowledge\\n</ul>\\n\\n<h2>Essential Requirements</h2>\\n\\n<ul>\\n\\t<li>DDS or DMD from an accredited dental program\\n\\t<li>Valid state licensure with ability to practice general dentistry\\n\\t<li>Proven experience in clinical dentistry with strong procedural competencies\\n\\t<li>Proficiency in restorative dentistry, periodontal therapy, and basic oral surgery\\n\\t<li>Outstanding communication abilities and patient management skills\\n\\t<li>Detail-oriented approach with commitment to quality care standards\\n</ul>\\n\\n<h2>Position Benefits</h2>\\n\\n<p>This role offers competitive compensation, comprehensive benefits, and opportunities for professional advancement. Join a practice that values work-life balance, invests in the latest dental technology, and maintains a positive workplace culture focused on team collaboration and patient satisfaction.</p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"09/04/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Associate Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"85018\",\n                        \"city\": \"Phoenix\",\n                        \"address1\": \"5050  N 40th St Suite 300\",\n                        \"state\": \"AZ\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19501,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Top real estate company in Phoenix, AZ is seeking an Assistant Controller to oversee day-to-day accounting activities and support continued growth and process improvements across the organization. This individual will take ownership of accounting operations and partner cross-functionally to streamline workflows and support long-term business objectives. The ideal candidate has a strong accounting foundation and is open to learning and supporting insurance and risk functions over time.<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nReal Estate Industry<br />\\nEstablished and Tenured Team<br />\\nCollaborative, Team-Oriented Environment<br />\\n<br />\\n<strong>Assistant Controller Role:</strong><br />\\nOversee daily general ledger activity and maintain accurate financial records<br />\\nPrepare and post journal entries, accruals, and adjustments<br />\\nReconcile bank accounts, balance sheet accounts, and intercompany transactions<br />\\nPrepare monthly, quarterly, and annual financial statements and supporting schedules<br />\\nCoordinate month-end and year-end close processes<br />\\nPerform variance analyses and deliver reporting to senior leadership<br />\\nMonitor cash flow and prepare weekly cash reports<br />\\nSupport AP/AR activities and ensure timely payment processing and collections<br />\\nLead ad-hoc and time-sensitive reporting and analysis for executives<br />\\nRecommend and implement process improvements with an emphasis on automation and scalability<br />\\nPartner with cross-functional teams to document and improve accounting procedures<br />\\nSupport basic insurance and risk management functions (training provided), including coordination with brokers and maintaining data for company programs<br />\\n<br />\\n<strong>Assistant Controller Background Profile:</strong><br />\\nBachelorâ\\u0080\\u0099s degree in Accounting, Finance, or related field<br />\\nMinimum of 5 years of progressive accounting experience (real estate or property management experience is a plus)<br />\\nStrong understanding of GAAP and full-cycle accounting operations<br />\\nAdvanced proficiency in Excel; experience with accounting systems (Yardi a plus)<br />\\nExcellent analytical, organizational, and communication skills<br />\\nAbility to manage multiple priorities in a fast-paced, entrepreneurial environment<br />\\nInterest in learning insurance and risk functions to support company initiatives<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\nMedical<br />\\nDental<br />\\nVision<br />\\nPTO\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/19/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Jessica\",\n                        \"lastName\": \"Payne\",\n                        \"id\": 804127\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Assistant Controller \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"21212\",\n                        \"city\": \"Baltimore\",\n                        \"address1\": \"6213 N Charles St\",\n                        \"state\": \"MD\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19500,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Director of Operations</strong><br>\\nOur client in Baltimore, MD, has an immediate opening for a Director of Operations on a direct-hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSpecialty Grocery Retailer<br>\\nTeam Atmosphere and Environment<br>\\nPassion for Food and People<br>\\n<br>\\n<strong>Director of Operations:</strong><br>\\nOur client is seeking a dynamic Director of Operations to drive growth and operational excellence across their premium specialty food retail locations in the Baltimore metropolitan area. This executive role requires a visionary leader who can elevate their brand while fostering a culture of exceptional customer experience and sustainable profitability.<br>\\nCollaborate closely with executive leadership to develop and execute comprehensive growth strategies<br>\\nDrive revenue optimization through innovative merchandising approaches and market expansion initiatives<br>\\nLead annual planning processes, including forecasting, budgeting, and resource allocation<br>\\nChampion continuous improvement methodologies to enhance operational efficiency and customer satisfaction<br>\\nDirect and mentor location managers while overseeing performance across all departmental leadership roles<br>\\nBuild high-performing teams through strategic recruitment, professional development, and succession planning<br>\\nCreate an inclusive workplace culture that promotes growth, accountability, and exceptional service standards<br>\\nFacilitate cross-functional collaboration to achieve organizational objectives<br>\\nEstablish and monitor key performance indicators across quality, cost management, inventory control, and safety protocols<br>\\nImplement scalable systems and processes that support current operations and future expansion<br>\\nLead initiatives to minimize waste, optimize inventory turnover, and maximize profitability<br>\\nEnsure compliance with all regulatory requirements and company policies<br>\\nDevelop and execute strategies to consistently exceed customer expectations<br>\\nAnalyze market trends and competitive landscape to identify opportunities for differentiation<br>\\nOversee product selection, pricing strategies, and promotional campaigns<br>\\nChampion brand standards and ensure consistent execution across all touchpoints<br>\\n<br>\\n<strong>Director of Operations Background Profile:</strong><br>\\n10-15 years of progressive leadership experience in multi-location retail operations, preferably within premium or specialty markets<br>\\nDemonstrated success in financial management, including P&L responsibility and budget oversight<br>\\nProven track record of driving sales growth and operational improvements in customer-focused environments<br>\\nAdvanced financial acumen with expertise in business analysis, forecasting, and performance metrics<br>\\nExceptional communication and interpersonal skills with the ability to influence at all organizational levels<br>\\nStrong analytical and problem-solving capabilities with experience in process optimization<br>\\nDemonstrated ability to lead change initiatives and manage complex projects<br>\\nProven success in developing talent and building engaged, high-performing teams<br>\\nResults-driven leader with unwavering commitment to customer satisfaction<br>\\nAdaptable professional who thrives in fast-paced, dynamic environments<br>\\nCollaborative approach with the ability to work effectively across diverse teams<br>\\nStrong business judgment with the capacity to make sound decisions under pressure<br>\\nTechnology proficient, including advanced knowledge of Microsoft Office Suite<br>\\nOccasional weekend availability required<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nComprehensive medical, vision, and dental coverage.<br>\\nGenerous paid time off and employee discount programs<br>\\nCollaborative and supportive team environment.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/18/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Director of Operations\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79932\",\n                        \"city\": \"El Paso\",\n                        \"address1\": \"6351 S Desert Blvd #210\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19499,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Dentist â\\u0080\\u0093 $25K Sign-On + $5K Relocation | Partnership Track</strong><br>\\n<strong>Location:</strong> El Paso, TX (Additional openings in Midland, TX)<br>\\n<strong>Employer:</strong> Frontline Source Group â\\u0080\\u0093 Premier Dental Staffing</p>\\n\\n<p>Join a thriving, patient-focused practice thatâ\\u0080\\u0099s transforming dental care in West Texas! Whether youâ\\u0080\\u0099re a passionate new graduate ready to launch your career or an experienced dentist seeking growth and partnership potential, this is your opportunity to work with a highly successful team in a state-of-the-art environment.</p>\\n\\n<hr>\\n<h3><strong>Why This Opportunity Stands Out</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p><strong>$25K Sign-On Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$5K Relocation Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$2K CE Bonus</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>$1K Daily Guarantee</strong></p>\\n\\t\\n\\t<li>\\n\\t<p><strong>Aggressive Pay + Future Partnership Track</strong></p>\\n\\t\\n\\t<li>\\n\\t<p>Growing, established practice with advanced technology and strong patient demand</p>\\n\\t\\n</ul>\\n\\n<hr>\\n<h3><strong>What Youâ\\u0080\\u0099ll Do</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Diagnose, treat, and manage dental conditions with compassion and precision</p>\\n\\t\\n\\t<li>\\n\\t<p>Perform procedures including extractions, root canals, cavity fillings, and bite/alignment corrections</p>\\n\\t\\n\\t<li>\\n\\t<p>Provide preventive care, cleanings, and patient education for long-term oral health</p>\\n\\t\\n\\t<li>\\n\\t<p>Administer anesthesia or sedatives when necessary</p>\\n\\t\\n\\t<li>\\n\\t<p>Prescribe medications for pain management and infection control</p>\\n\\t\\n\\t<li>\\n\\t<p>Order, analyze, and interpret x-rays and other diagnostic tests</p>\\n\\t\\n\\t<li>\\n\\t<p>Maintain detailed patient records and collaborate with a supportive, skilled team</p>\\n\\t\\n</ul>\\n\\n<hr>\\n<h3><strong>What You Bring</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p><strong>DDS or DMD</strong> from an accredited program</p>\\n\\t\\n\\t<li>\\n\\t<p>Valid <strong>state dental license</strong> and malpractice insurance</p>\\n\\t\\n\\t<li>\\n\\t<p>Strong clinical skills and familiarity with dental technology and diagnostic tools</p>\\n\\t\\n\\t<li>\\n\\t<p>Excellent communication skills and patient-focused mindset</p>\\n\\t\\n\\t<li>\\n\\t<p>Ability to lead, collaborate, and maintain the highest clinical standards</p>\\n\\t\\n</ul>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/15/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79705\",\n                        \"city\": \"Midland\",\n                        \"address1\": \"4400 N Midkiff Dr\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19498,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Dentist â\\u0080\\u0093 Career Growth, Big Bonuses, and Partnership Potential</strong><br>\\n<strong>Midland, TX | $25K Sign-On + $5K Relocation + $1K Daily Guarantee</strong></p>\\n\\n<p>Frontline Source Group, a <strong>leading dental staffing agency</strong>, is partnering with a <strong>thriving, top-tier dental practice</strong> to find <strong>two exceptional dentists</strong> ready to take their careers to the next level. Whether youâ\\u0080\\u0099re a <strong>passionate new graduate</strong> or an <strong>experienced provider</strong> seeking a dynamic, growth-focused environment, this is your opportunity to join a practice thatâ\\u0080\\u0099s <strong>revolutionizing patient care</strong> and offering <strong>clear paths to partnership</strong>.</p>\\n\\n<h3><strong>Why Youâ\\u0080\\u0099ll Love This Practice</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p>$25,000 Sign-On Bonus</p>\\n\\t\\n\\t<li>\\n\\t<p>$5,000 Relocation Bonus</p>\\n\\t\\n\\t<li>\\n\\t<p>$2,000 Continuing Education Bonus</p>\\n\\t\\n\\t<li>\\n\\t<p>$1,000 Daily Guarantee</p>\\n\\t\\n\\t<li>\\n\\t<p><strong>Future Partnership Opportunity</strong></p>\\n\\t\\n\\t<li>\\n\\t<p>Aggressive pay structure and unlimited earning potential</p>\\n\\t\\n\\t<li>\\n\\t<p>Additional positions available in El Paso, TX</p>\\n\\t\\n</ul>\\n\\n<h3><strong>What Youâ\\u0080\\u0099ll Do</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Build relationships with patients while diagnosing, treating, and preventing oral health issues</p>\\n\\t\\n\\t<li>\\n\\t<p>Perform a wide range of procedures, including extractions, root canals, fillings, sealants, whitening, and bite alignment treatments</p>\\n\\t\\n\\t<li>\\n\\t<p>Administer anesthesia or sedatives when necessary</p>\\n\\t\\n\\t<li>\\n\\t<p>Prescribe medications for pain management and infection control</p>\\n\\t\\n\\t<li>\\n\\t<p>Order and interpret x-rays and other diagnostic tests</p>\\n\\t\\n\\t<li>\\n\\t<p>Maintain accurate, detailed patient records</p>\\n\\t\\n\\t<li>\\n\\t<p>Collaborate with a skilled team to deliver exceptional patient experiences</p>\\n\\t\\n</ul>\\n\\n<h3><strong>What You Bring</strong></h3>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Doctorate in Dental Surgery (DDS) or Dental Medicine (DMD)</p>\\n\\t\\n\\t<li>\\n\\t<p>Active state dental license and malpractice insurance</p>\\n\\t\\n\\t<li>\\n\\t<p>Strong clinical skills and extensive knowledge of dental procedures, tools, and diagnostics</p>\\n\\t\\n\\t<li>\\n\\t<p>Excellent communication skills and the ability to build trust with patients</p>\\n\\t\\n\\t<li>\\n\\t<p>Commitment to continuous learning and professional growth</p>\\n\\t\\n</ul>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/15/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street, Suite 4650\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19496,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Finance/Financial Services\",\n                                \"id\": 1404224\n                            },\n                            {\n                                \"name\": \"Sales\",\n                                \"id\": 1009070\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><span style=\\\"font-size: 11.0pt;\\\">We are seeking a <strong>high-performance sales professional</strong> ready to transition into the lucrative world of real estate investing. You donâ\\u0080\\u0099t need prior experience in real estate finance â\\u0080\\u0094 but you must bring a track record of exceeding quotas, building lasting client relationships, and closing high-value deals.<br>\\n<br>\\nYou will be responsible for sourcing and securing investment capital, managing relationships with investors, and representing our firm in the marketplace. Weâ\\u0080\\u0099ll provide the training, industry knowledge, and tools â\\u0080\\u0094 you bring the drive, discipline, and ability to close.<br>\\n<br>\\n<strong>Key Responsibilities:</strong><br>\\nIdentify and connect with potential investors through networking, referrals, and cold outreach,.<br>\\nBuild and maintain a strong pipeline of investor prospects.<br>\\nPresent our investment offerings with clarity, confidence, and persuasive storytelling.<br>\\nManage the full investor acquisition process â\\u0080\\u0094 from first conversation to funding commitment.<br>\\nCultivate long-term relationships with investors to encourage repeat participation.<br>\\nRepresent the company at industry functions, investor meetings, and networking events.<br>\\nMeet and exceed monthly and quarterly capital-raising goals.<br>\\n<br>\\n<strong>Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree preferred<br>\\n3-5 years of proven, high-performance sales experience with in the financial services, insurance or a comparable industry<br>\\nDemonstrated history of meeting or exceeding sales targets<br>\\nExceptional communication, negotiation, and relationship-building skills<br>\\nProven ability to excel both independently and collaboratively in high-pressure, fast-moving environments<br>\\nUnwavering commitment to professional integrity and ethical business practices<br>\\nNatural ability to articulate compelling investment visions and generate investor enthusiasm<br>\\n<br>\\n<strong>Features and Benefits of Client:</strong><br>\\nComprehensive health insurance coverage<br>\\nPTO<br>\\nPerformance-based bonuses tied to successful capital raising achievements<br>\\nProfessional development and career advancement opportunities<br>\\n<br>\\nEqual Opportunity Employer. Â Candidates must be authorized to work in the United States without sponsorship. Â The client cannot sponsor any visas.Â <br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.</span></span></span><br>\\n<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/14/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Sales Executive \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77090\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"140 Cypress Station Drive Suite 230\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19495,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Sales\",\n                                \"id\": 1009070\n                            },\n                            {\n                                \"name\": \"Healthcare - Other\",\n                                \"id\": 1009032\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Medicare Insurance Sales Specialist â\\u0080\\u0093 Houston</strong><br>\\n<strong>$20/Hour + Commission | Paid Training | No License Required</strong></p>\\n\\n<p>Join one of Houstonâ\\u0080\\u0099s fastest-growing Medicare agencies and start earning from day one! We provide <strong>full training, cover your licensing costs</strong>, and give you the tools to build a career helping seniors choose the right healthcare coverage.</p>\\n\\n<p><strong>What Youâ\\u0080\\u0099ll Get:</strong></p>\\n\\n<ul>\\n\\t<li>\\n\\t<p>$20/hour base pay + uncapped commission</p>\\n\\t\\n\\t<li>\\n\\t<p>Paid Medicare certification & exam fees covered</p>\\n\\t\\n\\t<li>\\n\\t<p>Health, Dental & Vision benefits</p>\\n\\t\\n\\t<li>\\n\\t<p>Weekly bonuses & advancement opportunities</p>\\n\\t\\n</ul>\\n\\n<p><strong>What Youâ\\u0080\\u0099ll Do:</strong></p>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Guide seniors through Medicare options</p>\\n\\t\\n\\t<li>\\n\\t<p>Build relationships & deliver exceptional service</p>\\n\\t\\n\\t<li>\\n\\t<p>Work with warm leadsâ\\u0080\\u0094no cold calling</p>\\n\\t\\n</ul>\\n\\n<p><strong>Requirements:</strong></p>\\n\\n<ul>\\n\\t<li>\\n\\t<p>Strong people skills & basic computer knowledge</p>\\n\\t\\n\\t<li>\\n\\t<p>Self-motivated & eager to learn</p>\\n\\t\\n\\t<li>\\n\\t<p>High school diploma or equivalent</p>\\n\\t\\n\\t<li>\\n\\t<p>Must be eligible to work in the U.S.</p>\\n\\t\\n</ul>\\n\\n<p><br>\\n<strong>Bilingual (Spanish/English) a plus.</strong><br>\\n<strong>Apply todayâ\\u0080\\u0094start your career in insurance with guaranteed pay + unlimited earning potential!</strong></p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/14/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Angela\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 14\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Healthcare Sales Agent\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75703\",\n                        \"city\": \"Tyler\",\n                        \"address1\": \"7820 S Broadway Ave\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19494,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Retail/Wholesale\",\n                                \"id\": 1009069\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<p><strong>Frontline Source Group Executive Search Firm represents an exceptional retail company seeking a talented professional for this outstanding career opportunity.</strong></p>\\n\\n<p><strong>Overview</strong></p>\\n\\n<p>Our client, a leading retail organization, is seeking an experienced Buyer with an emphasis around Footwear responsible for product selection, pricing, and promotional strategies to achieve sales, margin, and profit goals. This role is highly product-focused and drives results through strong vendor partnerships, detailed analysis, and customer-centric decision-making. The Buyer collaborates closely with Planning and Merchandising teams to ensure the right styles, sizes, and fits are available at the right time and place, maximizing inventory investment and enhancing the customer experience. Key responsibilities include trend analysis, strategy development, and proactive response to sales performance. This position reports to the Divisional Merchandise Manager and requires strong attention to detail, sound judgment, and effective problem-solving skills.</p>\\n\\n<p><strong>Duties and Responsibilities</strong></p>\\n\\n<ul>\\n\\t<li>Serve as a strategic partner and key support resource to the organization\\n\\t<li>Lead junior Merchandising Department Associates to deliver on financial and talent goals\\n\\t<li>Oversee a high-volume, multi-category footwear business, including omnichannel strategy for stores and e-commerce\\n\\t<li>Make product decisions rooted in brand integrity and an understanding of the core customer, ensuring high satisfaction\\n\\t<li>Set priorities, foster cohesion, and provide motivation to cross-functional teams\\n\\t<li>Develop and communicate a conceptual assortment plan across all footwear departments that align with financial goals (style mix, key items, retails, IMU, AUR, etc.)\\n\\t<li>Partner with Planning to execute appropriate financial and distribution strategies to maximize sales, margin, and inventory turn\\n\\t<li>Determine order quantities by style, size, and color; validate orders against OTB plans\\n\\t<li>Ensure store-level depth and SKU assortment meets volume-based demand\\n\\t<li>Maximize e-commerce footwear sales, margin, and messaging\\n\\t<li>Partner with the Director of Marketing to identify and promote key footwear styles\\n\\t<li>Manage, develop, and coach direct reports and support talent development\\n\\t<li>Assess competition in the footwear space for pricing, trends, and marketing strategies; adjust accordingly to maintain market leadership\\n\\t<li>Travel as needed to attend markets, store visits, vendor meetings, and training\\n</ul>\\n\\n<p><strong>Qualifications and Requirements</strong></p>\\n\\n<ul>\\n\\t<li>Bachelor&apos;s degree in Retail Merchandising, Business, or related field, or equivalent work experience\\n\\t<li>6+ years of progressive buying experience in retail, preferably with footwear\\n\\t<li>2+ years of experience in merchandising team leadership\\n\\t<li>Strong knowledge of buying principles and product lifecycle\\n\\t<li>Proficiency in Microsoft Excel and Word\\n\\t<li>Excellent written and verbal communication skills\\n\\t<li>Strong understanding of retail KPIs and financials\\n\\t<li>Demonstrated negotiation and vendor management skills\\n\\t<li>Ability to travel up to 20%\\n</ul>\\n\\n<p><strong>Preferred Skills</strong></p>\\n\\n<ul>\\n\\t<li>Prior experience buying or managing footwear categories\\n\\t<li>Familiarity with western and work footwear brands\\n\\t<li>Experience building private label or exclusive product assortments\\n\\t<li>Strong analytical and quantitative decision-making skills\\n\\t<li>Background in merchandising across both store and e-commerce environments\\n</ul>\\n\\n<p><strong>About This Opportunity</strong> Frontline Source Group is proud to represent this established retail organization that offers excellent growth potential, competitive compensation, and a collaborative work environment. This is an exceptional opportunity to join a successful company and make a significant impact in the footwear retail space.</p>\\n\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/12/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Footwear Buyer\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75006\",\n                        \"city\": \"Carrollton\",\n                        \"address1\": \"1735 Sandy Lake Road\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19493,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Controls Engineer</strong><br>\\nOur client located just west of Dallas, Texas metro is looking for a highly skilled Controls Engineer to design and optimize systems that improve quality, productivity, and safety. This is a direct hire opportunity.<br>\\n<br>\\n<strong>Controls Engineer</strong><br>\\nThe Controls Engineer designs processes and systems to enhance quality, productivity, and safety while eliminating waste in time, money, materials, labor, equipment usage, and other resources that do not add value.<br>\\nThis role is both technical and leadership-driven requiring someone who can deliver complex controls projects while guiding a team through the process.<br>\\nThe ideal candidate will combine strong problem-solving and engineering expertise with the ability to collaborate across departments and lead process improvement initiatives from concept to completion.<br>\\nKey Technical Focus Areas (Top Priorities):<br>\\nAllen Bradley PLC systems â\\u0080\\u0094 including advanced PLC programming in Ladder Logic, Function Blocks, and Structured Text.<br>\\nControl and OT network architecture design and implementation.<br>\\nControl engineering fundamentals applied to manufacturing environments.<br>\\nVFDs and Kinetics motion control systems.<br>\\nMain Responsibilities:<br>\\nSolve complex, highly technical problems.<br>\\nImprove and maintain both new and existing processes for efficiency and profitability.<br>\\nCreate work instructions and control plans; perform process flow and failure analysis.<br>\\nTroubleshoot issues with both new and existing equipment.<br>\\nLead and coordinate process improvement initiatives with cross-functional teams.<br>\\nDevelop control systems that improve safety, productivity, and production line quality.<br>\\nGuide technical staff through manufacturing equipment repairs and improvements.<br>\\nEnsure compliance with safety standards.<br>\\nPerform other duties as assigned.<br>\\n<br>\\n<strong>Controls Engineer Background Profile:</strong><br>\\nB.S. in Engineering (Mechanical, Electrical, Mechatronics, or similar) from an accredited program.<br>\\n5+ years of industrial engineering/maintenance experience.<br>\\nCandidates without a degree may be considered with 10+ years of relevant experience, including time in an engineering role.<br>\\nExperience in continuous processes (aluminum extrusion or production preferred).<br>\\nStrong project management, planning, and organizational skills.<br>\\nTechnical engineering and design expertise.<br>\\nProficiency in AC & DC electrical systems up to 480 volts.<br>\\nSkilled with Allen Bradley PLCs, RSLogix 5000, Studio 5000, and FactoryTalk View Studio.<br>\\nExperience with AC drives, motor controls, and Ethernet/IP networking.<br>\\nKnowledge of AutoCAD Electrical (preferred).<br>\\nFamiliarity with industrial safety practices and NFPA 70E (preferred).<br>\\nThis is a Monday to Friday 7am to 5 pm schedule but on occasion you may need to stay an additional hour or two. You will also work one evening shift every third week and one weekend on- call per month.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth Benefits<br>\\nPTO and Holidays<br>\\n401K<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/11/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Controls Engineer\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78201\",\n                        \"city\": \"San Antonio\",\n                        \"address1\": \"6243 I-10 Suite 430\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19492,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Payroll Tax Manager</strong><br />\\nOur client located in San Antonio, Texas is looking to add a Payroll Tax Manager to their team for a direct hire opportunity.<br />\\n<br />\\n<strong>Company Profile</strong><br />\\nHome Health Care Service<br />\\nPayroll Processing<br />\\n<br />\\n<strong>Payroll Tax Manager Role:</strong><br />\\nPayroll Tax Manager manages the processing of payroll taxes following IRS section 3504 of the IRS Code and state unemployment rules.<br />\\nPrepare and monitor processes for payroll, taxes, and accounts payable.<br />\\nPayroll Tax Manager will perform technical and complex accounting work in preparation for and maintenance of an automated payroll system and other financial and statistical records and reports.<br />\\nPayroll Tax Manager will monitor payroll processes to ensure adherence.<br />\\nImplement technical accounting principles and procedures.<br />\\nFile or ensure all payroll tax deposits are balanced and deposited timely.<br />\\nLiaise with federal and state tax offices as necessary.<br />\\nPayroll Tax Manager will supervise the preparation 941, 941 Schedule B, 941 Schedule R, 940, 940 Schedule R, SUTA quarterly reports, W-2 tax filings<br />\\nMaintain all consolidated payroll and tax-related data to assist in the quarterly reconciliation of cross-company data.<br />\\nSupervise the reconciliation of payroll and tax withholding records; deposit of Federal income tax withholdings; provide support necessary for preparation of Federal W-2 forms and data; submit Social Security and Medicare documents.<br />\\nKeep up-to-date with changes in federal and state payroll regulations, training staff as needed.<br />\\nPayroll Tax Manager must complete continuing education classes related to payroll and/or tax processing.<br />\\nKeep up-to-date with changes to all software used by the Payroll Department and train staff as necessary.<br />\\nComply with federal, state, &amp; company policies, procedures, and regulations.<br />\\nPerform other related duties as assigned.<br />\\n<br />\\n<strong>Payroll Tax Manager Background Profile:</strong><br />\\nHighly prefer a college degree or CPP certification<br />\\nMust have (3 - 4) years of experience in payroll accounting<br />\\nMust have experience as a Manager or Leader in a team<br />\\nMust have manual payroll processing, not interested in payroll experience with the support of a payroll processing service or software<br />\\nFirm understanding of data preparation, staging, and processing for the following file types: Excel, CSV, TXT<br />\\nProgressive payroll experience with the knowledge of federal and state laws, tax filing requirements, and W-2 Reporting.<br />\\nKnowledge of: principles, practices, methods and procedures of modern payroll accounting; modern office practices, procedures and equipment; laws, regulations and ordinances regarding payroll accounting; statistics and accepted<br />\\n<br />\\n<strong>Features and Benefits of Client:</strong><br />\\nHealth Benefits and Long-Term Disability<br />\\nPTO, Sick Days, and Holidays<br />\\nFree Parking<br />\\nCasual Dress<br />\\nCorporate Break Room\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/11/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Payroll Tax Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78230\",\n                        \"city\": \"San Antonio\",\n                        \"address1\": \"9901 I-10 Frontage Rd\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19491,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Registered Dental Hygienist - Your Career Breakthrough in Dynamic San Antonio!</strong><br>\\n<strong>Thrive in the Heart of Texas: Join Our Family Practice in Vibrant San Antonio</strong><br>\\n<strong>Ask About Our Generous Relocation & Retention Bonus Program!</strong></span></span>\\n<div style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;text-align: center;\\\">\\n<hr></div>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to elevate your career in one of America&apos;s most dynamic cities? Looking for a practice where your expertise is valued and your professional growth is unlimited?</strong><br>\\nWe&apos;re seeking an exceptional <strong>Registered Dental Hygienist</strong> to join our thriving, multi-generational family dental practice in the heart of San Antonio, Texas. This isn&apos;t just a jobâ\\u0080\\u0094it&apos;s your gateway to unlimited possibilities in a city that never stops growing, where professional excellence meets Texas-sized opportunities.<br>\\n<br>\\n<strong>Â Why This Opportunity Will Transform Your Career & Life:</strong><br>\\n<strong>THE PRACTICE:</strong> Step into a warm, established family practice where relationships span generations. Our loyal patient base doesn&apos;t just visitâ\\u0080\\u0094they become part of our extended family. You&apos;ll work alongside passionate professionals who&apos;ve built something truly special over decades, creating an environment where excellence in patient care is our shared obsession.<br>\\n<br>\\n<br>\\n<strong>THE OPPORTUNITY:</strong> Join a city where the dental industry is booming, networking opportunities abound, and your career can reach new heights. San Antonio is home to leading dental conferences, continuing education programs, and a community of dental professionals who support each other&apos;s growth.<br>\\n<br>\\n<strong>Your Perfect Work-Life Balance</strong><br>\\n<strong>Schedule:</strong> Monday â\\u0080\\u0093 Friday 7:00am â\\u0080\\u0093 4:30pm<br>\\n<br>\\n<strong>Exceptional Benefits Package:</strong></span></span>\\n\\n<ul>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Competitive Salary</strong> + Performance Incentives</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Generous Relocation Assistance</strong> - We&apos;ll help make your San Antonio dream a reality</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Year Retention Bonus</strong> - Rewarding your commitment to excellence</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Comprehensive Medical Insurance</strong> (Individual/Spouse/Children/Family)</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>401(k) Retirement Plan</strong> with company matching</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Paid Time Off</strong> - Because San Antonio adventures await</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Continuing Education Support</strong> - Invest in your professional growth</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Flexible Benefits</strong> tailored to your needs</span></span>\\n</ul>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>What Makes You Our Perfect Match:</strong><br>\\n<strong>ESSENTIAL QUALIFICATIONS:</strong></span></span>\\n\\n<ul>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Licensed RDH</strong> with a passion for transforming lives one smile at a time</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>2+ years experience preferred</strong> (new grads with exceptional drive welcome!)</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Exceptional communication skills</strong> - You love connecting with patients and making them feel like family</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Unwavering commitment to clinical excellence</strong> and staying current with best practices</span></span>\\n</ul>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>YOUR PERSONALITY:</strong></span></span>\\n\\n<ul>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ambitious spirit</strong> ready to thrive in a dynamic metropolitan environment</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Genuine care</strong> for patient wellbeing and community health</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Team-first mentality</strong> - You thrive in collaborative, family-oriented environments</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Growth mindset</strong> - Always learning, always improving</span></span>\\n\\t<li style=\\\"margin: 0.0in 0.0in 8.0pt;\\\"><span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Infectious positivity</strong> that brightens every room you enter</span></span>\\n</ul>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to Make the Move of a Lifetime?</strong><br>\\nThis is more than a career changeâ\\u0080\\u0094it&apos;s your chance to join a practice that values you as both a professional and a person, in a city where opportunities are limitless and success is celebrated.</span></span><br>\\n<br>\\n<br>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Imagine:</strong> Starting your morning in a vibrant city full of possibility, spending your day making meaningful differences in patients&apos; lives, and ending with evening entertainment, dining, and cultural experiences that only a world-class city like San Antonio can offer.</span></span>\\n\\n<div style=\\\"margin-bottom: 8.0pt;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;text-align: center;\\\">\\n<hr></div>\\n<span style=\\\"font-size: 12.0pt;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to Transform Your Career AND Your Life?</strong><br>\\n<strong>Don&apos;t let this once-in-a-lifetime opportunity slip away. Outstanding candidates won&apos;t last long in this competitive market.</strong><br>\\n<strong>Apply today and take the first step toward your San Antonio success story!</strong><br>\\n<em>\\\"Where professional excellence meets Texas-sized opportunities\\\"</em></span></span>\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/11/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Registered Dental Hygienist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"45245\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"4450 Eastgate S. Drive\",\n                        \"state\": \"OH\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19486,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Grocery Manager</strong><br>\\nOur client in Cincinnati, OH, has an immediate opening for a Grocery Manager on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEstablished Grocery Retailer<br>\\nTeam atmosphere and environment<br>\\nPassion for serving customers<br>\\n<br>\\n<strong>Grocery Manager:</strong><br>\\nThe Grocery Manager is a critical leadership role responsible for driving the success of our grocery department through exceptional team management, merchandising, store conditions, and outstanding customer service. This position requires a hands-on leader who can balance administrative responsibilities with direct operational involvement.<br>\\nOversee daily store operations, ensuring seamless product flow and optimal customer experience<br>\\nConduct comprehensive visual inspections and manage in-stock levels<br>\\nDevelop and implement strategic merchandising plans, creating engaging product displays<br>\\nMonitor sales floor dynamics, actively engaging with customers and team members<br>\\nHandle customer inquiries, complaints, and special requests with professionalism<br>\\nSupport the Store Manager in executing product placement and appearance strategies<br>\\n<br>\\n<strong>Grocery Â Manager Background Profile:</strong><br>\\nHigh school Diploma or GED and five or more years of related experience; or an equivalent combination of experience and/or higher education required.<br>\\nPrevious experience in order writing, procurement, or supply chain managementÂ <br>\\nProven leadership experience in retail, preferably in specialty foods<br>\\nPrior experience in grocery management or related retail leadership rolesÂ <br>\\nStrong computer literacy in Google Workspace and Power BI preferred<br>\\nExcellent verbal and written communication skillsÂ <br>\\nDemonstrated leadership capabilitiesÂ <br>\\nProficiency in mathematical calculationsÂ <br>\\nStrong vendor relations and management experience<br>\\nFlexible scheduling, including evenings and weekends<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Life, Vision, and Dental Insurance Plans<br>\\nPaid Vacation Time<br>\\n401k Plan<br>\\nEmployee Discount<br>\\n<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/08/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Grocery Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"45245\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"4450 Eastgate S Dr.\",\n                        \"state\": \"OH\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19485,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Natural Foods and Supplements Manager</strong><br>\\nOur client in Cincinnati, OH has an immediate opening for a Natural Foods and Supplements Manager on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEstablished Grocery Retailer<br>\\nTeam atmosphere and environment<br>\\nPassion for serving customers<br>\\n<br>\\n<strong>Natural Foods and Supplements Manager:</strong><br>\\nWe are seeking an exceptional Retail Department Manager to lead our Healthy Living, Natural Foods, and Supplements Department. The ideal candidate will drive sales, inspire team performance, and deliver outstanding customer experience in a dynamic specialty food retail environment.<br>\\nLead and develop a high-performing retail sales team, focusing on exceptional customer service and professional growth<br>\\nManage comprehensive department operations, ensuring optimal product quality, inventory management, and in-stock conditions<br>\\nOversee product merchandising, promotional activities, and sales strategies to maximize department revenue<br>\\nMaintain extensive product knowledge and stay current with industry trends in healthy living and specialty foods<br>\\nEnsure compliance with government and company regulations regarding product safety, sanitation, and refrigeration<br>\\nDevelop and maintain relationships with multiple vendors and suppliers<br>\\nManage departmental budget, monitoring expenses for product, labor, and operational costs<br>\\nCoordinate with cross-functional teams to deliver integrated business results<br>\\nAssist with performance reviews and provide ongoing team member feedback<br>\\n<br>\\n<strong>Natural Foods and Supplements Manager Background Profile:</strong><br>\\nMinimum of 18 years of age.<br>\\nHigh school Diploma or GED and five or more years of related experience; or an equivalent combination of experience and/or higher education required.<br>\\nProven leadership experience in retail, preferably in specialty food or wellness sectors<br>\\nStrong analytical and organizational skills<br>\\nExceptional interpersonal and communication abilities<br>\\nDemonstrated ability to develop and motivate teams<br>\\nProficient in computer systems and digital tools<br>\\nPassion for food, wellness, and customer service<br>\\nAbility to thrive in fast-paced, dynamic environments<br>\\nSkilled at prioritizing multiple tasks and delegating effectively<br>\\nCommitted to diversity and inclusive workplace practices<br>\\nAbility to work flexible shifts<br>\\nComfortable handling high-volume department sales and replenishment<br>\\nCapable of standing for extended periods<br>\\nEnthusiastic about engaging with customers and team members<br>\\nDetail-oriented approach<br>\\nProactive problem-solving skills<br>\\nStrong sales, product knowledge, and recommendation capabilities<br>\\nAdaptable and resilient leadership style<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Life, Vision, and Dental Insurance Plans<br>\\nPaid Vacation Time<br>\\n401k Plan<br>\\nEmployee Discount<br>\\n<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/08/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Natural Foods and Supplements Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"45245\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"4450 Eastgate S Dr.\",\n                        \"state\": \"OH\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19484,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Specialty Foods Assistant Buyer</strong><br>\\nOur client in Cincinnati, OH, has an immediate opening for a Specialty Foods Assistant Buyer on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEstablished Grocery Retailer<br>\\nTeam atmosphere and environment<br>\\nPassion for serving customers<br>\\n<br>\\n<strong>Specialty Foods Assistant Buyer:</strong><br>\\nThe Specialty Foods Assistant Buyer plays a critical role in supporting procurement operations, focusing on inventory management, vendor relations, and strategic purchasing for specialty food product lines.<br>\\nMeticulously review and monitor inventory levels across specified food categories and vendor portfolios. Develop comprehensive replenishment strategies to ensure optimal stock levels, minimize potential shortages, and support efficient warehouse operations.<br>\\nEstablish and maintain strong relationships with specialty food vendors. Proactively negotiate pricing, promotional terms, product quality standards, and delivery conditions to maximize value and ensure consistent product availability.<br>\\nProvide comprehensive administrative assistance to senior buyers, including new item setup, price adjustments, and detailed item maintenance. Maintain accurate and up-to-date procurement documentation and tracking systems.<br>\\nServe as a critical liaison between vendors, warehouses, and internal departments. Promptly address and resolve inventory discrepancies, quality concerns, and supply chain challenges with professionalism and efficiency.<br>\\nContinuously monitor market trends, emerging food products, and industry developments to support strategic purchasing decisions and identify potential new product opportunities.<br>\\n<br>\\n<strong>Specialty Foods Assistant Buyer Background Profile:</strong><br>\\n<br>\\nBachelor&apos;s degree in Business, Food Science, Supply Chain Management, or related field preferred.<br>\\nMinimum of 5 years in sales, procurement, or food industry purchasing<br>\\nProficiency in PowerBI and Google Workspace preferred<br>\\nExperience with order processing and database management systems<br>\\nStrong analytical and problem-solving capabilities<br>\\nExceptional written and verbal communication skills<br>\\nHighly detail-oriented with strong organizational abilities<br>\\nAbility to multitask in a fast-paced, high-volume environment<br>\\nExcellent interpersonal and customer service skills<br>\\nFlexibility to travel as required<br>\\nCommitment to company procedures, values, and policies<br>\\nAbility to represent the organization professionally in all interactions<br>\\nAbility to work in an office and retail environment<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Life, Vision, and Dental Insurance Plans<br>\\nPaid Vacation Time<br>\\n401k Plan<br>\\nEmployee Discount\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/08/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Specialty Foods Assistant Buyer\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"45245\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"4450 Eastgate S Dr\",\n                        \"state\": \"OH\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19481,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Seafood Manager</strong><br>\\nOur client in Cincinnati, OH, has an immediate opening for a Seafood Manager on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEstablished Grocery Retailer<br>\\nTeam atmosphere and environment<br>\\nPassion for serving customers<br>\\n<br>\\n<strong>Seafood Manager:</strong><br>\\nThe Seafood Manager ensures that fresh and prepackaged seafood cases are maintained at full capacity with fresh products. Works closely with seafood personnel on daily operations and promotes exceptional customer service.<br>\\nManage sales performance, financial results, and overall department conditions<br>\\nMaintain extensive product knowledge across all seafood offerings<br>\\nUtilize hand tools efficiently with proper knife skills<br>\\nOrder merchandise to maintain optimal freshness and stock levels<br>\\nExecute effective product merchandising strategies<br>\\nAnalyze daily sales data to reduce shrink through proper production output<br>\\nReview detailed reports on sales, profits, and trends to make informed purchasing decisions<br>\\nTrain and develop department employees<br>\\nAdhere to all state, local, and company policies and regulations regarding health and safety<br>\\nCollaborate with leadership to execute and promote company directives, promotions, and campaigns<br>\\n<br>\\n<strong>Seafood Manager Background Profile:</strong><br>\\nMinimum of 18 years of age.<br>\\nHigh school Diploma or GED and two or more years of related experience, or an equivalent combination of experience and/or higher education required.<br>\\nManager Food Safety certification required.<br>\\nFood Handler certification required.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nHealth, Life, Vision, and Dental Insurance Plans<br>\\nPaid Vacation Time<br>\\n401k Plan<br>\\nEmployee Discount<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"08/07/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Seafood Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75070\",\n                        \"city\": \"McKinney\",\n                        \"address1\": \"5060 Collin Mckinney Pkwy Ste 104\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19467,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Legal\",\n                                \"id\": 1009047\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Associate Attorney, Family Law</strong><br>\\nOur client located in just north of Dallas, Texas in Collin County is growing and is looking to add an Associate Attorney to their team. This is an in office, direct hire opportunity.<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nFamily Law Firm<br>\\nBoutique<br>\\n<br>\\n<strong>Associate Attorney Role</strong><br>\\nLooking for someone equally committed to uplifting families through complex transitions with compassion and skill.<br>\\nManage and prioritize a caseload of approximately 50 active family law cases<br>\\nDraft pleadings, legal correspondence, and discovery documents<br>\\nRepresent clients in hearings, mediations, and court proceedings<br>\\nCollaborate with a supportive legal team to deliver excellent client service<br>\\nMaintain monthly billable hours target of ~120â\\u0080\\u0093130 hours<br>\\n<br>\\n<strong>Associate Attorney Background Profile:</strong><br>\\n2â\\u0080\\u00935 years of family law experience<br>\\nDemonstrated commitment to family lawâ\\u0080\\u0094not just a stepping stone<br>\\nStrong courtroom presence and ability to independently manage a high caseload<br>\\nIntegrity-driven, transparent communicator, and a collaborative team player<br>\\nPrefer candidates willing to work in-office and are immediate available is a plus<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nUnlimited PTO<br>\\nHolidays<br>\\nIRA with Match<br>\\n100% Benefits<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/30/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Associate Attorney\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19466,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Registered Dental Hygienist - Your Career Breakthrough in Dynamic Dallas!</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Thrive in the Heart of Texas: Join Our Family Practice in Vibrant Dallas</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ask About Our Generous Relocation & Retention Bonus Program!</strong></span></span>\\n<div style=\\\"margin-bottom: 0.0in;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;text-align: center;\\\">\\n<hr></div>\\n<span style=\\\"font-size: 11.0px;\\\"> <span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to elevate your career in one of America&apos;s most dynamic cities? Looking for a practice where your expertise is valued and your professional growth is unlimited?</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\">We&apos;re seeking an exceptional <strong>Registered Dental Hygienist</strong> to join our thriving, multi-generational family dental practice in the heart of Dallas, Texas. This isn&apos;t just a jobâ\\u0080\\u0094it&apos;s your gateway to unlimited possibilities in a city that never stops growing, where professional excellence meets Texas-sized opportunities.</span><br>\\n<br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Â Why This Opportunity Will Transform Your Career & Life:</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>THE PRACTICE:</strong> Step into a warm, established family practice where relationships span generations. Our loyal patient base doesn&apos;t just visitâ\\u0080\\u0094they become part of our extended family. You&apos;ll work alongside passionate professionals who&apos;ve built something truly special over decades, creating an environment where excellence in patient care is our shared obsession.</span><br>\\n<br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>THE CITY:</strong> Dallas offers endless possibilitiesâ\\u0080\\u0094from world-class dining and entertainment in Deep Ellum to professional sports teams, thriving arts districts, and a cost of living that lets you actually enjoy your success. Whether you&apos;re exploring the Dallas Arts District, catching a Stars game, or enjoying weekend trips to Austin or Houston, you&apos;ll never run out of adventures.</span><br>\\n<br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>THE OPPORTUNITY:</strong> Join a city where the dental industry is booming, networking opportunities abound, and your career can reach new heights. Dallas is home to leading dental conferences, continuing education programs, and a community of dental professionals who support each other&apos;s growth.</span><br>\\n<br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Your Perfect Work-Life Balance</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Schedule:</strong> Monday â\\u0080\\u0093 Thursday, 7:00am â\\u0080\\u0093 4:30pm<br>\\n<em>(Three-day weekends to explore everything Dallas has to offer!)</em></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Exceptional Benefits Package:</strong></span></span>\\n\\n<ul>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Competitive Salary</strong> + Performance Incentives</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Generous Relocation Assistance</strong> - We&apos;ll help make your Dallas dream a reality</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Year Retention Bonus</strong> - Rewarding your commitment to excellence</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Comprehensive Medical Insurance</strong> (Individual/Spouse/Children/Family)</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>401(k) Retirement Plan</strong> with company matching</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Paid Time Off</strong> - Because Dallas adventures await</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Continuing Education Support</strong> - Invest in your professional growth</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Flexible Benefits</strong> tailored to your needs</span></span>\\n</ul>\\n<span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>What Makes You Our Perfect Match:</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>ESSENTIAL QUALIFICATIONS:</strong></span></span>\\n\\n<ul>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Licensed RDH</strong> with a passion for transforming lives one smile at a time</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>2+ years experience preferred</strong> (new grads with exceptional drive welcome!)</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Exceptional communication skills</strong> - You love connecting with patients and making them feel like family</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Unwavering commitment to clinical excellence</strong> and staying current with best practices</span></span>\\n</ul>\\n<span style=\\\"font-size: 11.0px;\\\"> <span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>YOUR PERSONALITY:</strong></span></span>\\n\\n<ul>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ambitious spirit</strong> ready to thrive in a dynamic metropolitan environment</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Genuine care</strong> for patient wellbeing and community health</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Team-first mentality</strong> - You thrive in collaborative, family-oriented environments</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Growth mindset</strong> - Always learning, always improving</span></span>\\n\\t<li class=\\\"x\\\" style=\\\"margin: 0.0in;\\\"><span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Infectious positivity</strong> that brightens every room you enter</span></span>\\n</ul>\\n<span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to Make the Move of a Lifetime?</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\">This is more than a career changeâ\\u0080\\u0094it&apos;s your chance to join a practice that values you as both a professional and a person, in a city where opportunities are limitless and success is celebrated.</span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Imagine:</strong> Starting your morning in a vibrant city full of possibility, spending your day making meaningful differences in patients&apos; lives, and ending with evening entertainment, dining, and cultural experiences that only a world-class city like Dallas can offer.</span></span>\\n\\n<div style=\\\"margin-bottom: 0.0in;margin-left: 0.0in;margin-right: 0.0in;margin-top: 0.0in;text-align: center;\\\">\\n<hr></div>\\n<span style=\\\"font-size: 11.0px;\\\"><span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Ready to Transform Your Career AND Your Life?</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Don&apos;t let this once-in-a-lifetime opportunity slip away. Outstanding candidates won&apos;t last long in this competitive market.</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><strong>Apply today and take the first step toward your Dallas success story!</strong></span><br>\\n<span style=\\\"font-family: Aptos , sans-serif;\\\"><em>\\\"Where professional excellence meets Texas-sized opportunities\\\"</em></span></span>\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/30/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Registered Dental Hygienist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75205\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"3401 Armstrong Ave.,\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19461,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Operations\",\n                                \"id\": 2000005\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Investment Associate</strong><br />\\nOur client is looking to hire an Investment Associate to support the CEO. This is a top priority need. Must be willing to work longer than normal hours and some weekends. This is a direct hire, hybrid opportunity.<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nStart up<br />\\nInvestment<br />\\n<br />\\n<strong>Investment Associate Role:</strong><br />\\nWe are seeking a high-performing, Type-A Investment Associate to serve as a strategic right hand to our CEO.<br />\\nThis is a high-intensity, immersive position designed for a sharp, ambitious individual who thrives under pressure and is eager to gain exposure to executive decision-making at the highest level.<br />\\nTravel extensively with the CEO to meetings, investor events, and strategic site visits<br />\\nConduct financial and strategic analysis to support key initiatives and decisions<br />\\nPrepare executive briefings, decks, memos, and dashboards<br />\\nHelp drive cross-functional execution on projects and priorities<br />\\nAnticipate needs, solve problems on the fly, and protect the CEOâ\\u0080\\u0099s time and attention<br />\\n<br />\\n<strong>Investment Associate Background Profile:</strong><br />\\nBachelorâ\\u0080\\u0099s degree in Finance, Economics, Business, or related field<br />\\n2+ years of experience at a top-tier finance firm (investment banking, private equity, hedge fund, or consulting)<br />\\nExperience performing in-depth financial research and analysis ideally for investment decisions, manage portfolios, and assist with corporate finance activities such as mergers and acquisitions is highly preferred<br />\\nIntellectually aggressive, exceptionally organized, and thrives in high-stakes environments<br />\\nStrong financial modeling, Excel, and PowerPoint skills<br />\\nMust be willing to travel and open to working outside normal business hours and some weekends.<br />\\nInterested in business leadership, private equity, venture capital, or strategic ops<br />\\nAble to manage ambiguity, juggle competing priorities, and move fast without breaking things<br />\\nMust be based in or willing to relocate to Dallas, TX<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\nCompetitive Salary<br />\\nPTO and Holidays<br />\\nRemote employment<br />\\nCompany retreats<br />\\nand much more\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/28/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Investment Associate\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"0\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77004\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"3100 Cleburne Street\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19455,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Legal\",\n                                \"id\": 1009047\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Exciting opportunity for a licensed attorney to join a top education industry organization in Houston, Texas as an Associate General Counsel. Utilize your legal expertise to provide comprehensive services, handle contract negotiations and litigation, and stay up-to-date on relevant laws and regulations. Apply now for this direct hire position with excellent benefits<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nEducation Industry<br>\\nGreat Organization<br>\\nExcellent benefits<br>\\n<br>\\n<strong>Associate General Counsel Role:</strong><br>\\nThe Associate General Counsel will provide comprehensive legal services to various departments, including senior administrators, faculty, and staff.<br>\\nManage a broad range of legal inquiries across different departments.<br>\\nWork directly with administrators and faculty to draft, review, and revise various agreements, such as purchase agreements, license agreements, inter-local agreements, sponsored research agreements, construction contracts, and other legal documents.<br>\\nDraft formal legal responses representing the institutionâ\\u0080\\u0099s position on matters before enforcement agencies or other adjudicatory bodies.<br>\\nOversee timely responses to public records requests and compliance with applicable laws such as the Texas Public Information Act, the Family Educational Rights and Privacy Act, and subpoenas.<br>\\nSupport efforts to foster an inclusive environment that promotes participation and respect.<br>\\nAssist in creating, revising, and maintaining institutional policies, procedures, and forms to ensure compliance with relevant laws and regulations.<br>\\nRepresent the Office of General Counsel in administrative proceedings before state agencies and handle investigations related to disciplinary matters, internal grievances, and termination hearings.<br>\\nConduct legal research and analysis, and prepare legal memoranda on various topics.<br>\\nDraft and review correspondence and reports on behalf of the OGC.<br>\\nServe as the primary liaison with external legal counsel in both litigation and non-litigation matters.<br>\\nStay current on legal and regulatory developments at the federal, state, and local levels.<br>\\nFurnish legal advice on general and specialized legal issues related to higher education and the organization.<br>\\nPerform legal research and prepare memorandums/opinions on legal issues.<br>\\nPrepare, review, revise, and interpret the Manual of Administrative Policies and Procedures to comply with applicable laws, rules, and regulations.<br>\\nDraft and review contracts for internal stakeholders.<br>\\nCollaborate with internal stakeholders to assist in contract negotiations.<br>\\nProcess subpoenas and requests for information.<br>\\nRepresent the organization in proceedings, hearings, and investigations<br>\\nManage discovery and support litigation cases handled by the Texas Attorney Generalâ\\u0080\\u0099s Office.<br>\\nSupport the organizationâ\\u0080\\u0099s top priorities and perform other job-related duties as assigned.<br>\\n<br>\\n<strong>Associate General Counsel Background Profile:</strong><br>\\nGraduation from an ABA-accredited law school with a Juris Doctor degree.<br>\\nLicense to practice law in the State of Texas.<br>\\nAn excellent academic record and related experience preferred.<br>\\nMinimum of 5 years as a licensed attorney with experience in contracts, employment law, constitutional law, and litigation.<br>\\nStrong knowledge of federal, state, local, and county laws.<br>\\nFamiliarity with organizational policies, procedures, and best practices.<br>\\nUnderstanding of compliance policies and their implementation.<br>\\nExperience with general web-based research tools.<br>\\nStrong skills in Microsoft Office Suite.<br>\\nExcellent analytical and problem-solving abilities.<br>\\nCapable of managing multiple tasks and deadlines effectively.<br>\\nStrong verbal and written communication skills.<br>\\nAbility to provide sound legal advice and services.<br>\\nAbility to work independently with minimal supervision and take proactive initiative when necessary.<br>\\nDemonstrated sound judgment, integrity, and discretion in handling confidential matters.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nMedical, Dental, Vision paid 100% for employee<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/24/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Associate General Counsel\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"17801\",\n                        \"city\": \"Sunbury\",\n                        \"address1\": \"1000 South Second Street\",\n                        \"state\": \"PA\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19454,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Grocery\",\n                                \"id\": 2000000\n                            },\n                            {\n                                \"name\": \"Human Resources\",\n                                \"id\": 1009041\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Benefits Manager</strong><br />\\nOur client in Sunbury, Pennsylvania, has an immediate opening for a Benefits Manager on a direct hire basis.&nbsp;<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nA company with strong core values and growing rapidly.<br />\\n<br />\\n<strong>Benefits Manager Role:</strong><br />\\nJoin a dynamic organization committed to fostering associate growth and community development through comprehensive benefits management. We are seeking an experienced Benefits Administration Manager to lead our clientâ\\u0080\\u0099s employee welfare programs and ensure exceptional service delivery across all benefit offerings.<br />\\nLead comprehensive administration of employee welfare programs encompassing medical coverage, prescription benefits, dental and vision plans, life insurance, AD&amp;D coverage, disability programs, flexible spending accounts, voluntary benefit options, and COBRA administration.<br />\\nAct as primary liaison with external benefit providers, addressing claim resolutions and benefit related concerns.<br />\\nCultivate strategic partnerships with insurance brokers and vendor organizations.<br />\\nGuide employees through complete benefit experience from initial onboarding through enrollment processes, payroll integration, inquiry resolution, and ongoing support.<br />\\nOversee weekly benefit budget management and collaborate with brokers on financial projections for accounting department coordination.<br />\\nDirect financial oversight of annual budget, including expense forecasting, invoice reconciliation, and monthly vendor payment processing.<br />\\nReview and authorize qualifying life event modifications and new employee benefit registrations.<br />\\nProvide exceptional customer service while managing complex benefit escalations and collaborating with providers to achieve mutually beneficial outcomes.<br />\\nDevelop strategic communications initiatives to enhance health and wellness program awareness, boost participation rates, and ensure compliance with evolving regulatory requirements.<br />\\nDesign and maintain benefit structures and retirement offerings through Workday system management, including eligibility criteria and rate schedule updates.<br />\\nOversee complete 401K plan administration, including deduction setup, eligibility tracking, and compilation of documentation for annual Form 5500 reporting requirements.<br />\\nManage 401K compliance operations, including non-discrimination testing protocols and federal filing obligations.<br />\\nCoordinate annual audit procedures encompassing census data preparation, recordkeeper collaboration, and independent auditor liaison responsibilities.<br />\\nConduct a primary review of annual financial reports, Form 5500 preparation, and Summary Annual Report development, ensuring discrepancy resolution and preparing comprehensive documentation for Director approval prior to submission.<br />\\nAdminister leave of absence programs and staff coordination while ensuring full compliance with federal, state, and local regulatory requirements, including FMLA, short-term disability, and ADA compliance protocols.<br />\\nMaintain adherence to Affordable Care Act regulations and oversee IRS return filing processes and associate 1095 C form distribution.<br />\\nPlan and execute annual Open Enrollment campaigns.<br />\\nGenerate comprehensive reporting on workforce changes, terminations, and relevant metrics as requested.<br />\\nDevelop and manage EIB file feeds and ongoing HRIS system requests.<br />\\nComplete additional projects and responsibilities as business needs arise.<br />\\nThis role includes direct supervision of team members and management of strategic partnerships with multiple external vendor organizations.<br />\\n<br />\\n<strong>Benefits Manager Background Profile:</strong><br />\\nBachelor&apos;s degree in Human Resources, Business Administration, Finance, or related discipline, or equivalent professional experience in analytical roles aligned with position requirements.<br />\\nMinimum 5 years of progressive experience in benefit plan strategy development, design, and administration with demonstrated success in benefit program implementation and management.<br />\\nSeeking a motivated benefits and wellness professional combining strategic vision with hands on execution capabilities.<br />\\nComprehensive understanding of employee benefit plan architecture, including healthcare programs, leave administration, and defined contribution retirement systems.<br />\\nThorough knowledge of plan administration complexities, payroll integration processes, regulatory compliance requirements, and benefits taxation principles.<br />\\nProven track record in vendor relationship management and cross-functional collaboration.<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\nMedical and Prescription Drug Coverage<br />\\nVision and Dental<br />\\nPaid Time Off<br />\\nIncentive Plan<br />\\n401K with Company Matching<br />\\nHybrid Work Schedule<br />\\n<br />\\n&nbsp;\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/23/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Mike\",\n                        \"lastName\": \"Cook\",\n                        \"id\": 1454022\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Benefits Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78201\",\n                        \"city\": \"San Antonio\",\n                        \"address1\": \"6243 IH-10 West, 6243 I-10 Suite 430\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19452,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Sales\",\n                                \"id\": 1009070\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Director of Operations</strong><br>\\nOur client is seeking a Director of Operations to support the executive team and lead daily FMSA (Fiscal Management Service Agency) operations. This leadership role will help drive strategy, performance, and compliance across programs serving individuals with disabilities through Home & Community-Based Services (HCBS).<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nThis organization is a mission-driven leader in the healthcare services space, specializing in supporting individuals through Fiscal Management Service Agency (FMSA) programs. They are recognized for their innovation in Medicaid Self-Directed services and their commitment to expanding access to care across the country.<br>\\n<br>\\n<strong>Director of Operations Role:</strong><br>\\nAdvises the President and senior leadership on key business and operational decisions.<br>\\nOversees daily operations of the Companyâ\\u0080\\u0099s programs under the FMSA umbrella to ensure compliance, quality, and effectiveness.<br>\\nLeads cross-departmental projects to strengthen service delivery and organizational efficiency.<br>\\nReviews program performance and identifies improvements based on data and stakeholder feedback.<br>\\nActs as a resource to staff working on projects or strategic initiatives.<br>\\nCoordinates with the executive team and department leaders to align operational priorities with broader company goals.<br>\\nSupports long-term strategic planning to improve organizational outcomes, cost-effectiveness, and service quality.<br>\\nMaintains strict confidentiality and ensures operations follow all federal, state, and agency guidelines.<br>\\nConducts due diligence for potential acquisitions and oversees disposition of programs or assets as directed.<br>\\nEvaluates and proposes new program opportunities and assesses feasibility for launch.<br>\\nContinuously researches emerging technologies to enhance operations or address business challenges.<br>\\nDevelops and recommends process improvements to senior leadership.<br>\\nRepresents the company at meetings, conferences, and with key stakeholders.<br>\\nCompletes assigned training and remains current with regulatory and procedural standards.<br>\\nAdheres to agency policies and follows all applicable Texas Administrative Code (T.A.C.) and regulatory frameworks.<br>\\n<br>\\n<strong>Director of Operations Background Profile:</strong><br>\\nAt least 5 years in a senior administrative leadership role in the healthcare field.<br>\\nMinimum of 5 years of direct management experience, including program oversight and staff development.<br>\\n2+ years working in HCBS or FMSA environments strongly preferred.<br>\\nAt least 6 months of experience working directly with individuals with disabilities.<br>\\nDemonstrated leadership consistent with organizational mission and values.<br>\\nStrong organizational and project management skills with excellent attention to detail.<br>\\nAbility to work independently while managing teams and motivating others.<br>\\nEffective communication skillsâ\\u0080\\u0094both written and verbalâ\\u0080\\u0094with the ability to engage with clients, staff, and the public.<br>\\nSkilled in interpersonal relations, including active listening and collaborative problem-solving.<br>\\nComfortable communicating with healthcare professionals and navigating regulatory frameworks.<br>\\nMust be proficient in Microsoft Office; able to type at least 35 wpm with 80% accuracy; same proficiency required in Excel.<br>\\nMust be able to read, write, and communicate fluently in English.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nCompetitive salary<br>\\nComprehensive medical, dental, and vision insurance plans<br>\\nGenerous PTO, paid holidays, and flexible work arrangements<br>\\nSupportive, mission-focused culture with growth and development opportunities<br>\\nOpportunity to shape the future of HCBS and Self-Directed services on a national scale<br>\\nPassionate leadership team that values innovation, integrity, and results<br>\\nRemote flexibility with required travel to target states and industry events\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/23/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Director of Operations \",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78201\",\n                        \"city\": \"San Antonio\",\n                        \"address1\": \"6243 IH-10 West, 6243 I-10 Suite 430\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19451,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Sales\",\n                                \"id\": 1009070\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Director of Business Development</strong><br>\\nOur client is seeking a Director of Business Development leader to expand their Medicaid-funded operations into new regions. This position reports to the President and may assume leadership of departments or initiatives as needed.<br>\\n<br>\\n<strong>Company Profile</strong><br>\\nThis organization is a mission-driven leader in the healthcare services space, specializing in supporting individuals through Fiscal Management Service Agency (FMSA) programs. They are recognized for their innovation in Medicaid Self-Directed services and their commitment to expanding access to care across the country.<br>\\n<br>\\n<strong>Director of Business Development Role:</strong><br>\\nServes as a key advisor to the President and senior leaders, providing strategic input on growth and expansion efforts.<br>\\nLeads the development and execution of plans to expand operations into additional states, specifically targeting Medicaid Self-Directed HCBS programs.<br>\\nOversees all aspects of proposal development, including RFP analysis, preparation, submission, and compliance alignment.<br>\\nConducts detailed market research to assess state readiness, competitive environments, and regulatory barriers to entry.<br>\\nCultivates relationships with state Medicaid agencies, managed care organizations, and other healthcare stakeholders to support growth initiatives.<br>\\nDevelops financial models, feasibility reports, and business cases to assess potential markets and support executive decision-making.<br>\\nManages contract negotiations and partnerships, ensuring favorable terms and full regulatory compliance.<br>\\nMonitors state and federal updates related to HCBS and advises internal teams on implications for service offerings.<br>\\nRepresents the organization at external meetings, conferences, and industry events to increase visibility and credibility in new markets.<br>\\nEstablishes KPIs to measure the effectiveness of business development efforts and reports progress to the executive team.<br>\\nWorks closely with compliance leadership to ensure all activities adhere to federal and state requirements for HCBS programs.<br>\\nLeads internal teams across departments to implement new service lines, expansion projects, and operational rollouts.<br>\\nIdentifies and implements improvements in the proposal development process, increasing efficiency and response quality.<br>\\nMaintains confidentiality and adherence to all applicable organizational, state, and federal policies and regulations.<br>\\nPerforms other duties as needed to support growth and strategic business objectives.<br>\\n<br>\\n<strong>Director of Business Development Background Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in Business Administration, Healthcare Administration, or a related field required; Masterâ\\u0080\\u0099s degree preferred.<br>\\nAt least 5 years in a senior-level business development or leadership role within healthcare or Medicaid-related programs.<br>\\nMinimum of 3 years managing RFPs, with a proven record of successful proposal submissions and contract awards.<br>\\nExperience with HCBS programs or Fiscal Management Services is strongly preferred (2+ years ideal).<br>\\nDemonstrated success leading market expansion or service launches in new geographic regions.<br>\\nHigh-level strategic thinking with the ability to execute hands-on work in a fast-paced environment.<br>\\nSkilled communicator, both written and verbal, with strong negotiation and presentation capabilities.<br>\\nAbility to work independently while managing cross-functional project teams toward shared goals.<br>\\nProficient in Microsoft Office Suite and comfortable with CRM and proposal-tracking tools.<br>\\nStrong attention to detail and the ability to manage multiple priorities, timelines, and compliance requirements.<br>\\nAble to type a minimum of 35 wpm with at least 80% accuracy, including spreadsheet proficiency.<br>\\nWilling to travel periodically for stakeholder meetings, conferences, and market development.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nCompetitive salary with bonus potential based on performance<br>\\nComprehensive medical, dental, and vision insurance plans<br>\\nGenerous PTO, paid holidays, and flexible work arrangements<br>\\nSupportive, mission-focused culture with growth and development opportunities<br>\\nOpportunity to shape the future of HCBS and Self-Directed services on a national scale<br>\\nPassionate leadership team that values innovation, integrity, and results<br>\\nRemote flexibility with required travel to target states and industry events\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"07/23/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Director of Business Development\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78701\",\n                        \"city\": \"Austin\",\n                        \"address1\": \"100 Congress Ave\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19419,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists for three exceptional opportunities with a top-tier practice committed to career advancement and professional growth!<br>\\n<br>\\nAre you a passionate <strong>new graduate</strong> ready to launch your dental career? Or an <strong>experienced dentist</strong> looking for a dynamic, growth-focused environment? We have exciting positions available for Austin -based candidates who are open to relocating to the thriving markets of <strong>El Paso or Midland, Texas!</strong><br>\\n<br>\\nJoin a booming dental practice that&apos;s revolutionizing patient care in these rapidly growing Texas communities. These locations offer excellent opportunities for career development, competitive markets, and the chance to make a significant impact while building your professional future in dentistry.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSuccessful and growing dental practice!<br>\\n25K Sign on & 5K Relocation bonus!!Â <br>\\nAggressive pay and partnership opportunity!<br>\\n<br>\\n<strong>Dentist Role:</strong><br>\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br>\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br>\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br>\\nAddress issues related to bite alignment and dental overcrowding.<br>\\nApply dental agents such as sealants and whiteners.<br>\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br>\\nAdminister sedatives or anesthesia as required prior to procedures.<br>\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br>\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br>\\nMaintain detailed records of patient oral health and treatment history.<br>\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br>\\n<br>\\n<strong>Dentist Background Profile:</strong><br>\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br>\\nValid state license and malpractice insurance.<br>\\nAdditional certifications or licenses may be required based on specific needs.<br>\\nProficiency in computer applications and healthcare databases.<br>\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br>\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br>\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br>\\nEffective management and leadership abilities.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\n25K Sign on Bonus<br>\\n5K Relocation BonusÂ <br>\\n2K CE BonusÂ <br>\\n1K Daily GuaranteeÂ <br>\\nFuture Partnership opportunities<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/19/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"78230\",\n                        \"city\": \"San Antonio\",\n                        \"address1\": \"9901 I-10 Frontage Rd\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19418,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists for three exceptional opportunities with a top-tier practice committed to career advancement and professional growth!<br>\\n<br>\\nAre you a passionate <strong>new graduate</strong> ready to launch your dental career? Or an <strong>experienced dentist</strong> looking for a dynamic, growth-focused environment? We have exciting positions available for San AntonioÂ -based candidates who are open to relocating to the thriving markets of <strong>El Paso or Midland, Texas!</strong><br>\\n<br>\\nJoin a booming dental practice that&apos;s revolutionizing patient care in these rapidly growing Texas communities. These locations offer excellent opportunities for career development, competitive markets, and the chance to make a significant impact while building your professional future in dentistry.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSuccessful and growing dental practice!<br>\\n25K Sign on & 5K Relocation bonus!!Â <br>\\nAggressive pay and partnership opportunity!<br>\\n<br>\\n<strong>Dentist Role:</strong><br>\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br>\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br>\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br>\\nAddress issues related to bite alignment and dental overcrowding.<br>\\nApply dental agents such as sealants and whiteners.<br>\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br>\\nAdminister sedatives or anesthesia as required prior to procedures.<br>\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br>\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br>\\nMaintain detailed records of patient oral health and treatment history.<br>\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br>\\n<br>\\n<strong>Dentist Background Profile:</strong><br>\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br>\\nValid state license and malpractice insurance.<br>\\nAdditional certifications or licenses may be required based on specific needs.<br>\\nProficiency in computer applications and healthcare databases.<br>\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br>\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br>\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br>\\nEffective management and leadership abilities.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\n25K Sign on Bonus<br>\\n5K Relocation BonusÂ <br>\\n2K CE BonusÂ <br>\\n1K Daily GuaranteeÂ <br>\\nFuture Partnership opportunities<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/19/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"77043\",\n                        \"city\": \"Houston\",\n                        \"address1\": \"2901 W Sam Houston Pkwy N\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19417,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists for three exceptional opportunities with a top-tier practice committed to career advancement and professional growth!<br>\\n<br>\\nAre you a passionate <strong>new graduate</strong> ready to launch your dental career? Or an <strong>experienced dentist</strong> looking for a dynamic, growth-focused environment? We have exciting positions available for Houston-based candidates who are open to relocating to the thriving markets of <strong>El Paso or Midland, Texas!</strong><br>\\n<br>\\nJoin a booming dental practice that&apos;s revolutionizing patient care in these rapidly growing Texas communities. These locations offer excellent opportunities for career development, competitive markets, and the chance to make a significant impact while building your professional future in dentistry.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSuccessful and growing dental practice!<br>\\n25K Sign on & 5K Relocation bonus!!Â <br>\\nAggressive pay and partnership opportunity!<br>\\n<br>\\n<strong>Dentist Role:</strong><br>\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br>\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br>\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br>\\nAddress issues related to bite alignment and dental overcrowding.<br>\\nApply dental agents such as sealants and whiteners.<br>\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br>\\nAdminister sedatives or anesthesia as required prior to procedures.<br>\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br>\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br>\\nMaintain detailed records of patient oral health and treatment history.<br>\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br>\\n<br>\\n<strong>Dentist Background Profile:</strong><br>\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br>\\nValid state license and malpractice insurance.<br>\\nAdditional certifications or licenses may be required based on specific needs.<br>\\nProficiency in computer applications and healthcare databases.<br>\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br>\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br>\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br>\\nEffective management and leadership abilities.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\n25K Sign on Bonus<br>\\n5K Relocation BonusÂ <br>\\n2K CE BonusÂ <br>\\n1K Daily GuaranteeÂ <br>\\nFuture Partnership opportunities<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/19/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19416,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists for three exceptional opportunities with a top-tier practice committed to career advancement and professional growth!<br>\\n<br>\\nAre you a passionate <strong>new graduate</strong> ready to launch your dental career? Or an <strong>experienced dentist</strong> looking for a dynamic, growth-focused environment? We have exciting positions available for Dallas-based candidates who are open to relocating to the thriving markets of <strong>El Paso or Midland, Texas!</strong><br>\\n<br>\\nJoin a booming dental practice that&apos;s revolutionizing patient care in these rapidly growing Texas communities. These locations offer excellent opportunities for career development, competitive markets, and the chance to make a significant impact while building your professional future in dentistry.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSuccessful and growing dental practice!<br>\\n25K Sign on & 5K Relocation bonus!!Â <br>\\nAggressive pay and partnership opportunity!<br>\\n<br>\\n<strong>Dentist Role:</strong><br>\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br>\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br>\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br>\\nAddress issues related to bite alignment and dental overcrowding.<br>\\nApply dental agents such as sealants and whiteners.<br>\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br>\\nAdminister sedatives or anesthesia as required prior to procedures.<br>\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br>\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br>\\nMaintain detailed records of patient oral health and treatment history.<br>\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br>\\n<br>\\n<strong>Dentist Background Profile:</strong><br>\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br>\\nValid state license and malpractice insurance.<br>\\nAdditional certifications or licenses may be required based on specific needs.<br>\\nProficiency in computer applications and healthcare databases.<br>\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br>\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br>\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br>\\nEffective management and leadership abilities.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\n25K Sign on Bonus<br>\\n5K Relocation BonusÂ <br>\\n2K CE BonusÂ <br>\\n1K Daily GuaranteeÂ <br>\\nFuture Partnership opportunities<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/19/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79705\",\n                        \"city\": \"Midland\",\n                        \"address1\": \"4400 N Midkiff Dr\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19408,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists to fill two exciting positions with a top-tier practice focused on career advancement and growth!<br />\\n<br />\\nAre you a passionate new graduate ready to make your mark in dentistry? Or an experienced dentist seeking a dynamic, growth-oriented environment? This is your chance to join a booming dental practice in Midland, TX that's revolutionizing patient care!<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nSuccessful and growing dental practice!<br />\\n25K Sign on &amp; 5K Relocation bonus!!&nbsp;<br />\\nAggressive pay and partnership opportunity!<br />\\n<br />\\n<strong>Dentist Role:</strong><br />\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br />\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br />\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br />\\nAddress issues related to bite alignment and dental overcrowding.<br />\\nApply dental agents such as sealants and whiteners.<br />\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br />\\nAdminister sedatives or anesthesia as required prior to procedures.<br />\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br />\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br />\\nMaintain detailed records of patient oral health and treatment history.<br />\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br />\\n<br />\\n<strong>Dentist Background Profile:</strong><br />\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br />\\nValid state license and malpractice insurance.<br />\\nAdditional certifications or licenses may be required based on specific needs.<br />\\nProficiency in computer applications and healthcare databases.<br />\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br />\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br />\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br />\\nEffective management and leadership abilities.<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\n25K Sign on Bonus<br />\\n5K Relocation Bonus&nbsp;<br />\\n2K CE Bonus&nbsp;<br />\\n1K Daily Guarantee&nbsp;<br />\\nFuture Partnership opportunities<br />\\nAdditional Opportunities in El Paso, Texas<br />\\n<br />\\nEqual Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br />\\n<br />\\nDisclaimer: Sensitive and personal data will not be requested until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/13/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street, Suite 4650\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19407,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Real Estate/Property Management\",\n                                \"id\": 1009065\n                            },\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 1005852\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Land Acquisition Analyst</strong><br>\\nAre you a driven and self-motivated individual seeking a career in real estate development? Our client in Downtown Dallas is looking for a Land Acquisition Analyst to join their team permanently. Join a company that values excellence and offers exciting opportunities for growth in the capital-intensive industry.!<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nThis established firm concentrates on land acquisition across residential, commercial, and mixed-use development projects, playing a key role in building thriving, sustainable communities throughout high-growth markets.<br>\\n<br>\\n<strong>Land Acquisition Analyst Role:</strong><br>\\nSite Identification & Market Research<br>\\nIdentify and evaluate potential land acquisition opportunities in target markets for data center and industrial development<br>\\nConduct comprehensive market analysis including supply/demand dynamics, competitive landscape, and pricing trends<br>\\nUtilize GIS mapping tools and demographic analysis to assess site suitability and market potential<br>\\nMonitor zoning changes, development plans, and infrastructure improvements that may impact acquisition strategies<br>\\nFinancial Analysis & Modeling<br>\\nDevelop detailed financial models to evaluate acquisition opportunities, including land cost analysis, development feasibility, and ROI projections<br>\\nPrepare comprehensive investment memorandums and presentations for senior management and stakeholders<br>\\nAnalyze comparable sales data and market trends to establish fair market valuations<br>\\nAssess development costs, including infrastructure requirements, permitting fees, and construction timelines<br>\\nDue Diligence & Risk Assessment<br>\\nCoordinate and oversee comprehensive due diligence processes including environmental assessments, title reviews, and survey analysis<br>\\nIdentify and evaluate potential risks including environmental liabilities, regulatory constraints, and market volatility<br>\\nReview zoning compliance, building restrictions, and development capacity for industrial and data center specifications<br>\\nAssess utility availability and capacity for power, fiber, water, and telecommunications infrastructure critical to data center operations<br>\\nStakeholder Management & Negotiation Support<br>\\nCoordinate with municipal planning departments, utility providers, and regulatory agencies<br>\\nSupport negotiation efforts by providing market data, comparable analysis, and risk assessments<br>\\nMaintain relationships with brokers, landowners, and development partners in target markets<br>\\nDocumentation & Reporting<br>\\nPrepare detailed site evaluation reports, market analyses, and acquisition recommendations<br>\\nMaintain comprehensive databases of potential acquisition targets, market data, and transaction history<br>\\nCreate regular market updates and pipeline reports for senior management<br>\\nEnsure all documentation meets company standards and regulatory requirements<br>\\n<br>\\n<strong>Land Acquisition Analyst Profile:</strong><br>\\nBachelorâ\\u0080\\u0099s degree in civil engineering, real estate development, urban planning, land development, or a related field is preferred.<br>\\n2+ years of experience in land acquisition or development, with a strong focus on utility projects.<br>\\nKnowledge of entitlement processes, zoning laws, and development regulations.<br>\\nExcellent verbal and written skills for interacting with teams, stakeholders, and regulatory agencies.<br>\\nManage multiple tasks with strong attention to detail and organizational skills.<br>\\nManage complex information accurately across all reports and assessments.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nComprehensive health insurance coverage<br>\\nPTO<br>\\nPerformance-based bonuses<br>\\nProfessional development and career advancement opportunities<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Â Candidates must be authorized to work in the United States without sponsorship. Â The client cannot sponsor any visas.Â <br>\\n<br>\\n<em>Disclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.</em>\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/13/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Emily\",\n                        \"lastName\": \"Adamson\",\n                        \"id\": 911853\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Land Acquisition Analyst\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79932\",\n                        \"city\": \"El Paso\",\n                        \"address1\": \"6351 S Desert Blvd #210\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19406,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Frontline Source Group, a leading dental staffing agency, is seeking qualified dentists to fill two exciting positions with a top-tier practice focused on career advancement and growth!<br />\\n<br />\\nAre you a passionate new graduate ready to make your mark in dentistry? Or an experienced dentist seeking a dynamic, growth-oriented environment? This is your chance to join a booming dental practice in El Paso, TX that's revolutionizing patient care!<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nSuccessful and growing dental practice!<br />\\n25K Sign on &amp; 5K Relocation bonus!!&nbsp;<br />\\nAggressive pay and partnership opportunity!<br />\\n<br />\\n<strong>Dentist Role:</strong><br />\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br />\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br />\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br />\\nAddress issues related to bite alignment and dental overcrowding.<br />\\nApply dental agents such as sealants and whiteners.<br />\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br />\\nAdminister sedatives or anesthesia as required prior to procedures.<br />\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br />\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br />\\nMaintain detailed records of patient oral health and treatment history.<br />\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br />\\n<br />\\n<strong>Dentist Background Profile:</strong><br />\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br />\\nValid state license and malpractice insurance.<br />\\nAdditional certifications or licenses may be required based on specific needs.<br />\\nProficiency in computer applications and healthcare databases.<br />\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br />\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br />\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br />\\nEffective management and leadership abilities.<br />\\n<br />\\n<strong>Features and Benefits:</strong><br />\\n25K Sign on Bonus<br />\\n5K Relocation Bonus&nbsp;<br />\\n2K CE Bonus&nbsp;<br />\\n1K Daily Guarantee&nbsp;<br />\\nFuture Partnership opportunities<br />\\nAdditional Opportunities in Midland, Texas<br />\\n<br />\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br />\\n<br />\\nDisclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/13/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"79911\",\n                        \"city\": \"El Paso\",\n                        \"address1\": \"123 Main Street\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19399,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Healthcare - Dental\",\n                                \"id\": 2000003\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Dentist</strong><br>\\nOur busy and growing client in El Paso, TX is looking for a Dentist on a direct hire basis.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nSuccessful and growing dental practice!<br>\\n<br>\\n<strong>Dentist Role:</strong><br>\\nThe Dentist must demonstrate compassion, effective communication, and proficiency in diagnosing and treating dental conditions. Additionally, a dentist should possess advanced skills in using dental tools and performing procedures necessary to address dental issues and maintain patient oral health.<br>\\nEngage with patients to address and manage dental concerns, conduct routine cleanings and preventive care, and develop strategies for improved dental hygiene.<br>\\nExecute various dental procedures including extractions, root canals, and cavity fillings.<br>\\nAddress issues related to bite alignment and dental overcrowding.<br>\\nApply dental agents such as sealants and whiteners.<br>\\nPrescribe medications for dental conditions, including pain relief and antibiotics.<br>\\nAdminister sedatives or anesthesia as required prior to procedures.<br>\\nOrder and interpret diagnostic tests, including x-rays and dental models.<br>\\nUtilize instruments such as drills, probes, brushes, and mirrors for examination and treatment of teeth and oral structures.<br>\\nMaintain detailed records of patient oral health and treatment history.<br>\\nCoordinate with other healthcare professionals and staff to ensure comprehensive patient care.<br>\\n<br>\\n<strong>Dentist Background Profile:</strong><br>\\nDoctorate in Dental Surgery (DDS) or Dental Medicine (DMD).<br>\\nValid state license and malpractice insurance.<br>\\nAdditional certifications or licenses may be required based on specific needs.<br>\\nProficiency in computer applications and healthcare databases.<br>\\nAdherence to local, state, and federal regulations governing dental and healthcare practices.<br>\\nStrong written and verbal communication skills with the ability to maintain accurate records.<br>\\nExtensive knowledge of dental procedures, tools, and diagnostic techniques.<br>\\nEffective management and leadership abilities.<br>\\n<br>\\n<strong>Features and Benefits:</strong><br>\\nOpportunity to participate in an outstanding benefits package!<br>\\n<br>\\nFrontline Source Group is an Equal Opportunity Employer. Candidates must be authorized to work in the United States without sponsorship. The client cannot sponsor any visas.<br>\\n<br>\\n<em>Disclaimer: Sensitive and personal data will not be requested by Frontline Source Group or its affiliates until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.</em>\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/10/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Bill\",\n                        \"lastName\": \"Kasko\",\n                        \"id\": 25\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Dentist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75202\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"901 Main Street, Suite 4650\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19397,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Finance/Financial Services\",\n                                \"id\": 1404224\n                            },\n                            {\n                                \"name\": \"Sales\",\n                                \"id\": 1009070\n                            }\n                        ],\n                        \"total\": 2\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"Are you a driven and self-motivated individual seeking a career in real estate development? Our client in Downtown Dallas is looking for a Capital Investment Specialist to join their team permanently. Join a company that values excellence and offers exciting opportunities for growth in the capital-intensive industry.<br>\\n<br>\\n<strong>Company Profile:</strong><br>\\nThis established firm concentrates on land acquisition across residential, commercial, and mixed-use development projects, playing a key role in building thriving, sustainable communities throughout high-growth markets.<br>\\n<br>\\n<strong>Capital Investment Specialist Role:Â </strong><br>\\nDesign and execute comprehensive capital-raising strategies aligned with organizational financial objectives and expansion goals<br>\\nLeverage Follow Up Boss CRM system to manage investor pipeline and track conversion metrics<br>\\nForge meaningful investor partnerships while showcasing compelling project investment opportunities<br>\\nCultivate and sustain robust connections with diverse funding sources including venture capital firms, angel investor networks, and institutional investment groups<br>\\nServe as primary liaison managing all communications between the organization and existing/prospective investor base<br>\\nDeliver compelling presentations highlighting company value propositions, financial performance metrics, and growth trajectory to qualified prospects<br>\\nExecute comprehensive market analysis to identify qualified investors and emerging funding opportunities<br>\\nMonitor industry developments and investment market conditions to strategically position the company<br>\\nFacilitate due diligence processes by providing investors with comprehensive documentation and project information<br>\\nEnsure full regulatory compliance and adherence to legal requirements throughout all fundraising activities<br>\\nDocument all fundraising initiatives, investor communications, and relationship management activities<br>\\nGenerate detailed progress reports and performance analytics for executive leadership team<br>\\nParticipate in industry conferences, networking functions, and competitive pitch events to expand investor network<br>\\nActivate personal and professional relationships to identify and engage potential funding sources<br>\\n<br>\\n<strong>Capital Investment Specialist Background Profile:</strong><br>\\nBachelors degree<br>\\n4+ years demonstrated experience in capital raising, venture capital, or comparable investment fields<br>\\nDocumented success in capital acquisition and investment portfolio management<br>\\nAdvanced analytical and financial modeling capabilities<br>\\nExceptional verbal and written communication, negotiation, and presentation abilities<br>\\nProven ability to excel both independently and collaboratively in high-pressure, fast-moving environments<br>\\nDemonstrated expertise in developing and executing successful fundraising methodologies<br>\\nUnwavering commitment to professional integrity and ethical business practices<br>\\nNatural ability to articulate compelling investment visions and generate investor enthusiasm<br>\\n<br>\\n<strong>Features and Benefits of Client:</strong><br>\\nComprehensive health insurance coverage<br>\\nPTO<br>\\nPerformance-based bonuses tied to successful capital raising achievements<br>\\nProfessional development and career advancement opportunities<br>\\n<br>\\nEqual Opportunity Employer. Â Candidates must be authorized to work in the United States without sponsorship. Â The client cannot sponsor any visas.Â <br>\\n<br>\\nDisclaimer: Sensitive and personal data will not be requested until a job offer is made and accepted. If you ever doubt the validity of our job postings, we encourage you to call one of our branch locations to verify the status on any job.<br>\\nÂ \",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"06/09/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Lindsey\",\n                        \"lastName\": \"Davidson\",\n                        \"id\": 1115234\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Capital Investment Specialist\",\n                    \"api_request_custom\": {\n                        \"customText4\": null\n                    }\n                },\n                {\n                    \"department\": \"\",\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"company_name\": \"\",\n                    \"experience\": \"\",\n                    \"category_id\": \"\",\n                    \"post_id\": \"\",\n                    \"url\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"75234\",\n                        \"city\": \"Dallas\",\n                        \"address1\": \"1605 LBJ Fwy, Ste 700\",\n                        \"state\": \"TX\",\n                        \"address2\": \"\"\n                    },\n                    \"id\": 19363,\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 1404223\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"location\": \"\",\n                    \"date_modified\": \"\",\n                    \"location_id\": \"\",\n                    \"requirements\": \"\",\n                    \"description\": \"<strong>Accounting Manager</strong><br />\\nOur client, a growing insurance firm located in Dallas, TX is searching for an Accounting Manager. This is a Direct Hire Opportunity!<br />\\n<br />\\n<strong>Company Profile:</strong><br />\\nThis company is a well-established player in the insurance and reinsurance industry, recognized for its commitment to compliance, innovation, and operational excellence.<br />\\nThe company continues to evolve by adapting to regulatory changes and expanding its lines of business through strategic acquisitions and partnerships.<br />\\n<br />\\n<strong>Accounting Manager Role:</strong><br />\\nAccounting Manager will assist in the preparation and review of quarterly and annual statutory statements (Blue Books), including schedules and exhibits in accordance with statutory accounting principles (SAP). Review monthly journal entries.<br />\\nReview monthly, quarterly, and annual financial statements.<br />\\nAccounting Manager will prepare or review monthly &amp; quarterly general ledger account reconciliations and analyses to research variances for resolution.<br />\\nAssist in the coordination of GAAP and STAT Audits.<br />\\nReview creation of State Pages, State Premium Tax Returns, and other state regulatory filings (Federal/State Income Tax Withheld, Unclaimed Property Filings, etc.).<br />\\nCoordinate submission of all statutory reports and meet deadlines.<br />\\nAssist with the implementation of new regulatory requirements; new lines of business and acquisitions; new reinsurance partners (assumed/ceded).<br />\\nAccounting Manager will work with state examiners, external auditors, and senior management.<br />\\nDaily cash management as needed (backup mainly).<br />\\nKeep current with emerging or newly released or updated NAIC accounting standards.<br />\\nContribute ideas that strengthen internal procedures and efficiencies.<br />\\n<br />\\n<strong>Accounting Manager Background Profile:</strong><br />\\nBachelorâ\\u0080\\u0099s degree in Accounting or Business Administration with a concentration in Accounting<br />\\nCPA-certified or eligible candidate preferred<br />\\n10 years of Accounting Experience<br />\\n5 plus years of recent experience in Insurance Financial Accounting and Statutory Reporting required, open to life, accident/health, or property/casualty<br />\\nStrong US statutory insurance/reinsurance accounting and regulatory reporting knowledge<br />\\nExperience in the preparation and review of Life insurance company financial statements on statutory basis required<br />\\nGAAP basis reporting is preferred but not required<br />\\nGood organizational and referencing skills related to work papers, financial statements, and schedules prepared.<br />\\nExcellent personal computer skills, including MS Office including Excel, Word, Outlook&nbsp;<br />\\nExcel proficiency is a plus<br />\\nModel Audit Rule compliance<br />\\n<br />\\n<strong>Features and Benefits of Client:</strong><br />\\nMedical Insurance, Dental Insurance, Vision Insurance<br />\\nPaid parking<br />\\nGym membership<br />\\nBasic Life and AD&amp;D Insurance<br />\\nVoluntary Life and AD&amp;D Insurance<br />\\nLong Term Disability Insurance<br />\\nDiscount Card Benefits Program<br />\\nFlexible Spending Accounts â\\u0080\\u0093 Medical &amp; Dependent Care<br />\\n401(k) Plan<br />\\n&nbsp;\",\n                    \"hot_job\": \"\",\n                    \"branch\": \"\",\n                    \"dept_id\": \"\",\n                    \"date_added\": \"05/05/2025\",\n                    \"reply_to\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Fatima\",\n                        \"lastName\": \"Akhtar\",\n                        \"id\": 1697370\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"title\": \"Accounting Manager\",\n                    \"api_request_custom\": {\n                        \"customText4\": \"1\"\n                    }\n                }\n            ],\n            \"count\": 70\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobOrder\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.25754\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-11-04T10:26:22\",\n            \"APIKEY\": \"57339d02e60048c5accc3e1a27c083f6\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"70 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": null,\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest40.bullhornstaffing.com/rest-services/q06u9/query/JobOrder?meta=off&count=100&showEditable=false&where=isDeleted=false AND isOpen=true AND isPublic=1&BhRestToken=6609_5852200_e6582e04-b631-4e51-861b-737502e8dd5d&fields=payRate,categories,address,id,customText4,publicDescription,employmentType,title,status,dateAdded,responseUser&showTotalMatched=false&orderBy=-id&start=100\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.371797\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"70 jobs returned\"\n}"}],"_postman_id":"228fb884-00ba-48cd-81b3-71733a2ae161"},{"name":"Job Get By ID","id":"f277d667-30ed-4d6b-be04-a24b2bfb644f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":0,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n\t\t\t\"id\": 729702\n    \t},\n        \"api_request_fields\":\"type,isPublic,isOpen,correlatedCustomText5\"\n    }\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving specific job data.</p>\n\n<p><b>NOTE: You may also (instead of in the URL) add the job ID to the 'api_request_data' hash as \"id\"</b></p>\n<ul>\n<li><p>id - <b>OPTIONAL</b> - required if not in URL</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"id\": 4\n        }\n    }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7754eac6-041c-43bc-b87e-ed1d847ec25e","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n\t\t\t\"id\": 106220\n    \t}\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 23:17:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1818"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199894"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<h2><b>Our clients need help with social media and content marketing!</b></h2>\\r\\n\\r\\n<p>As a Social Media Marketing Advisor, you&#39;ll work directly with our clients on the implementation of blogging and social media marketing campaigns. You&#39;ll be in charge of developing a content marketing strategy, managing our writing team, analyzing results and consulting our clients on social media and marketing best practices.</p>\\r\\n\\r\\n<p><b>Key Responsibilities:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Ensure the success of our client&#39;s marketing efforts.</li>\\r\\n\\t<li>Develop marketing recommendations.</li>\\r\\n\\t<li>Plan content for client blogs.</li>\\r\\n\\t<li>Set-up and manage client accounts on LinkedIn, Facebook, Twitter and other social media outlets.</li>\\r\\n\\t<li>Train and direct the activities of writers.</li>\\r\\n\\t<li>Edit blog posts and optimize posts for search engines.</li>\\r\\n\\t<li>Analyze Google Analytics and adjust client plans accordingly.</li>\\r\\n\\t<li>Make sure our clients are thrilled with our service.</li>\\r\\n</ul>\\r\\n\\r\\n<div>\\r\\n<div><a href=\\\"http://jobs.haleymarketing.com/Social-Media-Marketing-Advisor-Jobs-in-Williamsville-NY/1605368#collapseTwo\\\">Job Requirements</a></div>\\r\\n\\r\\n<div>\\r\\n<div>\\r\\n<p><b>Minimum Requirements:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Exceptional verbal and written communication skills.</li>\\r\\n\\t<li>In-depth knowledge of social media marketing.</li>\\r\\n\\t<li>Experienced blog or marketing copywriter.</li>\\r\\n\\t<li>2 or more years in marketing or a customer service role.</li>\\r\\n\\t<li>Experience managing client projects or relationships.</li>\\r\\n\\t<li>Understanding of search engine optimization (SEO).</li>\\r\\n</ul>\\r\\n\\r\\n<p><b>Our Ideal Candidate:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Very intelligent.</li>\\r\\n\\t<li>Detail oriented.</li>\\r\\n\\t<li>Well organized.</li>\\r\\n\\t<li>Able to handle a large client load (up to 50 clients).</li>\\r\\n\\t<li>100% track record of success.</li>\\r\\n\\t<li>Caring. Patient. Committed to excellence.</li>\\r\\n\\t<li>Passionate about social media and customer service.</li>\\r\\n\\t<li>Embraces change.</li>\\r\\n\\t<li>Quick learner.</li>\\r\\n\\t<li>Doesn&#39;t need to be micro-managed.</li>\\r\\n\\t<li>Meets deadlines.</li>\\r\\n\\t<li>Able to easily relate to others from from line staff to CEOs.</li>\\r\\n\\t<li>Interesting in learning about and using new technology.</li>\\r\\n</ul>\\r\\n</div>\\r\\n</div>\\r\\n</div>\\r\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"01/07/2016\",\n                    \"url\": \"\",\n                    \"id\": 4,\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"type\": \"Contract\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 847390\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14510\",\n                        \"city\": \"Mt. Morris\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Social Media Marketing Advisor\"\n                }\n            ],\n            \"count\": 1\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobOrder\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.555369\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T23:17:11\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/query/JobOrder?count=100&showEditable=false&meta=off&where=isDeleted=false AND isOpen=true AND id=4 AND isPublic=1&showTotalMatched=false&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.614752\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"f277d667-30ed-4d6b-be04-a24b2bfb644f"},{"name":"Job Search","id":"62a486a8-6b6a-4084-9661-aecde1fdf861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\": {\n        \"api_connection\": {\n            \"api_un\": \"{{api_un}}\",\n            \"api_pw\": \"{{api_pw}}\",\n            \"api_id\": \"{{api_id}}\",\n            \"api_secret\": \"{{api_secret}}\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"api_sandbox\": 1,\n        \"api_performance_dump\": 0,\n        \"api_verbose_dump\": 0\n    },\n    \"api_request_data\": {\n        \"api_request_query\": {\n            \"search_range\": {\n                \"field\": \"dateAdded\",\n                \"value_1\": \"01/18/2012\",\n                \"value_2\": \"12/27/2019\"\n            }\n        }\n    }\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching a specific search criteria. NOTE: will accept default keys as well as ATS specific fields</p>\n\n<p><b>NOTE:</b> There are two kinds of search filters:</p>\n\n<p><b>Range Search:</b></p>\n\n<pre>\n            \"api_request_query\":{\n                        \"search_range\":{\n                                    \"field\":\"createddate\",\n                                    \"value_1\":\"01/18/2016\",\n                                    \"value_2\":\"09/05/2016\"\n                        }\n            }\n</pre>\n\n<pre>\n            \"api_request_query\":{\n                        \"search_range\":{\n                                    \"field\":\"job_title\",\n                                    \"value_1\":\"Test1\",\n                                    \"value_2\":\"Test5\"\n                        }\n            }\n</pre>\n\n<p><b>Filter Matching:</b></p>\n\n<pre>\n            \"api_request_query\":{\n                        \"job_title\":\"Test Job #1\",\n                        \"createddate\":\"01/18/2016\"\n            }\n</pre>\n\n<ul>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n<li><p>api_request_query - <b>REQUIRED</b> - hash with key:value pairs signifying the values the call wants to query (custom API fields allowed)</p>\n</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a3a1b6a9-b089-4002-81c2-f78511d40338","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n    \t\n        \"api_request_query\":{\n                \"search_range\":{\n                            \"field\":\"dateAdded\",\n                            \"value_1\":\"01/18/2012\",\n                            \"value_2\":\"12/27/2019\"\n                }\n    }\n    }\n}\n"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 23:18:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3679"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199897"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<h2><b>Our clients need help with social media and content marketing!</b></h2>\\r\\n\\r\\n<p>As a Social Media Marketing Advisor, you&#39;ll work directly with our clients on the implementation of blogging and social media marketing campaigns. You&#39;ll be in charge of developing a content marketing strategy, managing our writing team, analyzing results and consulting our clients on social media and marketing best practices.</p>\\r\\n\\r\\n<p><b>Key Responsibilities:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Ensure the success of our client&#39;s marketing efforts.</li>\\r\\n\\t<li>Develop marketing recommendations.</li>\\r\\n\\t<li>Plan content for client blogs.</li>\\r\\n\\t<li>Set-up and manage client accounts on LinkedIn, Facebook, Twitter and other social media outlets.</li>\\r\\n\\t<li>Train and direct the activities of writers.</li>\\r\\n\\t<li>Edit blog posts and optimize posts for search engines.</li>\\r\\n\\t<li>Analyze Google Analytics and adjust client plans accordingly.</li>\\r\\n\\t<li>Make sure our clients are thrilled with our service.</li>\\r\\n</ul>\\r\\n\\r\\n<div>\\r\\n<div><a href=\\\"http://jobs.haleymarketing.com/Social-Media-Marketing-Advisor-Jobs-in-Williamsville-NY/1605368#collapseTwo\\\">Job Requirements</a></div>\\r\\n\\r\\n<div>\\r\\n<div>\\r\\n<p><b>Minimum Requirements:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Exceptional verbal and written communication skills.</li>\\r\\n\\t<li>In-depth knowledge of social media marketing.</li>\\r\\n\\t<li>Experienced blog or marketing copywriter.</li>\\r\\n\\t<li>2 or more years in marketing or a customer service role.</li>\\r\\n\\t<li>Experience managing client projects or relationships.</li>\\r\\n\\t<li>Understanding of search engine optimization (SEO).</li>\\r\\n</ul>\\r\\n\\r\\n<p><b>Our Ideal Candidate:</b></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Very intelligent.</li>\\r\\n\\t<li>Detail oriented.</li>\\r\\n\\t<li>Well organized.</li>\\r\\n\\t<li>Able to handle a large client load (up to 50 clients).</li>\\r\\n\\t<li>100% track record of success.</li>\\r\\n\\t<li>Caring. Patient. Committed to excellence.</li>\\r\\n\\t<li>Passionate about social media and customer service.</li>\\r\\n\\t<li>Embraces change.</li>\\r\\n\\t<li>Quick learner.</li>\\r\\n\\t<li>Doesn&#39;t need to be micro-managed.</li>\\r\\n\\t<li>Meets deadlines.</li>\\r\\n\\t<li>Able to easily relate to others from from line staff to CEOs.</li>\\r\\n\\t<li>Interesting in learning about and using new technology.</li>\\r\\n</ul>\\r\\n</div>\\r\\n</div>\\r\\n</div>\\r\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"01/07/2016\",\n                    \"url\": \"\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"type\": \"Contract\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 847390\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"id\": 4,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14510\",\n                        \"city\": \"Mt. Morris\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Social Media Marketing Advisor\",\n                    \"api_request_custom\": {\n                        \"_score\": 1\n                    }\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<p><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">Video Link Here</a></p>\\n\\n<p>This position is a high level manager for a prominent organization that has been well recognized throughout the region.&nbsp; They are seeking a top level manager overseeing a staff of 50-80.&nbsp; This individual will report directly to the COO.&nbsp; They do not have to be from a specific industry, but it is beneficial to come from a high end professional services organization.&nbsp; Good examples are CPA firms, Engineering, Legal, and Financial Services industries.&nbsp; They are seeking an individual who can implement new ways to increase staff efficiency.&nbsp; They will be responsible for knowing the skill sets of all support staff in order to balance workloads and any necessary training.&nbsp; Through overseeing the secretarial staff heavy employee relations will be involved.&nbsp; This position will also oversee any facilities management and act as a liaison to building management.&nbsp;<br />\\n&nbsp;<br />\\nThis position offers highly competitive pay plus a full range of benefits.</p>\\n\\n<p><strong>Requirements</strong>:</p>\\n\\n<ul>\\n\\t<li>Bachelor Degree Required</li>\\n\\t<li>Experience managing a large administrative staff</li>\\n\\t<li>Experience in Professional Services is Recommended</li>\\n\\t<li>Ability to Identify New Processes to Drive Efficiencies</li>\\n\\t<li>Adopt and Initiate Change</li>\\n</ul>\\n\\n<p>They are an Equal opportunity employer; all resumes will be held in confidence.</p>\\n\\n<p>&nbsp;</p>\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"10/02/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Admin - Clerical\",\n                                \"id\": 847392\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"id\": 3,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"11111\",\n                        \"city\": \"Cincinnati\",\n                        \"address1\": \"\",\n                        \"state\": \"OH\"\n                    },\n                    \"title\": \"Office Manager\",\n                    \"api_request_custom\": {\n                        \"_score\": 1\n                    }\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<DIV>\\r\\n<DIV class=accordion-group>\\r\\n<DIV id=collapseOne class=\\\"accordion-body collapse in\\\">\\r\\n<DIV class=accordion-inner itemprop=\\\"description\\\">\\r\\n<P><STRONG>Our clients need help with social media and content marketing!</STRONG></P>\\r\\n<P>As a Social Media Marketing Advisor, you'll work directly with our clients on the implementation of blogging and social media marketing campaigns. You'll be in charge of developing a content marketing strategy, managing our writing team, analyzing results and consulting our clients on social media and marketing best practices. </P>\\r\\n<P><STRONG>Key Responsibilities:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Ensure the success of our client's marketing efforts.</LI>\\r\\n<LI>Develop marketing recommendations.</LI>\\r\\n<LI>Plan content for client blogs.</LI>\\r\\n<LI>Set-up and manage client accounts on LinkedIn, Facebook, Twitter and other social media outlets.</LI>\\r\\n<LI>Train and direct the activities of writers.</LI>\\r\\n<LI>Edit blog posts and optimize posts for search engines.</LI>\\r\\n<LI>Analyze Google Analytics and adjust client plans accordingly.</LI>\\r\\n<LI>Make sure our clients are thrilled with our service.</LI></UL></DIV></DIV></DIV>\\r\\n<DIV class=accordion-group>\\r\\n<DIV class=accordion-heading><A class=\\\"accordion-toggle active-accord\\\" href=\\\"http://jobs.haleymarketing.com/Social-Media-Marketing-Advisor-Jobs-in-Williamsville-NY/1605368#collapseTwo\\\" data-toggle=\\\"collapse\\\"><I class=icon-accordion></I>Job Requirements</A></DIV>\\r\\n<DIV id=collapseTwo class=\\\"accordion-body collapse in\\\">\\r\\n<DIV class=accordion-inner itemprop=\\\"experienceRequirements\\\">\\r\\n<P><STRONG>Minimum Requirements:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Exceptional verbal and written communication skills.</LI>\\r\\n<LI>In-depth knowledge of social media marketing. </LI>\\r\\n<LI>Experienced blog or marketing copywriter.</LI>\\r\\n<LI>2 or more years in marketing or a customer service role.</LI>\\r\\n<LI>Experience managing client projects or relationships.</LI>\\r\\n<LI>Understanding of search engine optimization (SEO).</LI></UL>\\r\\n<P><STRONG>Our Ideal Candidate:</STRONG></P>\\r\\n<UL>\\r\\n<LI>Very intelligent.</LI>\\r\\n<LI>Detail oriented.</LI>\\r\\n<LI>Well organized.</LI>\\r\\n<LI>Able to handle a large client load (up to 50 clients).</LI>\\r\\n<LI>100% track record of success.</LI>\\r\\n<LI>Caring. Patient. Committed to excellence. </LI>\\r\\n<LI>Passionate about social media and customer service.</LI>\\r\\n<LI>Embraces change.</LI>\\r\\n<LI>Quick learner.</LI>\\r\\n<LI>Doesn't need to be micro-managed.</LI>\\r\\n<LI>Meets deadlines.</LI>\\r\\n<LI>Able to easily relate to others from from line staff to CEOs.</LI>\\r\\n<LI>Interesting in learning about and using new technology. </LI></UL></DIV></DIV></DIV></DIV>\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"09/18/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Other Area(s)\",\n                                \"id\": 846574\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Direct Hire\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Marketing\",\n                        \"id\": 2\n                    },\n                    \"id\": 2,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14221\",\n                        \"city\": \"Williamsville\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Social Media Marketing -- Advisor\",\n                    \"api_request_custom\": {\n                        \"_score\": 1\n                    }\n                },\n                {\n                    \"pay_rate\": \"0.00\",\n                    \"status\": \"Accepting Candidates\",\n                    \"description\": \"<p><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">https://vimeo.com/358903576/e0ca47c763</a></p>\\n\\n<div>Responsible for providing accounting support to accounting supervisors and other managers within the department. Keys daily worksheets to the general ledger system, ensures files are complete and maintained as needed, handles accounts payable duties, and assists accounting personnel.</div>\\n\\n<div>&nbsp;</div>\\n\\n<div><strong>Primary responsibilities</strong></div>\\n\\n<ul>\\n\\t<li>\\n\\t<div>Perform accounting and clerical functions to support supervisors.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Research, track, and resolve accounting problems.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Compile and sort invoices and checks.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Issue checks for accounts payable.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Place checks in envelopes and mail out.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Record business transactions and key daily worksheets to the general ledger system.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Record charges and refunds.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Support accounting personnel.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Input type vouchers, invoices, checks, account statements, reports, and other records.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Provide front desk customer service.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>File and tally deposits.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Work with adding machines, calculators, databases and bank accounts.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Match invoices to work orders.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Process bills for payment.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Open mail and match payments to invoices.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Arrange for money to be delivered to bank.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Utilize computer systems to run databases, pay bills and order supplies.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Contact individuals with delinquent accounts.</div>\\n\\t</li>\\n\\t<li>\\n\\t<div>Ensure customers accept payments.</div>\\n\\t</li>\\n</ul>\\n\\n<div><a href=\\\"https://vimeo.com/358903576/e0ca47c763\\\" target=\\\"_blank\\\">Video Link Here</a></div>\\n\",\n                    \"reply_to\": \"\",\n                    \"date_added\": \"08/27/2013\",\n                    \"url\": \"\",\n                    \"category\": {\n                        \"data\": [\n                            {\n                                \"name\": \"Accounting\",\n                                \"id\": 847390\n                            }\n                        ],\n                        \"total\": 1\n                    },\n                    \"type\": \"Contract\",\n                    \"rep_user\": {\n                        \"firstName\": \"Haley\",\n                        \"lastName\": \"Test\",\n                        \"id\": 72\n                    },\n                    \"id\": 1,\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"14094\",\n                        \"city\": \"Lockport\",\n                        \"address1\": \"test\",\n                        \"state\": \"NY\"\n                    },\n                    \"title\": \"Job 1\",\n                    \"api_request_custom\": {\n                        \"_score\": 1\n                    }\n                }\n            ],\n            \"count\": 4\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"JobOrder\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.259083\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-09T23:18:55\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"4 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/JobOrder?count=500&query=isDeleted:false AND dateAdded:[20120118 TO 20191227] AND isOpen:true AND isPublic:1&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.902963\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"4 jobs returned\"\n}"}],"_postman_id":"62a486a8-6b6a-4084-9661-aecde1fdf861"}],"id":"bfff9acc-5595-407f-980b-cf84529d902c","_postman_id":"bfff9acc-5595-407f-980b-cf84529d902c","description":""},{"name":"Lead","item":[{"name":"Lead Get","id":"1e6ef093-8535-44fb-bfb4-2f1e88cd410f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{                        \n                    \"email\": \"spano@pridestaff.com\"\n                }\n    }\n}"},"url":"{{ats-connect}}/lead/get","description":"<p>For retrieving leads.</p>\n\n<ul>\n<li>api_request_fields - <b>OPTIONAL</b></li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                }        \n    }\n</pre>","urlObject":{"path":["lead","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"dae09067-7763-4324-86f8-9134bba96dc4","name":"Lead Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{                        \n                    \"email\": \"leadthis@leads.com\"\n                }\n    }\n}"},"url":"{{ats-connect}}/lead/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Jan 2021 15:47:01 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"913"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1807600"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/lead/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"lead\": [\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"New Lead\",\n                    \"report_to\": \"\",\n                    \"comments\": \"\",\n                    \"last_name\": \"\",\n                    \"opt_out\": \"\",\n                    \"email\": \"leadthis@leads.com\",\n                    \"assigned_to\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"id\": \"832\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"04563\",\n                        \"city\": \"Portland\",\n                        \"address1\": \"123 Testing Street\",\n                        \"address2\": \"\",\n                        \"state\": \"MAINE\"\n                    },\n                    \"owner\": {\n                        \"firstName\": \"Hayley Marketing\",\n                        \"lastName\": \"2017\",\n                        \"id\": 490\n                    },\n                    \"date_modified\": \"01/26/2021\",\n                    \"phone\": \"\",\n                    \"description\": \"\",\n                    \"cell_phone\": \"\",\n                    \"date_added\": \"01/26/2021\",\n                    \"campaign_source\": \"\",\n                    \"type\": \"\",\n                    \"candidates\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"lead_source\": \"\",\n                    \"contact_preference\": \"Phone\",\n                    \"first_name\": \"\"\n                }\n            ],\n            \"count\": 1\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Lead\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.957493\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2021-01-27T15:47:02\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 lead returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/search/Lead?count=100&query=isDeleted:false AND email:leadthis@leads.com&showEditable=false&meta=off&sort=-id&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.053419\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_lead\"\n    },\n    \"atsconnect_message\": \"1 lead returned\"\n}"}],"_postman_id":"1e6ef093-8535-44fb-bfb4-2f1e88cd410f"},{"name":"Lead Set","id":"48ef5eae-c52f-4e08-9785-1166dd6c9aba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{       \n                \"first_name\":\"Roger\",\n                \"last_name\":\"Rammy\",\n                \"email\": \"rammy@mailinator.com\",\n                \"opt_out\": 0,\n                \"type\": \"\"\n            }\n        }\n}"},"url":"{{ats-connect}}/lead/set","description":"<p>For creating a lead</p>\n<ul>\n<li><p>address1 - <strong>OPTIONAL</strong> - REQUIRED if address2, city, state, postal/zip code, or country is specified</p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong> - REQUIRED if address1, address2, state, postal/zip code, or country is specified</p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong> - REQUIRED if address1, address2, city, state, or country is specified</p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong> - REQUIRED if address1, address2, city, state, or postal/zip code is specified</p>\n</li>\n<li><p>assigned_to - <strong>OPTIONAL</strong> - CorporateUser(s) this Lead is assigned to.</p>\n</li>\n<li><p>campaign_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>candidates - <strong>OPTIONAL</strong> - Candidates associated with this Lead.</p>\n</li>\n<li><p>category - <strong>OPTIONAL</strong> - Lead’s primary Category.</p>\n</li>\n<li><p>categories - <strong>OPTIONAL</strong> - IDs of the Categories associated with the Lead. Note that the categoryId property is used to store the Lead’s primary Category, while this association hold that Category and any other Categories to which the Lead belongs.</p>\n</li>\n<li><p>contacts - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>client - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>comments - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>company_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>url - <strong>OPTIONAL</strong> - company URL</p>\n</li>\n<li><p>date_last_comment - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>date_visited - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>description <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>lead_source - <strong>OPTIONAL</strong> - Source of the Lead. For example, LinkedIn, Facebook, Marketing, and so forth. Defaults to Website</p>\n</li>\n<li><p>opt_out - <strong>OPTIONAL</strong> - Indicates whether the Lead has chosen not to be included in mass emails through the Bullhorn system</p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>owner - <strong>OPTIONAL</strong> - ID of the CorporateUser who is the owner of this Lead record.</p>\n</li>\n<li><p>contact_preference - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>report_to - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>status - <strong>OPTIONAL</strong> - Status of the lead; for example, New Lead, Active, Prospect, and so forth. Possible values can be configured using field maps. Defaults to New Lead</p>\n</li>\n<li><p>type - <strong>OPTIONAL</strong> - Describes the type of Lead. For example, Staffing, RFP/VOR, etc. Possible values can be configured using the field maps. Defaults to Staffing</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\":{\n            \"api_request_query\":{                          \n                \"category\":\"Boo\",                    \n                \"address1\":\"123 Testing Street\",\n                \"city\":\"Portland\",\n                \"state\":\"MAINE\",\n                \"zip\":\"04563\",\n                \"country\":\"Canada\",\n                \"status\": \"New Lead\",\n                \"url\": \"http://www.example.com\",\n                \"date_visited\": \"2021-01-01\",\n                \"email\": \"leadthis@leads.com\",\n                \"opt_out\": 0\n        }\n }\n\n</code></pre>","urlObject":{"path":["lead","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"77d087d5-138b-4b62-aa1b-f08a99f2176f","name":"Lead Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n \"api_request_data\":{\n            \"api_request_query\":{       \n                \"address1\":\"123 Testing Street\",\n                \"city\":\"Portland\",\n                \"state\":\"MAINE\",\n                \"zip\":\"04563\",\n                \"country\":\"United States\",\n                \"status\": \"Active\",\n                \"email\": \"leadthisaaa@leads.com\",\n                \"opt_out\": 1,\n                \"category\": 826,\n                \"type\": \"Staffing\"\n            }\n        }\n}"},"url":"{{ats-connect}}/lead/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Jan 2021 16:16:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"557"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"991554"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/lead/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 833\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Lead\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.520379\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2021-01-27T16:16:55\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 Lead added\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"email\\\":\\\"leadthisaaa@leads.com\\\",\\\"massMailOptOut\\\":\\\"1\\\",\\\"status\\\":\\\"Active\\\",\\\"type\\\":\\\"Staffing\\\",\\\"address\\\":{\\\"zip\\\":\\\"04563\\\",\\\"city\\\":\\\"Portland\\\",\\\"address1\\\":\\\"123 Testing Street\\\",\\\"state\\\":\\\"MAINE\\\"}}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/Lead?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.13222\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_lead\"\n    },\n    \"atsconnect_message\": \"1 Lead added\"\n}"}],"_postman_id":"48ef5eae-c52f-4e08-9785-1166dd6c9aba"}],"id":"8a0b392a-0529-4aae-91f8-ee07fe6afa3a","_postman_id":"8a0b392a-0529-4aae-91f8-ee07fe6afa3a","description":""},{"name":"Placement","item":[{"name":"Placement Get","id":"7805df2e-492c-488c-9839-b040db22b897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"job_order\":{\"id\":8}\n        }\n    }\n}"},"url":"{{ats-connect}}/placement/get","description":"<p>For retrieving job placements by Candidate or JobOrder.</p>\n\n<ul>\n<li><p>candidate - <b>OPTIONAL</b> - REQUIRED if jobOrder is not specified</p>\n<ul>\n<li>id - <b>OPTIONAL</b> - REQUIRED if candidate is specified</li>\n</ul>\n</li>\n<li><p>job_order - <b>OPTIONAL</b> - REQUIRED if candidate is not specified</p>\n<ul>\n<li>id - <b>OPTIONAL</b> - REQUIRED if jobOrder is specified</li>\n</ul>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"candidate\":{\"id\": 2}\n                }        \n    }\n</pre>","urlObject":{"path":["placement","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ed631668-32e2-48b7-89b1-48e618a89148","name":"Placement Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\":\"{{api_un}}\",\n\t\t\t\"api_pw\":\"{{api_pw}}\",\n\t\t\t\"api_id\":\"{{api_id}}\",\n\t\t\t\"api_secret\":\"{{api_secret}}\"\n        },\n        \"vendor\":\"bullhorn\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_request_query\":{\n            \"job_order\":{\"id\":8}\n        }\n    }\n}"},"url":"{{ats-connect}}/placement/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Jan 2021 23:44:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1028"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3184999"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/placement/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"placement\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"days_pro_rated\": \"\",\n                    \"comments\": \"None\",\n                    \"referral_fee\": \"\",\n                    \"address\": {},\n                    \"id\": 1,\n                    \"duration_weeks\": \"\",\n                    \"overtime_rate\": \"\",\n                    \"hours_per_day\": \"10\",\n                    \"employment_type\": \"Contract\",\n                    \"client_bill_rate\": \"\",\n                    \"date_effective\": \"01/21/2021\",\n                    \"recruiting_manager_percent_gross_margin\": \"\",\n                    \"status\": \"Submitted\",\n                    \"fee\": \"\",\n                    \"referral_fee_type\": \"Percentage\",\n                    \"client_overtime_rate\": \"\",\n                    \"days_guaranteed\": \"\",\n                    \"salary_unit\": \"\",\n                    \"hours_of_operation\": \"\",\n                    \"sales_manager_percent_gross_margin\": \"\",\n                    \"employee_type\": \"\",\n                    \"date_client_effective\": \"01/21/2021\",\n                    \"date_end\": \"01/25/2021\",\n                    \"date_modified\": \"01/21/2021\",\n                    \"job_order\": {\n                        \"title\": \"Test\",\n                        \"id\": 8\n                    },\n                    \"salary\": \"\",\n                    \"employment_start_date\": \"\",\n                    \"candidate\": {\n                        \"firstName\": \"Test\",\n                        \"lastName\": \"TEst\",\n                        \"id\": 99\n                    },\n                    \"date_added\": \"01/21/2021\",\n                    \"notes\": {\n                        \"data\": [],\n                        \"total\": 0\n                    },\n                    \"date_begin\": \"01/25/2021\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Placement\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.467234\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2021-01-25T23:44:10\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 placement returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/query/Placement?count=100&showEditable=false&meta=off&where=jobOrder.id=8&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"3.673077\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_placement\"\n    },\n    \"atsconnect_message\": \"1 placement returned\"\n}"}],"_postman_id":"7805df2e-492c-488c-9839-b040db22b897"}],"id":"e7dab134-4a76-4d8b-9d8d-43438525d34c","_postman_id":"e7dab134-4a76-4d8b-9d8d-43438525d34c","description":""},{"name":"Notes","item":[{"name":"Note Set","id":"701c7019-f9bf-46d9-b296-32eb790612f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 254,\r\n      \"comments\": \"THIS IS A TEST\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating candidate record</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> candidate ID</p>\n</li>\n<li><p>comments - <b>REQUIRED</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 254,\n      \"comments\": \"THIS IS A TEST\"\n    }\n  }\n</pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"14a4218b-5c8b-4f1e-a8ac-3ead7a7f9b88","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 254,\r\n      \"comments\": \"THIS IS A TEST\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 23:25:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"499"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199903"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 284\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Note\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.614382,\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-09T23:25:21\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Note set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"personReference\\\":{\\\"id\\\":254},\\\"action\\\":\\\"other\\\",\\\"comments\\\":\\\"THIS IS A TEST\\\"}\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/entity/Note?BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"0.65852\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Note set\"\n}"}],"_postman_id":"701c7019-f9bf-46d9-b296-32eb790612f0"}],"id":"f24be588-aa1e-4d5e-8c0c-c0090a2ac294","_postman_id":"f24be588-aa1e-4d5e-8c0c-c0090a2ac294","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"55a7fd5c-837e-4fcb-8f7e-2409b84b83da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\"file_data\": \"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cEhlaWdodCA3NTAvQXZnV2lkdGggNDg2L01heFdpZHRoIDEzMjIvRm9udFdlaWdodCA0MDAvWEhlaWdodCAyNTAvTGVhZGluZyAzNS9TdGVtViA0OC9Gb250QkJveFsgLTE2OSAtMjA4IDExNTIgNzUwXSAvRm9udEZpbGUyIDEwOCAwIFI+Pg0KZW5kb2JqDQo5IDAgb2JqDQo8PC9UeXBlL0V4dEdTdGF0ZS9CTS9Ob3JtYWwvQ0EgMT4+DQplbmRvYmoNCjEwIDAgb2JqDQo8PC9UeXBlL0ZvbnQvU3VidHlwZS9UcnVlVHlwZS9OYW1lL0YyL0Jhc2VGb250L0JDREZFRStDZW50dXJ5R290aGljLUJvbGQvRW5jb2RpbmcvV2luQW5zaUVuY29kaW5nL0ZvbnREZXNjcmlwdG9yIDExIDAgUi9GaXJzdENoYXIgMzIvTGFzdENoYXIgMTIxL1dpZHRocyAxMTQgMCBSPj4NCmVuZG9iag0KMTEgMCBvYmoNCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvQkNERkVFK0NlbnR1cnlHb3RoaWMtQm9sZC9GbGFncyAzMi9JdGFsaWNBbmdsZSAwL0FzY2VudCAxMDA2L0Rlc2NlbnQgLTIwOC9DYXBIZWlnaHQgNzUwL0F2Z1dpZHRoIDQ4NS9NYXhXaWR0aCAxMzc1L0ZvbnRXZWlnaHQgNzAwL1hIZWlnaHQgMjUwL0xlYWRpbmcgMTQvU3RlbVYgNDgvRm9udEJCb3hbIC0xMTUgLTIwOCAxMjYwIDc1MF0gL0ZvbnRGaWxlMiAxMTIgMCBSPj4NCmVuZG9iag0KMTIgMCBvYmoNCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1R5cGUwL0Jhc2VGb250L0JDREdFRStDZW50dXJ5R290aGljL0VuY29kaW5nL0lkZW50aXR5LUgvRGVzY2VuZGFudEZvbnRzIDEzIDAgUi9Ub1VuaWNvZGUgMTA3IDAgUj4+DQplbmRvYmoNCjEzIDAgb2JqDQpbIDE0IDAgUl0gDQplbmRvYmoNCjE0IDAgb2JqDQo8PC9CYXNlRm9udC9CQ0RHRUUrQ2VudHVyeUdvdGhpYy9TdWJ0eXBlL0NJREZvbnRUeXBlMi9UeXBlL0ZvbnQvQ0lEVG9HSURNYXAvSWRlbnRpdHkvRFcgMTAwMC9DSURTeXN0ZW1JbmZvIDE1IDAgUi9Gb250RGVzY3JpcHRvciAxNiAwIFIvVyAxMDkgMCBSPj4NCmVuZG9iag0KMTUgMCBvYmoNCjw8L09yZGVyaW5nKElkZW50aXR5KSAvUmVnaXN0cnkoQWRvYmUpIC9TdXBwbGVtZW50IDA+Pg0KZW5kb2JqDQoxNiAwIG9iag0KPDwvVHlwZS9Gb250RGVzY3JpcHRvci9Gb250TmFtZS9CQ0RHRUUrQ2VudHVyeUdvdGhpYy9GbGFncyAzMi9JdGFsaWNBbmdsZSAwL0FzY2VudCAxMDA2L0Rlc2NlbnQgLTIwOC9DYXBIZWlnaHQgNzUwL0F2Z1dpZHRoIDQ4Ni9NYXhXaWR0aCAxMzIyL0ZvbnRXZWlnaHQgNDAwL1hIZWlnaHQgMjUwL0xlYWRpbmcgMzUvU3RlbVYgNDgvRm9udEJCb3hbIC0xNjkgLTIwOCAxMTUyIDc1MF0gL0ZvbnRGaWxlMiAxMDggMCBSPj4NCmVuZG9iag0KMTcgMCBvYmoNCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1R5cGUwL0Jhc2VGb250L0JDREhFRStDZW50dXJ5R290aGljLUJvbGQvRW5jb2RpbmcvSWRlbnRpdHktSC9EZXNjZW5kYW50Rm9udHMgMTggMCBSL1RvVW5pY29kZSAxMTEgMCBSPj4NCmVuZG9iag0KMTggMCBvYmoNClsgMTkgMCBSXSANCmVuZG9iag0KMTkgMCBvYmoNCjw8L0Jhc2VGb250L0JDREhFRStDZW50dXJ5R290aGljLUJvbGQvU3VidHlwZS9DSURGb250VHlwZTIvVHlwZS9Gb250L0NJRFRvR0lETWFwL0lkZW50aXR5L0RXIDEwMDAvQ0lEU3lzdGVtSW5mbyAyMCAwIFIvRm9udERlc2NyaXB0b3IgMjEgMCBSL1cgMTEzIDAgUj4+DQplbmRvYmoNCjIwIDAgb2JqDQo8PC9PcmRlcmluZyhJZGVudGl0eSkgL1JlZ2lzdHJ5KEFkb2JlKSAvU3VwcGxlbWVudCAwPj4NCmVuZG9iag0KMjEgMCBvYmoNCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvQkNESEVFK0NlbnR1cnlHb3RoaWMtQm9s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XSAgNzBbIDY0MCA2NjAgNjQwIDI4MCA2NjAgNjAwIDI0MF0gIDc4WyA1ODAgMjQwIDk0MCA2MDAgNjQwIDY2MF0gIDg1WyAzMjAgNDQwIDMwMCA2MDAgNTYwXSAgOTFbIDU2MCA1ODBdICAxNzhbIDUwMF0gXSANCmVuZG9iag0KMTE0IDAgb2JqDQpbIDI4MCAwIDAgMCAwIDAgNjgwIDAgMCAwIDAgMCAyODAgNDIwIDI4MCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCA3NDAgNTgwIDc4MCA3MDAgNTIwIDQ4MCA4NDAgNjgwIDI4MCAwIDYyMCA0NDAgOTAwIDc0MCA4NDAgNTYwIDg0MCA1ODAgNTIwIDQyMCA2NDAgMCA5MDAgNjgwIDAgMCAwIDAgMCAwIDAgMCA2NjAgMCA2NDAgNjYwIDY0MCAyODAgNjYwIDYwMCAyNDAgMCA1ODAgMjQwIDk0MCA2MDAgNjQwIDY2MCAwIDMyMCA0NDAgMzAwIDYwMCA1NjAgMCA1NjAgNTgwXSANCmVuZG9iag0KMTE1IDAgb2JqDQo8PC9UeXBlL01ldGFkYXRhL1N1YnR5cGUvWE1ML0xlbmd0aCAzMDE1Pj4NCnN0cmVhbQ0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz48eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSIzLjEtNzAxIj4KPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyI+CjxwZGY6UHJvZHVjZXI+TWljcm9zb2Z0wq4gV29yZCBmb3IgTWljcm9zb2Z0IDM2NTwvcGRmOlByb2R1Y2VyPjwvcmRmOkRlc2NyaXB0aW9uPgo8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj4KPC9yZGY6RGVzY3JpcHRpb24+CjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgo8eG1wOkNyZWF0b3JUb29sPk1pY3Jvc29mdMKuIFdvcmQgZm9yIE1pY3Jvc29mdCAzNjU8L3htcDpDcmVhdG9yVG9vbD48eG1wOkNyZWF0ZURhdGU+MjAyMC0wNS0yOVQxODoyOToxNS0wNzowMDwveG1wOkNyZWF0ZURhdGU+PHhtcDpNb2RpZnlEYXRlPjIwMjAtMDUtMjlUMTg6Mjk6MTUtMDc6MDA8L3htcDpNb2RpZnlEYXRlPjwvcmRmOkRlc2NyaXB0aW9uPgo8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iPgo8eG1wTU06RG9jdW1lbnRJRD51dWlkOjU1REU2MjZDLTEzRUQtNEM4Ny1CRjhELThCMzI1ODU1RTc1NTwveG1wTU06RG9jdW1lbnRJRD48eG1wTU06SW5zdGFuY2VJRD51dWlkOjU1REU2MjZDLTEzRUQtNEM4Ny1CRjhELThCMzI1ODU1RTc1NTwveG1wTU06SW5zdGFuY2VJRD48L3JkZjpEZXNjcmlwdGlvbj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCjwvcmRmOlJERj48L3g6eG1wbWV0YT48P3hwYWNrZXQgZW5kPSJ3Ij8+DQplbmRzdHJlYW0NCmVuZG9iag0KMTE2IDAgb2JqDQo8PC9EaXNwbGF5RG9jVGl0bGUgdHJ1ZT4+DQplbmRvYmoNCjExNyAwIG9iag0KPDwvVHlwZS9YUmVmL1NpemUgMTE3L1dbIDEgNCAyXSAvUm9vdCAxIDAgUi9JbmZvIDEwNiAwIFIvSURbPDZDNjJERTU1RUQxMzg3NENCRjhEOEIzMjU4NTVFNzU1Pjw2QzYyREU1NUVEMTM4NzRDQkY4RDhCMzI1ODU1RTc1NT5dIC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDI5MD4+DQpzdHJlYW0NCnicNdI5M4NxEMfx/xP3GUHkvhNnxBX3fYS40ngDhjEyRmNGo/AWvA6FSmfMqAUN4x0oVHTqePL7ssV+Zovd2ZldY+woly07u4ypcA2fwpEV7jvhycOl8KaFLwOHwu8TgRjcwJMInsG9CD2IcAFORcQLByJ6Ih6vROlWPO/Za9kLpswmbME27EAeFqERGsABf1N27ZkvH/+VBdVQBfVQA7VQBwswDwFogmZogVZwQhu4oB06oBPc0AUe8IIP/BCCIMxBGCIQhRjEIQFJSEE39EAv9EE/DEAaBiEDQzAMIzAKY5CFcZiASZiCaZiBWViHHKzBEizDKqxAATbsE79+6XvevsV7sYIVd4rEhUiWROpHHKnBOtZDW8WcON835hdIzDXtDQplbmRzdHJlYW0NCmVuZG9iag0KeHJlZg0KMCAxMTgNCjAwMDAwMDAwMjYgNjU1MzUgZg0KMDAwMDAwMDAxNyAwMDAwMCBuDQowMDAwMDAwMTY4IDAwMDAwIG4NCjAwMDAwMDAyMzEgMDAwMDAgbg0KMDAwMDAwMDU2NCAwMDAwMCBuDQowMDAwMDA1NTYxIDAwMDAwIG4NCjAwMDAwMDU5NjAgMDAwMDAgbg0KMDAwMDAwNjAxMyAwMDAwMCBuDQowMDAwMDA2MTg4IDAwMDAwIG4NCjAwMDAwMDY0NDYgMDAwMDAgbg0KMDAwMDAwNjQ5OSAwMDAwMCBuDQowMDAwMDA2NjgxIDAwMDAwIG4NCjAwMDAwMDY5NDUgMDAwMDAgbg0KMDAwMDAwNzA4NCAwMDAwMCBuDQowMDAwMDA3MTE0IDAwMDAwIG4NCjAwMDAwMDcyODEgMDAwMDAgbg0KMDAwMDAwNzM1NSAwMDAwMCBuDQowMDAwMDA3NjE0IDAwMDAwIG4NCjAwMDAwMDc3NTggMDAwMDAgbg0KMDAwMDAwNzc4OCAwMDAwMCBuDQowMDAwMDA3OTYwIDAwMDAwIG4NCjAwMDAwMDgwMzQgMDAwMDAgbg0KMDAwMDAwODI5OCAwMDAwMCBuDQowMDAwMDUxMzQyIDAwMDAwIG4NCjAwMDAwNTE2MzQgMDAwMDAgbg0KMDAwMDA1MjA1MSAwMDAwMCBuDQowMDAwMDAwMDI3IDY1NTM1IGYNCjAwMDAwMDAwMjggNjU1MzUgZg0KMDAwMDAwMDAyOSA2NTUzNSBmDQowMDAwMDAwMDMwIDY1NTM1IGYNCjAwMDAwMDAwMzEgNjU1MzUgZg0KMDAwMDAwMDAzMiA2NTUzNSBmDQowMDAwMDAwMDMzIDY1NTM1IGYNCjAwMDAwMDAwMzQgNjU1MzUgZg0KMDAwMDAwMDAzNSA2NTUzNSBmDQowMDAwMDAwMDM2IDY1NTM1IGYNCjAwMDAwMDAwMzcgNjU1MzUgZg0KMDAwMDAwMDAzOCA2NTUzNSBmDQowMDAwMDAwMDM5IDY1NTM1IGYNCjAwMDAwMDAwNDAgNjU1MzUgZg0KMDAwMDAwMDA0MSA2NTUzNSBmDQowMDAwMDAwMDQyIDY1NTM1IGYNCjAwMDAwMDAwNDMgNjU1MzUgZg0KMDAwMDAwMDA0NCA2NTUzNSBmDQowMDAwMDAwMDQ1IDY1NTM1IGYNCjAwMDAwMDAwNDYgNjU1MzUgZg0KMDAwMDAwMDA0NyA2NTUzNSBmDQowMDAwMDAwMDQ4IDY1NTM1IGYNCjAwMDAwMDAwNDkgNjU1MzUgZg0KMDAwMDAwMDA1MCA2NTUzNSBmDQowMDAwMDAwMDUxIDY1NTM1IGYNCjAwMDAwMDAwNTIgNjU1MzUgZg0KMDAwMDAwMDA1MyA2NTUzNSBmDQowMDAwMDAwMDU0IDY1NTM1IGYNCjAwMDAwMDAwNTUgNjU1MzUgZg0KMDAwMDAwMDA1NiA2NTUzNSBmDQowMDAwMDAwMDU3IDY1NTM1IGYNCjAwMDAwMDAwNTggNjU1MzUgZg0KMDAwMDAwMDA1OSA2NTUzNSBmDQowMDAwMDAwMDYwIDY1NTM1IGYNCjAwMDAwMDAwNjEgNjU1MzUgZg0KMDAwMDAwMDA2MiA2NTUzNSBmDQowMDAwMDAwMDYzIDY1NTM1IGYNCjAwMDAwMDAwNjQgNjU1MzUgZg0KMDAwMDAwMDA2NSA2NTUzNSBmDQowMDAwMDAwMDY2IDY1NTM1IGYNCjAwMDAwMDAwNjcgNjU1MzUgZg0KMDAwMDAwMDA2OCA2NTUzNSBmDQowMDAwMDAwMDY5IDY1NTM1IGYNCjAwMDAwMDAwNzAgNjU1MzUgZg0KMDAwMDAwMDA3MSA2NTUzNSBmDQowMDAwMDAwMDcyIDY1NTM1IGYNCjAwMDAwMDAwNzMgNjU1MzUgZg0KMDAwMDAwMDA3NCA2NTUzNSBmDQowMDAwMDAwMDc1IDY1NTM1IGYNCjAwMDAwMDAwNzYgNjU1MzUgZg0KMDAwMDAwMDA3NyA2NTUzNSBmDQowMDAwMDAwMDc4IDY1NTM1IGYNCjAwMDAwMDAwNzkgNjU1MzUgZg0KMDAwMDAwMDA4MCA2NTUzNSBmDQowMDAwMDAwMDgxIDY1NTM1IGYNCjAwMDAwMDAwODIgNjU1MzUgZg0KMDAwMDAwMDA4MyA2NTUzNSBmDQowMDAwMDAwMDg0IDY1NTM1IGYNCjAwMDAwMDAwODUgNjU1MzUgZg0KMDAwMDAwMDA4NiA2NTUzNSBmDQowMDAwMDAwMDg3IDY1NTM1IGYNCjAwMDAwMDAwODggNjU1MzUgZg0KMDAwMDAwMDA4OSA2NTUzNSBmDQowMDAwMDAwMDkwIDY1NTM1IGYNCjAwMDAwMDAwOTEgNjU1MzUgZg0KMDAwMDAwMDA5MiA2NTUzNSBmDQowMDAwMDAwMDkzIDY1NTM1IGYNCjAwMDAwMDAwOTQgNjU1MzUgZg0KMDAwMDAwMDA5NSA2NTUzNSBmDQowMDAwMDAwMDk2IDY1NTM1IGYNCjAwMDAwMDAwOTcgNjU1MzUgZg0KMDAwMDAwMDA5OCA2NTUzNSBmDQowMDAwMDAwMDk5IDY1NTM1IGYNCjAwMDAwMDAxMDAgNjU1MzUgZg0KMDAwMDAwMDEwMSA2NTUzNSBmDQowMDAwMDAwMTAyIDY1NTM1IGYNCjAwMDAwMDAxMDMgNjU1MzUgZg0KMDAwMDAwMDEwNCA2NTUzNSBmDQowMDAwMDAwMTA1IDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDA1Mzc0MSAwMDAwMCBuDQowMDAwMDUzOTk4IDAwMDAwIG4NCjAwMDAwNTQzNzYgMDAwMDAgbg0KMDAwMDA3NDI1NSAwMDAwMCBuDQowMDAwMDc0NjE3IDAwMDAwIG4NCjAwMDAwNzQ5NTMgMDAwMDAgbg0KMDAwMDA3NTI1MyAwMDAwMCBuDQowMDAwMDkxNjI5IDAwMDAwIG4NCjAwMDAwOTE5MjkgMDAwMDAgbg0KMDAwMDA5MjIyOSAwMDAwMCBuDQowMDAwMDk1MzI4IDAwMDAwIG4NCjAwMDAwOTUzNzQgMDAwMDAgbg0KdHJhaWxlcg0KPDwvU2l6ZSAxMTgvUm9vdCAxIDAgUi9JbmZvIDEwNiAwIFIvSURbPDZDNjJERTU1RUQxMzg3NENCRjhEOEIzMjU4NTVFNzU1Pjw2QzYyREU1NUVEMTM4NzRDQkY4RDhCMzI1ODU1RTc1NT5dID4+DQpzdGFydHhyZWYNCjk1ODY4DQolJUVPRg0KeHJlZg0KMCAwDQp0cmFpbGVyDQo8PC9TaXplIDExOC9Sb290IDEgMCBSL0luZm8gMTA2IDAgUi9JRFs8NkM2MkRFNTVFRDEzODc0Q0JGOEQ4QjMyNTg1NUU3NTU+PDZDNjJERTU1RUQxMzg3NENCRjhEOEIzMjU4NTVFNzU1Pl0gL1ByZXYgOTU4NjgvWFJlZlN0bSA5NTM3ND4+DQpzdGFydHhyZWYNCjk4Mzg4DQolJUVPRg==\",\r\n      \"file_name\": \"resume.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For parsing resume data.</p>\n\n<ul>\n<li><p>file_name - <b>REQUIRED</b></p>\n</li>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n\"file_data\": \"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\",\n      \"file_name\": \"Test.doc\"\n    }\n  }\n</pre>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"11b4d3fe-d8e7-4013-a6f1-807e22dc9532","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"bullhorn\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\"file_data\": \"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\",\r\n      \"file_name\": \"Test.doc\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 23:28:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"4097"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272724"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"resume_data\": {\n                \"candidate\": {\n                    \"referral_source\": \"\",\n                    \"pay_rate\": \"\",\n                    \"skills\": \"\",\n                    \"date_of_birth\": \"\",\n                    \"veteran\": \"\",\n                    \"ethnicity\": \"\",\n                    \"last_name\": \"\",\n                    \"email\": \"tshoemaker12519-1@haleymarketing.com\",\n                    \"opt_out\": \"\",\n                    \"id\": \"\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"zip\": \"70543\",\n                        \"city\": \"Milltown\",\n                        \"address1\": \"10 Paper Road\",\n                        \"state\": \"MA\",\n                        \"address2\": \"\"\n                    },\n                    \"resume_html\": \"\",\n                    \"category\": \"\",\n                    \"gender\": \"\",\n                    \"categories\": \"\",\n                    \"phone\": \"+1 888 696-2900\",\n                    \"description\": \"<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n\\t<head>\\r\\n\\t\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\r\\n\\t\\t<meta http-equiv=\\\"Content-Style-Type\\\" content=\\\"text/css\\\" />\\r\\n\\t\\t\\r\\n\\t</head>\\r\\n\\t<body>\\r\\n\\t\\t<div>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">test test1</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:11pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">10 Paper Road; Milltown, MA 70543</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:11pt\\\">Phone: 8886962900; E-mail:</span><span style=\\\"font-family:'Liberation Serif'\\\"> </span><a href=\\\"#sanitized\\\" style=\\\"text-decoration:none\\\"><span style=\\\"font-family:'Liberation Serif'; color:#000000\\\"> </span></a><span style=\\\"font-family:'Liberation Serif'; font-size:11pt; text-decoration:underline; color:#0000ff\\\">tshoemaker12519-1@haleymarketing.com</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:3.75pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:3.75pt; margin-bottom:11.25pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Enterprise Implementations</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-left:14.15pt; margin-bottom:11.25pt; text-indent:-14.15pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">KPI Dashboards &amp; Scorecards</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-left:14.15pt; margin-bottom:11.25pt; text-indent:-14.15pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Data Mining &amp; Analytics</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:11.25pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Risk Management</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-left:14.15pt; margin-bottom:11.25pt; text-indent:-14.15pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">BI, ERP &amp; Big Data Platforms</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-left:14.15pt; margin-bottom:7.5pt; text-indent:-14.15pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">SAP/SAS Solutions</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Experience</span><br /><span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">ABC BANK&#xa0;(Global financial services organization)&#xa0;â\\u0080\\u0094 Sometown, GA &#xa0; &#xa0; &#xa0; &#xa0; &#xa0;2008 to Present</span></p>\\r\\n\\t\\t\\t<table cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" style=\\\"width:498.6pt; border-collapse:collapse\\\">\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:242.45pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Business Analyst II / Business Analyst I,&#xa0;2013 to Present</span></p>\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Data Analyst,&#xa0;2011 to 2013</span></p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:234.55pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Credit Risk Analyst,&#xa0;2010 to 2011</span></p>\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Quality Assurance (QA) Engineer,&#xa0;2008 to 2010</span></p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t</table>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:11.25pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Earned several promotions due to exemplary work performance. Currently oversee initiatives designed to advance continuous improvement, competitive advantage and profitable growth. Lead business process and workflow mapping/analysis using data capture and modeling technologies, methods and tools. Analyze business, user and technical requirements for proposed SAS, web-based and system solutions.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:11.25pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Completed in-depth analyses for business-optimization projects, reporting tools, back-office programs and payment-processing apps. Measurable outcomes:</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:7.5pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Provided executives with analytics and decision-support tools used as the basis for reorganization, consolidation and relocation strategies.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> 9.2% revenue growth (2016)</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> Up to 45% in efficiency gains</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> $575K capital-expense reduction</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> $1.1M labor-cost savings</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> 97% account-retention rates</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:11.25pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">â\\u0080\\u0094</span><span style=\\\"font-family:Roboto; font-size:12pt\\\"> 10% increase in referrals</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:11.25pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Partnered with developers to automate manual processes, saving time and money while decreasing errors. Credited as a primary driving force behind a 5% increase in margins this fiscal year.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:11.25pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Collaborated with stakeholder groups across the organization to ensure business and technology alignment. Proposed solutions meeting defined specifications and needs.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:11.25pt; margin-bottom:7.5pt; line-height:115%; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:OpenSymbol\\\">â\\u0080¢</span><span style=\\\"font:7pt 'Times New Roman'\\\">&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; </span><span style=\\\"font-family:'Liberation Serif'\\\">Performed quality assurance, system integration and user acceptance testing facilitating on-time, on-budget and acclaimed â\\u0080\\u009cgo-liveâ\\u0080\\u009d of enterprise implementations for up to 12,000 global users.</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:14.15pt; border-bottom:0.75pt double #808080; font-size:6pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:14.15pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Education</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:14.15pt; border-bottom:0.75pt double #808080; font-size:6pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:14.15pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">ABC UNIVERSITY â\\u0080\\u0094 Sometown, GA l&#xa0;MBA,&#xa0;Emphasis in Finance</span><br /><span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">XYZ COLLEGE â\\u0080\\u0094 Sometown, GA l&#xa0;BS in Management Information Systems</span></p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:7.5pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Technology Summary</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<table cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" style=\\\"width:498.6pt; border-collapse:collapse\\\">\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:162.55pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">ERP, BI &amp; RDMS Tools:</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:314.45pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">SAS, SAP ASE/Business Objects, Oracle, MS SQL Server, MySQL, DB2, IBM Cognos</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:162.55pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Data Discovery Tools:</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:314.45pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">QlikView, Tableau, TIBCO Spotfire</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:162.55pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Systems:</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t<td style=\\\"width:314.45pt; padding-right:5.4pt; padding-left:5.4pt; vertical-align:middle\\\">\\r\\n\\t\\t\\t\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:7.5pt; text-align:center; line-height:18pt\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'; font-size:12pt\\\">Windows, UNIX, Linux, Mac OS X, Apple iOS, Android</span>\\r\\n\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t</table>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t\\t<p style=\\\"margin-top:0pt; margin-bottom:0pt; font-size:12pt\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"font-family:'Liberation Serif'\\\">&#xa0;</span>\\r\\n\\t\\t\\t</p>\\r\\n\\t\\t</div>\\r\\n\\t</body>\\r\\n</html>\",\n                    \"cell_phone\": \"\",\n                    \"disability\": \"\",\n                    \"date_added\": \"\",\n                    \"title\": \"Business Analyst II / Business Analyst I\",\n                    \"type\": \"\",\n                    \"rep_user\": \"\",\n                    \"api_request_custom\": {\n                        \"companyName\": \"ABC BANK\"\n                    },\n                    \"first_name\": \"\"\n                },\n                \"education\": [\n                    {\n                        \"degree\": \"MBA\",\n                        \"minor\": \"\",\n                        \"expiration_date\": \"\",\n                        \"comments\": \"\",\n                        \"certification\": \"\",\n                        \"state\": \"\",\n                        \"graduation_date\": \"\",\n                        \"city\": \"\",\n                        \"gpa\": \"\",\n                        \"end_date\": \"\",\n                        \"school\": \"ABC UNIVERSITY\",\n                        \"id\": \"\",\n                        \"start_date\": \"\",\n                        \"type\": \"\",\n                        \"major\": \"Finance\"\n                    },\n                    {\n                        \"degree\": \"BS in Management Information Systems\",\n                        \"minor\": \"\",\n                        \"expiration_date\": \"\",\n                        \"comments\": \"\",\n                        \"certification\": \"\",\n                        \"state\": \"\",\n                        \"graduation_date\": \"\",\n                        \"city\": \"\",\n                        \"gpa\": \"\",\n                        \"end_date\": \"\",\n                        \"school\": \"XYZ COLLEGE\",\n                        \"id\": \"\",\n                        \"start_date\": \"\",\n                        \"type\": \"\",\n                        \"major\": \"Technology Summary\"\n                    }\n                ],\n                \"skills\": [\n                    \"BUDGET\",\n                    \"TIBCO\",\n                    \"SOLUTIONS\",\n                    \"SQL SERVER\",\n                    \"IBM COGNOS\",\n                    \"SAVINGS\",\n                    \"BUSINESS INTELLIGENCE\",\n                    \"ACCOUNT\",\n                    \"TESTING\",\n                    \"FINANCIAL\",\n                    \"COST\",\n                    \"CODA\",\n                    \"LEAD\",\n                    \"DB2\",\n                    \"RETENTION\",\n                    \"MAC-OS\",\n                    \"SQL\",\n                    \"ASSURANCE\",\n                    \"METHODS\",\n                    \"SYSTEM\",\n                    \"EFFICIENCY\",\n                    \"OBJECTS\",\n                    \"ENTERPRISE\",\n                    \"ACCOUNTING\",\n                    \"INSIGHT\",\n                    \"MARKET DATA/PRICE DISTRIBUTION SYSTEMS\",\n                    \"TECHNICAL REQUIREMENTS\",\n                    \"CAPTURE\",\n                    \"ANALYSES\",\n                    \"EN\",\n                    \"OPTIMIZATION\",\n                    \"SUPPORT\",\n                    \"TOPO\",\n                    \"IMPLEMENTATIONS\",\n                    \"LIBRARY SYSTEMS\",\n                    \"COGNOS\",\n                    \"MIDDLEWARE\",\n                    \"REDUCTION\",\n                    \"ANALYTICS\",\n                    \"DATABASE SERVER\",\n                    \"RDBMS\",\n                    \"ASE\",\n                    \"INTEGRATOR\",\n                    \"SERIAL ATTACHED SCSI\",\n                    \"REPORTS\",\n                    \"DUE\",\n                    \"PROMOTIONS\",\n                    \"WEB\",\n                    \"REORGANIZATION\",\n                    \"PROCESSING\",\n                    \"SAP\",\n                    \"SYSTEM INTEGRATION\",\n                    \"SAS\",\n                    \"ORGANIZATION\",\n                    \"ENTERPRISE RESOURCE PLANNING\",\n                    \"FISCAL YEAR\",\n                    \"COMPETITIVE ADVANTAGE\",\n                    \"TOOLS\",\n                    \"CAPITAL\",\n                    \"SAVING\",\n                    \"ENTERPRISE MANAGEMENT SW\",\n                    \"INTEGRATION\",\n                    \"MYSQL\",\n                    \"RISK\",\n                    \"FINANCIAL SERVICES\",\n                    \"LINUX\",\n                    \"MAPPING\",\n                    \"FINANCIAL ACCOUNTING\",\n                    \"WEB-BASED\",\n                    \"DISCOVERY\",\n                    \"UNIX\",\n                    \"MAXIMUM ALLOWABLE COSTS LIST\",\n                    \"IOS\",\n                    \"REVENUE\",\n                    \"OS X\",\n                    \"RDMS\",\n                    \"MACINTOSH\",\n                    \"EMPLOYEE RESOURCE GROUP\",\n                    \"ANALYSIS\",\n                    \"EXPENSE\",\n                    \"FORCE\",\n                    \"DATA CAPTURE\",\n                    \"DATA ANALYST\",\n                    \"SPOTFIRE\",\n                    \"WEB BASED\",\n                    \"CREDIT\",\n                    \"FOR\",\n                    \"EXECUTIVES\",\n                    \"TOOL & DIES\",\n                    \"MANUFACTURING QUALITY\",\n                    \"MBA\",\n                    \"ERP\",\n                    \"BUSINESS DEVELOPMENT\",\n                    \"QLIKVIEW\",\n                    \"OPERATING SYSTEM ENHANCEMENT\",\n                    \"MAC OS\",\n                    \"ENGINEER\",\n                    \"QA\",\n                    \"ALIGNMENT\",\n                    \"SPECIFICATIONS\",\n                    \"CREDIT RISK\",\n                    \"ANALYSING SKILLS\",\n                    \"WORKFLOW\",\n                    \"QUALITY ASSURANCE\",\n                    \"SERVICES\",\n                    \"ORACLE\",\n                    \"MANAGEMENT SKILLS\",\n                    \"ACCEPTANCE TESTING\",\n                    \"PERFORMANCE\",\n                    \"INFORMATION SYSTEMS\",\n                    \"FINANCE\",\n                    \"MOBILE PROGRAMMING\",\n                    \"ANDROID\",\n                    \"BI\",\n                    \"CREDIT RISK MANAGEMENT\",\n                    \"DRUG USE EVALUATION\",\n                    \"STAKEHOLDER\",\n                    \"USER ACCEPTANCE TESTING\",\n                    \"EXPENSE REDUCTION\",\n                    \"LABOR\",\n                    \"CONSOLIDATION\",\n                    \"MANAGEMENT\",\n                    \"BUSINESS ANALYSIS\",\n                    \"ADVANCE\",\n                    \"BUDGETS\",\n                    \"REPORTING TOOLS\",\n                    \"IMPLEMENTATION SKILLS\",\n                    \"MARGINS\",\n                    \"BASIS\",\n                    \"WINDOWS\",\n                    \"APPLE\",\n                    \"RELOCATION\",\n                    \"MONEY\",\n                    \"REPORTING\",\n                    \"USER ACCEPTANCE\",\n                    \"LABOUR\",\n                    \"GROWTH\",\n                    \"MS SQL SERVER\",\n                    \"PAYMENT\",\n                    \"BUSINESS PROCESS\",\n                    \"BUSINESS OBJECTS\",\n                    \"CONTINUOUS IMPROVEMENT\",\n                    \"ORGANISATION\",\n                    \"MAC\",\n                    \"DATA\"\n                ],\n                \"workhistory\": [\n                    {\n                        \"ending_salary\": \"\",\n                        \"location\": \"\",\n                        \"salary_type\": \"\",\n                        \"company_name\": \"ABC BANK\",\n                        \"bonus\": \"\",\n                        \"comments\": \"ABC BANK (Global financial services organization)  -  Sometown, GA\\t2008 to Present\",\n                        \"termination_reason\": \"\",\n                        \"end_date\": \"\",\n                        \"start_date\": \"01/01/2008\",\n                        \"id\": \"\",\n                        \"title\": \"Business Analyst II / Business Analyst I\",\n                        \"commission\": \"\",\n                        \"starting_salary\": \"\"\n                    }\n                ],\n                \"objective\": \"\"\n            }\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"parseToCandidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.789926\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2020-01-09T23:28:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"bullhorn\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Parsed reume\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://rest91.bullhornstaffing.com/rest-services/infm1/resume/parseToCandidate?format=docx&populateDescription=html&BhRestToken=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"bullhorn\",\n        \"elapsed\": \"1.850508\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Parsed reume\"\n}"}],"_postman_id":"55a7fd5c-837e-4fcb-8f7e-2409b84b83da"}],"id":"7adbdc6e-f063-4ae7-b64e-321c30533f9b","_postman_id":"7adbdc6e-f063-4ae7-b64e-321c30533f9b","description":""}],"id":"054fa4f3-73d6-4a5b-b697-a4c09f51a2d1","_postman_id":"054fa4f3-73d6-4a5b-b697-a4c09f51a2d1","description":""},{"name":"Ceipal","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"3e8a167c-af33-451c-b76e-1e938946904d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - should be empty</p>\n</li>\n<li><p>api_pw - should be empty</p>\n</li>\n<li><p>api_id - API ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n<pre>\n    \"api_connection\": {\n      \"api_un\": \"\",\n      \"api_pw\": \"\",\n      \"api_id\": \"{{api_id}}\"\n    }\n</pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e8a167c-af33-451c-b76e-1e938946904d"}],"id":"8b650e76-9a88-4800-aed3-a59966ed27b8","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"8b650e76-9a88-4800-aed3-a59966ed27b8"},{"name":"Application","item":[{"name":"Application Get","id":"529a0935-b29f-4cae-9cfa-04f99a5d9d3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9cae36a0-b4b4-42e1-9efe-172a2f7cafa1","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:07:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"391"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330902"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:07:31\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:07:31\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.028754\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"529a0935-b29f-4cae-9cfa-04f99a5d9d3b"},{"name":"Application Get By ID","id":"04f10d9f-b26d-44c6-b0c6-4284ed243375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"822f9966-0ad4-4958-99f3-46ffed69a203","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:06:43 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"390"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330899"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:06:43\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:06:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.02877\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"04f10d9f-b26d-44c6-b0c6-4284ed243375"},{"name":"Application Set","id":"43256e7d-4360-4453-9957-320ff7d77472","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c5XEMsxsDaW1ud6CiM--CsA=\"},\r\n\t\t\"candidate\":{\r\n\t\t\t\"first_name\": \"GTEST\",\r\n\t\t\t\"last_name\": \"GZill\",\r\n\t\t\t\"city\": \"Nashville\",\r\n\t\t\t\"state\": \"Tennesseeaa\",\r\n\t\t\t\"country\": \"United States\",\r\n\t\t\t\"email\": \"gm-ceipal.11.27.2025.2@mailinator.com\",\r\n\t\t\t\"cell_phone\": 9559099999\r\n\t\t},\r\n\t\t\"file_name\": \"resume.rtf\",\r\n\t\t\"file_data\": \"e1xydGYxXGFuc2lcZGVmZjNcYWRlZmxhbmcxMDI1CntcZm9udHRibHtcZjBcZnJvbWFuXGZwcnEyXGZjaGFyc2V0MCBUaW1lcyBOZXcgUm9tYW47fXtcZjFcZnJvbWFuXGZwcnEyXGZjaGFyc2V0MiBTeW1ib2w7fXtcZjJcZnN3aXNzXGZwcnEyXGZjaGFyc2V0MCBBcmlhbDt9e1xmM1xmcm9tYW5cZnBycTJcZmNoYXJzZXQwIExpYmVyYXRpb24gU2VyaWZ7XCpcZmFsdCBUaW1lcyBOZXcgUm9tYW59O317XGY0XGZuaWxcZnBycTBcZmNoYXJzZXQyIFN5bWJvbDt9e1xmNVxmbmlsXGZwcnEwXGZjaGFyc2V0MTI4IENvdXJpZXIgTmV3O317XGY2XGZuaWxcZnBycTBcZmNoYXJzZXQyIFdpbmdkaW5nczt9e1xmN1xmcm9tYW5cZnBycTJcZmNoYXJzZXQxMjggU2Vnb2UgVUk7fXtcZjhcZnJvbWFuXGZwcnEyXGZjaGFyc2V0MTI4IFRpbWVzIE5ldyBSb21hbjt9e1xmOVxmc3dpc3NcZnBycTJcZmNoYXJzZXQxMjggTGliZXJhdGlvbiBTYW5ze1wqXGZhbHQgQXJpYWx9O317XGYxMFxmcm9tYW5cZnBycTJcZmNoYXJzZXQxMjggR2VvcmdpYTt9e1xmMTFcZnN3aXNzXGZwcnEyXGZjaGFyc2V0MTI4IEhlbHZldGljYSBMaWdodDt9e1xmMTJcZnN3aXNzXGZwcnEyXGZjaGFyc2V0MTI4IEhlbHZldGljYXtcKlxmYWx0IEFyaWFsfTt9e1xmMTNcZm5pbFxmcHJxMlxmY2hhcnNldDEyOCBOb3RvIFNhbnMgU3ltYm9sczt9e1xmMTRcZm5pbFxmcHJxMlxmY2hhcnNldDEyOCBOb3RvIFNhbnMgQ0pLIFNDIFJlZ3VsYXI7fXtcZjE1XGZuaWxcZnBycTJcZmNoYXJzZXQxMjggR2VvcmdpYTt9e1xmMTZcZm5pbFxmcHJxMlxmY2hhcnNldDEyOCBHdW5nc3VoO317XGYxN1xmbmlsXGZwcnEyXGZjaGFyc2V0MTI4IENvdXJpZXIgTmV3O317XGYxOFxmbmlsXGZwcnEyXGZjaGFyc2V0MTI4IFNlZ29lIFVJO317XGYxOVxmbmlsXGZwcnEyXGZjaGFyc2V0MTI4IEZyZWVTYW5zO317XGYyMFxmc3dpc3NcZnBycTBcZmNoYXJzZXQxMjggRnJlZVNhbnM7fXtcZjIxXGZtb2Rlcm5cZnBycTFcZmNoYXJzZXQxMjggQ291cmllciBOZXc7fX0Ke1xjb2xvcnRibDtccmVkMFxncmVlbjBcYmx1ZTA7XHJlZDBcZ3JlZW4wXGJsdWUyNTU7XHJlZDBcZ3JlZW4yNTVcYmx1ZTI1NTtccmVkMFxncmVlbjI1NVxibHVlMDtccmVkMjU1XGdyZWVuMFxibHVlMjU1O1xyZWQyNTVcZ3JlZW4wXGJsdWUwO1xyZWQyNTVcZ3JlZW4yNTVcYmx1ZTA7XHJlZDI1NVxncmVlbjI1NVxibHVlMjU1O1xyZWQwXGdyZWVuMFxibHVlMTI4O1xyZWQwXGdyZWVuMTI4XGJsdWUxMjg7XHJlZDBcZ3JlZW4xMjhcYmx1ZTA7XHJlZDEyOFxncmVlbjBcYmx1ZTEyODtccmVkMTI4XGdyZWVuMFxibHVlMDtccmVkMTI4XGdyZWVuMTI4XGJsdWUwO1xyZWQxMjhcZ3JlZW4xMjhcYmx1ZTEyODtccmVkMTkyXGdyZWVuMTkyXGJsdWUxOTI7XHJlZDk2XGdyZWVuOTRcYmx1ZTkyO1xyZWQyMjVcZ3JlZW4yMjNcYmx1ZTIyMTtccmVkMTI3XGdyZWVuMTI3XGJsdWUxMjc7fQp7XHN0eWxlc2hlZXR7XHMwXHNuZXh0MFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzIE5vcm1hbDt9CntcczFcc2Jhc2Vkb24wXHNuZXh0MFxpbHZsMFxvdXRsaW5lbGV2ZWwwXHFjXGtlZXBuXHJ0bGNoXGFmczI2XGx0cmNoXGZzMjZcaVxiIGhlYWRpbmcgMTt9CntcczJcc2Jhc2Vkb24wXHNuZXh0MFxpbHZsMVxvdXRsaW5lbGV2ZWwxXGtlZXBuXHJ0bGNoXGFmczIyXGx0cmNoXGZzMjJcYiBoZWFkaW5nIDI7fQp7XHMzXHNiYXNlZG9uMFxzbmV4dDBcaWx2bDJcb3V0bGluZWxldmVsMlxmaTM2MFxsaTE4MDBcbGluMTgwMFxyaTBccmluMFxrZWVwblxydGxjaFxhZnMyM1xsdHJjaFxmczIzXGlcYiBoZWFkaW5nIDM7fQp7XHM0XHNiYXNlZG9uMFxzbmV4dDBcaWx2bDNcb3V0bGluZWxldmVsM1xxY1xrZWVwblxydGxjaFxhZnMyM1xsdHJjaFxmczIzXGkgaGVhZGluZyA0O30Ke1xzNVxzYmFzZWRvbjBcc25leHQwXGlsdmw0XG91dGxpbmVsZXZlbDRca2VlcG5ccnRsY2hcYWZzMjNcbHRyY2hcZnMyM1xpIGhlYWRpbmcgNTt9CntcczZcc2Jhc2Vkb24wXHNuZXh0MFxpbHZsNVxvdXRsaW5lbGV2ZWw1XGtlZXBuXHJ0bGNoXGFmczIzXGx0cmNoXGZzMjNcYiBoZWFkaW5nIDY7fQp7XCpcY3MxNVxzbmV4dDE1XGNmMFxydGxjaFxhZjRcbHRyY2hcZjQgV1c4TnVtMnowO30Ke1wqXGNzMTZcc25leHQxNlxydGxjaFxhZjE3XGx0cmNoXGY1IFdXOE51bTJ6MTt9CntcKlxjczE3XHNuZXh0MTdccnRsY2hcYWY2XGx0cmNoXGY2IFdXOE51bTJ6Mjt9CntcKlxjczE4XHNuZXh0MThccnRsY2hcYWY0XGx0cmNoXGY0IFdXOE51bTJ6Mzt9CntcKlxjczE5XHNuZXh0MTlccnRsY2hcYWY2XGFmczE4XGx0cmNoXGY2XGZzMThcYjAgV1c4TnVtM3owO30Ke1wqXGNzMjBcc25leHQyMFxydGxjaFxhZjVcbHRyY2hcZjUgV1c4TnVtM3oxO30Ke1wqXGNzMjFcc25leHQyMVxydGxjaFxhZjZcbHRyY2hcZjYgV1c4TnVtM3oyO30Ke1wqXGNzMjJcc25leHQyMlxydGxjaFxhZjRcbHRyY2hcZjQgV1c4TnVtM3ozO30Ke1wqXGNzMjNcc25leHQyM1xjZjBccnRsY2hcYWY0XGx0cmNoXGY0IFdXOE51bTF6MDt9CntcKlxjczI0XHNuZXh0MjRccnRsY2hcYWYxN1xsdHJjaFxmNSBXVzhOdW0xejE7fQp7XCpcY3MyNVxzbmV4dDI1XHJ0bGNoXGFmNlxsdHJjaFxmNiBXVzhOdW0xejI7fQp7XCpcY3MyNlxzbmV4dDI2XHJ0bGNoXGFmNFxsdHJjaFxmNCBXVzhOdW0xejM7fQp7XCpcY3MyN1xzbmV4dDI3IFdXOE51bTN6NDt9CntcKlxjczI4XHNuZXh0MjggV1c4TnVtM3o1O30Ke1wqXGNzMjlcc25leHQyOSBXVzhOdW0zejY7fQp7XCpcY3MzMFxzbmV4dDMwIFdXOE51bTN6Nzt9CntcKlxjczMxXHNuZXh0MzEgV1c4TnVtM3o4O30Ke1wqXGNzMzJcc25leHQzMiBEZWZhdWx0IFBhcmFncmFwaCBGb250O30Ke1wqXGNzMzNcc2Jhc2Vkb24zMlxzbmV4dDMzIEhlYWRlciBDaGFyO30Ke1wqXGNzMzRcc2Jhc2Vkb24zMlxzbmV4dDM0IEZvb3RlciBDaGFyO30Ke1wqXGNzMzVcc2Jhc2Vkb24zMlxzbmV4dDM1XHJ0bGNoXGFmczE2XGx0cmNoXGZzMTYgYW5ub3RhdGlvbiByZWZlcmVuY2U7fQp7XCpcY3MzNlxzYmFzZWRvbjMyXHNuZXh0MzZccnRsY2hcYWZzMjBcbHRyY2hcZnMyMCBDb21tZW50IFRleHQgQ2hhcjt9CntcKlxjczM3XHNiYXNlZG9uMzZcc25leHQzN1xydGxjaFxhZnMyMFxhYlxsdHJjaFxmczIwXGIgQ29tbWVudCBTdWJqZWN0IENoYXI7fQp7XCpcY3MzOFxzYmFzZWRvbjMyXHNuZXh0MzhccnRsY2hcYWYxOFxhZnMxOFxsdHJjaFxmN1xmczE4IEJhbGxvb24gVGV4dCBDaGFyO30Ke1wqXGNzMzlcc2Jhc2Vkb24zMlxzbmV4dDM5XHVsYzBcY2YyXHVsIEh5cGVybGluazt9CntcKlxjczQwXHNiYXNlZG9uMzJcc25leHQ0MFxjaGNicGF0MThcY2YxNyBVbnJlc29sdmVkIE1lbnRpb247fQp7XCpcY3M0MVxzbmV4dDQxXHJ0bGNoXGFmMTNcbHRyY2hcaGljaFxhZnMyNFxkYmNoXGFmMTNcbG9jaFxmczI0IExpc3RMYWJlbCAxO30Ke1wqXGNzNDJcc25leHQ0MlxjZjBccnRsY2hcYWYxM1xsdHJjaFxoaWNoXGFmczI0XGRiY2hcYWYxM1xsb2NoXGZzMjQgTGlzdExhYmVsIDI7fQp7XCpcY3M0M1xzbmV4dDQzXGNmMFxmczI0IExpc3RMYWJlbCAzO30Ke1wqXGNzNDRcc25leHQ0NFxjZjBcZnMyNCBMaXN0TGFiZWwgNDt9CntcKlxjczQ1XHNuZXh0NDVcY2YwXGZzMjQgTGlzdExhYmVsIDU7fQp7XCpcY3M0NlxzbmV4dDQ2XGNmMFxmczIwIExpc3RMYWJlbCA2O30Ke1wqXGNzNDdcc25leHQ0N1xmczIwIExpc3RMYWJlbCA3O30Ke1wqXGNzNDhcc25leHQ0OFxmczIwIExpc3RMYWJlbCA4O30Ke1wqXGNzNDlcc25leHQ0OVxmczIwIExpc3RMYWJlbCA5O30Ke1wqXGNzNTBcc25leHQ1MFxmczIwIExpc3RMYWJlbCAxMDt9CntcKlxjczUxXHNuZXh0NTFcZnMyNCBMaXN0TGFiZWwgMTE7fQp7XCpcY3M1MlxzbmV4dDUyXHJ0bGNoXGFmOFxsdHJjaFxoaWNoXGFmczI0XGRiY2hcYWY4XGxvY2hcZnMyNCBMaXN0TGFiZWwgMTI7fQp7XCpcY3M1M1xzbmV4dDUzXHJ0bGNoXGFmOFxsdHJjaFxmczIwIExpc3RMYWJlbCAxMzt9CntcKlxjczU0XHNuZXh0NTRcY2YwIExpc3RMYWJlbCAxNDt9CntcKlxjczU1XHNuZXh0NTVccnRsY2hcYWYxN1xsdHJjaCBMaXN0TGFiZWwgMTU7fQp7XCpcY3M1NlxzbmV4dDU2XHJ0bGNoXGFmMTdcbHRyY2ggTGlzdExhYmVsIDE2O30Ke1wqXGNzNTdcc25leHQ1N1xydGxjaFxhZjE3XGx0cmNoIExpc3RMYWJlbCAxNzt9CntcKlxjczU4XHNuZXh0NThccnRsY2hcYWZzMThcbHRyY2hcZnMxOFxiMCBMaXN0TGFiZWwgMTg7fQp7XHM1OVxzYmFzZWRvbjBcc25leHQ2MFxzYjI0MFxzYTEyMFxrZWVwblxydGxjaFxhZjE5XGFmczI4XGx0cmNoXGhpY2hcYWY5XGFmczI4XGRiY2hcYWYxNFxsb2NoXGY5XGZzMjggSGVhZGluZzt9CntcczYwXHNiYXNlZG9uMFxzbmV4dDYwXHNsMjc2XHNsbXVsdDFcc2IwXHNhMTQwIEJvZHkgVGV4dDt9CntcczYxXHNiYXNlZG9uNjBcc25leHQ2MVxydGxjaFxhZjIwXGx0cmNoIExpc3Q7fQp7XHM2MlxzYmFzZWRvbjBcc25leHQ2MlxzYjEyMFxzYTEyMFxub2xpbmVccnRsY2hcYWYyMFxhZnMyNFxhaVxsdHJjaFxmczI0XGkgY2FwdGlvbjt9CntcczYzXHNiYXNlZG9uMFxzbmV4dDYzXG5vbGluZVxydGxjaFxhZjIwXGFsYW5nMjU1XGx0cmNoXGhpY2hcYWxhbmcyNTVcZGJjaFxsYW5nZmUyNTVcbG9jaFxsYW5nMjU1IEluZGV4O30Ke1xzNjRcc2Jhc2Vkb24wXHNuZXh0MFxxY1xydGxjaFxhZnMyOFxsdHJjaFxmczI4XGIgVGl0bGU7fQp7XHM2NVxzYmFzZWRvbjBcc25leHQwXGtlZXBcc2IzNjBcc2E4MFxrZWVwblxjZjBccnRsY2hcYWYxNVxhZnM0OFxsdHJjaFxoaWNoXGFmMTBcYWZzNDhcYWlcZGJjaFxhZjE1XGxvY2hcZjEwXGZzNDhcaSBTdWJ0aXRsZTt9CntcczY2XHNiYXNlZG9uMFxzbmV4dDY2IEhlYWRlciBhbmQgRm9vdGVyO30Ke1xzNjdcc2Jhc2Vkb24wXHNuZXh0NjdcdHFjXHR4NDY4MFx0cXJcdHg5MzYwIGhlYWRlcjt9CntcczY4XHNiYXNlZG9uMFxzbmV4dDY4XHRxY1x0eDQ2ODBcdHFyXHR4OTM2MCBmb290ZXI7fQp7XHM2OVxzYmFzZWRvbjBcc25leHQ2OVxydGxjaFxhZnMyMFxsdHJjaFxmczIwIGFubm90YXRpb24gdGV4dDt9CntcczcwXHNiYXNlZG9uNjlcc25leHQ2OVxydGxjaFxhYlxsdHJjaFxiIGFubm90YXRpb24gc3ViamVjdDt9CntcczcxXHNiYXNlZG9uMFxzbmV4dDcxXHJ0bGNoXGFmMThcYWZzMThcbHRyY2hcZjdcZnMxOCBCYWxsb29uIFRleHQ7fQp7XHM3MlxzYmFzZWRvbjBcc25leHQ3MlxmaTBcbGk3MjBcbGluNzIwXHJpMFxyaW4wXHNiMFxzYTBcY29udGV4dHVhbHNwYWNlIExpc3QgUGFyYWdyYXBoO30Ke1xzNzNcc2Jhc2Vkb24wXHNuZXh0NzNcbm9saW5lIFRhYmxlIENvbnRlbnRzO30Ke1xzNzRcc2Jhc2Vkb243M1xzbmV4dDc0XHFjXG5vbGluZVxydGxjaFxhYlxsdHJjaFxiIFRhYmxlIEhlYWRpbmc7fQp9e1wqXGxpc3R0YWJsZXtcbGlzdFxsaXN0dGVtcGxhdGVpZDEKe1xsaXN0bGV2ZWxcbGV2ZWxuZmMyNTVcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzJ7XGxldmVsdGV4dCBcJzAwO317XGxldmVsbnVtYmVyczt9XGZpMFxsaTB9CntcbGlzdGxldmVsXGxldmVsbmZjMjU1XGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cye1xsZXZlbHRleHQgXCcwMDt9e1xsZXZlbG51bWJlcnM7fVxmaTBcbGkwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzI1NVxsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MntcbGV2ZWx0ZXh0IFwnMDA7fXtcbGV2ZWxudW1iZXJzO31cZmkwXGxpMH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyNTVcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzJ7XGxldmVsdGV4dCBcJzAwO317XGxldmVsbnVtYmVyczt9XGZpMFxsaTB9CntcbGlzdGxldmVsXGxldmVsbmZjMjU1XGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cye1xsZXZlbHRleHQgXCcwMDt9e1xsZXZlbG51bWJlcnM7fVxmaTBcbGkwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzI1NVxsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MntcbGV2ZWx0ZXh0IFwnMDA7fXtcbGV2ZWxudW1iZXJzO31cZmkwXGxpMH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyNTVcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzJ7XGxldmVsdGV4dCBcJzAwO317XGxldmVsbnVtYmVyczt9XGZpMFxsaTB9CntcbGlzdGxldmVsXGxldmVsbmZjMjU1XGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cye1xsZXZlbHRleHQgXCcwMDt9e1xsZXZlbG51bWJlcnM7fVxmaTBcbGkwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzI1NVxsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MntcbGV2ZWx0ZXh0IFwnMDA7fXtcbGV2ZWxudW1iZXJzO31cZmkwXGxpMH1cbGlzdGlkMX0Ke1xsaXN0XGxpc3R0ZW1wbGF0ZWlkMgp7XGxpc3RsZXZlbFxsZXZlbG5mYzIzXGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cwe1xsZXZlbHRleHQgXCcwMVx1LTM5MTMgPzt9e1xsZXZlbG51bWJlcnM7fVxmNFxjZjBccnRsY2hcYWY0XGx0cmNoXGZpLTM2MFxsaTcyMH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdTExMSA/O317XGxldmVsbnVtYmVyczt9XGYyMVxydGxjaFxhZjE3XGx0cmNoXGZpLTM2MFxsaTE0NDB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzkyOSA/O317XGxldmVsbnVtYmVyczt9XGY2XHJ0bGNoXGFmNlxsdHJjaFxmaS0zNjBcbGkyMTYwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzIzXGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cwe1xsZXZlbHRleHQgXCcwMVx1LTM5MTMgPzt9e1xsZXZlbG51bWJlcnM7fVxmNFxydGxjaFxhZjRcbHRyY2hcZmktMzYwXGxpMjg4MH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdTExMSA/O317XGxldmVsbnVtYmVyczt9XGYyMVxydGxjaFxhZjE3XGx0cmNoXGZpLTM2MFxsaTM2MDB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzkyOSA/O317XGxldmVsbnVtYmVyczt9XGY2XHJ0bGNoXGFmNlxsdHJjaFxmaS0zNjBcbGk0MzIwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzIzXGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cwe1xsZXZlbHRleHQgXCcwMVx1LTM5MTMgPzt9e1xsZXZlbG51bWJlcnM7fVxmNFxydGxjaFxhZjRcbHRyY2hcZmktMzYwXGxpNTA0MH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdTExMSA/O317XGxldmVsbnVtYmVyczt9XGYyMVxydGxjaFxhZjE3XGx0cmNoXGZpLTM2MFxsaTU3NjB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzkyOSA/O317XGxldmVsbnVtYmVyczt9XGY2XHJ0bGNoXGFmNlxsdHJjaFxmaS0zNjBcbGk2NDgwfVxsaXN0aWQyfQp7XGxpc3RcbGlzdHRlbXBsYXRlaWQzCntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzk3NyA/O317XGxldmVsbnVtYmVyczt9XGY2XHJ0bGNoXGFmNlxhZnMxOFxsdHJjaFxmczE4XGIwXGZpLTQzMlxsaTcyMH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdTExMSA/O317XGxldmVsbnVtYmVyczt9XGYyMVxydGxjaFxhZjVcbHRyY2hcZmktMzYwXGxpMTQ0MH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdS0zOTI5ID87fXtcbGV2ZWxudW1iZXJzO31cZjZccnRsY2hcYWY2XGx0cmNoXGZpLTM2MFxsaTIxNjB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzkxMyA/O317XGxldmVsbnVtYmVyczt9XGY0XHJ0bGNoXGFmNFxsdHJjaFxmaS0zNjBcbGkyODgwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzIzXGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cwe1xsZXZlbHRleHQgXCcwMVx1MTExID87fXtcbGV2ZWxudW1iZXJzO31cZjIxXHJ0bGNoXGFmNVxsdHJjaFxmaS0zNjBcbGkzNjAwfQp7XGxpc3RsZXZlbFxsZXZlbG5mYzIzXGxldmVsamMwXGxldmVsc3RhcnRhdDFcbGV2ZWxmb2xsb3cwe1xsZXZlbHRleHQgXCcwMVx1LTM5MjkgPzt9e1xsZXZlbG51bWJlcnM7fVxmNlxydGxjaFxhZjZcbHRyY2hcZmktMzYwXGxpNDMyMH0Ke1xsaXN0bGV2ZWxcbGV2ZWxuZmMyM1xsZXZlbGpjMFxsZXZlbHN0YXJ0YXQxXGxldmVsZm9sbG93MHtcbGV2ZWx0ZXh0IFwnMDFcdS0zOTEzID87fXtcbGV2ZWxudW1iZXJzO31cZjRccnRsY2hcYWY0XGx0cmNoXGZpLTM2MFxsaTUwNDB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUxMTEgPzt9e1xsZXZlbG51bWJlcnM7fVxmMjFccnRsY2hcYWY1XGx0cmNoXGZpLTM2MFxsaTU3NjB9CntcbGlzdGxldmVsXGxldmVsbmZjMjNcbGV2ZWxqYzBcbGV2ZWxzdGFydGF0MVxsZXZlbGZvbGxvdzB7XGxldmVsdGV4dCBcJzAxXHUtMzkyOSA/O317XGxldmVsbnVtYmVyczt9XGY2XHJ0bGNoXGFmNlxsdHJjaFxmaS0zNjBcbGk2NDgwfVxsaXN0aWQzfQp9e1xsaXN0b3ZlcnJpZGV0YWJsZXtcbGlzdG92ZXJyaWRlXGxpc3RpZDFcbGlzdG92ZXJyaWRlY291bnQwXGxzMX17XGxpc3RvdmVycmlkZVxsaXN0aWQyXGxpc3RvdmVycmlkZWNvdW50MFxsczJ9e1xsaXN0b3ZlcnJpZGVcbGlzdGlkM1xsaXN0b3ZlcnJpZGVjb3VudDBcbHMzfX17XCpcZ2VuZXJhdG9yIExpYnJlT2ZmaWNlLzI1LjguMi4yJExpbnV4X1g4Nl82NCBMaWJyZU9mZmljZV9wcm9qZWN0L2Q0MDFmMjEwN2NjYWI4ZjkyNGE4ZTJkZjQwZjU3M2FhYjc2MDViNmZ9e1xpbmZve1xjcmVhdGltXHlyMjAxOVxtbzEyXGR5NVxocjIwXG1pbjExfXtccmV2dGltXHlyMjAyNFxtbzdcZHkyXGhyMTZcbWluNDV9e1xwcmludGltXHlyMFxtbzBcZHkwXGhyMFxtaW4wfX17XCpcdXNlcnByb3Bze1xwcm9wbmFtZSBBcHBWZXJzaW9ufVxwcm9wdHlwZTMwe1xzdGF0aWN2YWwgMTYuMDAwMH19XGRlZnRhYjcyMApcaHlwaGF1dG8xXHZpZXdzY2FsZTEwMFxmb3Jtc2hhZGVcbm9icmt3cnB0YmxccGFwZXJoMTU4NDBccGFwZXJ3MTIyNDBcbWFyZ2wxMDA4XG1hcmdyMTAwOFxtYXJndDEwMDhcbWFyZ2I3MjBcc2VjdGRcc2Jrbm9uZVxzZnRubmFyXHNhZnRubnJsY1xzZWN0dW5sb2NrZWQxXHBnd3N4bjEyMjQwXHBnaHN4bjE1ODQwXG1hcmdsc3huMTAwOFxtYXJncnN4bjEwMDhcbWFyZ3RzeG4xMDA4XG1hcmdic3huNzIwXGZ0bmJqXGZ0bnN0YXJ0MVxmdG5yc3Rjb250XGZ0bm5hclxmZXRcYWZ0bnJzdGNvbnRcYWZ0bnN0YXJ0MVxhZnRubnJsY1xodG1hdXRzcAp7XCpcZnRuc2VwXGNoZnRuc2VwfVxwZ25kZWNccGFyZFxwbGFpbiBcczY0XHFjXHJ0bGNoXGFmczI4XGx0cmNoXGZzMjhcYlxzbDI3NlxzbG11bHQxe1xydGxjaFxhZjExXGFmczQ4XGx0cmNoXGYxMVxmczQ4CkphYmJhIHRoZSBIdXR9CntccnRsY2hcYWYxMVxhZnM0OFxsdHJjaFxoaWNoXGFmMTFcYWZzNDhcZGJjaFxhZnM0OFxsb2NoXGYxMVxmczQ4XHBhcn1ccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xzbDI3NlxzbG11bHQxXHFje1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCjEwIFRlc3QgTGFuZSBcdTgyMjZcJzNmIFRlc3RpbmcsIE5ZIDAwMDAwfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxoaWNoXGFmMTJcYWZzMjJcZGJjaFxhZjE2XGxvY2hcZjEyXGZzMjIKIH17XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKXHU4MjI2XCczZiB9e1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGhpY2hcYWYxMlxhZnMyMlxkYmNoXGFmMTZcbG9jaFxmMTJcZnMyMgo4ODgtNjk2LTI5MDAgfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgpcdTgyMjZcJzNmIGphYmJhdGhlaHV0QG1haWxpbmF0b3IuY29tfQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXHNsMjc2XHNsbXVsdDFccWNcc2I0MDBcc2E0MFxicmRydFxicmRyc1xicmRydzE1XGJyZHJjZjE5XGJyc3AzNjBcYnJkcmxcYnJkcm5vbmVcYnJkcmJcYnJkcm5vbmVcYnJkcnJcYnJkcm5vbmV7XGV4cG5kMlxleHBuZHR3MTBccnRsY2hcYWYxMVxhZnMzMFxsdHJjaFxmMTFcZnMzMApBQ0NPVU5USU5HIE1BTkFHRVJ9CntcZXhwbmQyXGV4cG5kdHcxMFxydGxjaFxhZjExXGFmczMwXGx0cmNoXGhpY2hcYWYxMVxhZnMzMFxkYmNoXGFmczMwXGxvY2hcZjExXGZzMzBccGFyfVxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXHFqXHNiMTgwXHNhMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgpIaWdobHkgb3JnYW5pemVkIGFuZCBkaWxpZ2VudCBwcm9mZXNzaW9uYWwgZHJhd2luZyB1cG9uIHRlbiB5ZWFycyBvZiBleHBlcmllbmNlIGluIGFjY291bnRpbmcgYW5kIGZpbmFuY2UgdG8gY29udHJpYnV0ZSB0byBzbW9vdGggYW5kIHByb2R1Y3RpdmUgb3BlcmF0aW9ucy4gQ29sbGFib3JhdGUgY3Jvc3MtZnVuY3Rpb25hbGx5IGFjcm9zcyBvcmdhbml6YXRpb25hbCBsZXZlbHMgdG8gYnVpbGQgY29uc2Vuc3VzLCB0cmFjayBiZW5jaG1hcmsgYWNoaWV2ZW1lbnQsIGFuZCB0cm91Ymxlc2hvb3QgZW1lcmdpbmcgaXNzdWVzLiB9CntccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxoaWNoXGFmMTJcYWZzMjJcZGJjaFxhZnMyMlxsb2NoXGYxMlxmczIyXHBhcn1ccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xxY1xzYjEyMFxzYTEyMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMlxpCi0gQ29yZSBDb21wZXRlbmNpZXMgLX0Ke1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGhpY2hcYWYxMlxhZnMyMlxhaVxkYmNoXGFmczIyXGFpXGxvY2hcZjEyXGZzMjJcaVxwYXJ9XHRyb3dkXHRycWNcbHRycm93XHRycGFkZGZ0M1x0cnBhZGR0MFx0cnBhZGRmbDNcdHJwYWRkbDBcdHJwYWRkZmIzXHRycGFkZGIwXHRycGFkZGZyM1x0cnBhZGRyMFxjbHBhZGZ0M1xjbHBhZHQxMDhcY2xwYWRmcjNcY2xwYWRyMTA4XGNsdmVydGFsdFxjZWxseDUzMDZcY2xwYWRmdDNcY2xwYWR0MTA4XGNscGFkZnIzXGNscGFkcjEwOFxjbHZlcnRhbHRcY2VsbHgxMDIyNFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXGludGJse1xsaXN0dGV4dFxwYXJkXHBsYWluIFxjZjBccnRsY2hcYWY0XGx0cmNoXGY0IFx1LTM5MTNcJzNmXHRhYn1caWx2bDBcbHMyIFxmaS0zNjBcbGkxMDgwXGxpbjEwODBcbm93aWRjdGxwYXJcZmktMjcwXGxpMzYwXGxpbjM2MFxyaTBccmluMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgpCb29ra2VlcGluZzogQVAsIEFSLCBBY2NvdW50IFJlY29uY2lsaWF0aW9ucywgUGF5cm9sbH0KXHBhciBccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xpbnRibHtcbGlzdHRleHRccGFyZFxwbGFpbiBcY2YwXHJ0bGNoXGFmNFxsdHJjaFxmNCBcdS0zOTEzXCczZlx0YWJ9XGlsdmwwXGxzMiBcZmktMzYwXGxpMTA4MFxsaW4xMDgwXG5vd2lkY3RscGFyXGZpLTI3MFxsaTM2MFxsaW4zNjBccmkwXHJpbjB7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKT3JhbCBhbmQgV3JpdHRlbiBDb21tdW5pY2F0aW9uc30KXHBhciBccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xpbnRibHtcbGlzdHRleHRccGFyZFxwbGFpbiBcY2YwXHJ0bGNoXGFmNFxsdHJjaFxmNCBcdS0zOTEzXCczZlx0YWJ9XGlsdmwwXGxzMiBcZmktMzYwXGxpMTA4MFxsaW4xMDgwXG5vd2lkY3RscGFyXGZpLTI3MFxsaTM2MFxsaW4zNjBccmkwXHJpbjB7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKRmVkZXJhbCBhbmQgU3RhdGUgVGF4IFByZXBhcmF0aW9ufVxjZWxsXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzNcaW50Ymx7XGxpc3R0ZXh0XHBhcmRccGxhaW4gXGNmMFxydGxjaFxhZjRcbHRyY2hcZjQgXHUtMzkxM1wnM2ZcdGFifVxpbHZsMFxsczIgXGZpLTM2MFxsaTEwODBcbGluMTA4MFxub3dpZGN0bHBhclxmaS0yNzBcbGkzNjBcbGluMzYwXHJpMFxyaW4we1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCk9mZmljZSBBZG1pbmlzdHJhdGlvbn0KXHBhciBccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xpbnRibHtcbGlzdHRleHRccGFyZFxwbGFpbiBcY2YwXHJ0bGNoXGFmNFxsdHJjaFxmNCBcdS0zOTEzXCczZlx0YWJ9XGlsdmwwXGxzMiBcZmktMzYwXGxpMTA4MFxsaW4xMDgwXG5vd2lkY3RscGFyXGZpLTI3MFxsaTM2MFxsaW4zNjBccmkwXHJpbjB7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKUG9zaXRpdmUgVGVhbXdvcmsgYW5kIENvbGxhYm9yYXRpb259ClxwYXIgXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzNcaW50Ymx7XGxpc3R0ZXh0XHBhcmRccGxhaW4gXGNmMFxydGxjaFxhZjRcbHRyY2hcZjQgXHUtMzkxM1wnM2ZcdGFifVxpbHZsMFxsczIgXGZpLTM2MFxsaTEwODBcbGluMTA4MFxub3dpZGN0bHBhclxmaS0yNzBcbGkzNjBcbGluMzYwXHJpMFxyaW4we1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyClF1aWNrQm9va3MgYW5kIE1pY3Jvc29mdCBPZmZpY2UgU3VpdGV9XGNlbGxccm93XHBhcmQgXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzNcc2wyNzZcc2xtdWx0MVxzYjQwMFxzYTIwMFxicmRydFxicmRyc1xicmRydzE1XGJyZHJjZjE5XGJyc3AzNjBcYnJkcmxcYnJkcm5vbmVcYnJkcmJcYnJkcm5vbmVcYnJkcnJcYnJkcm5vbmV7XGV4cG5kMlxleHBuZHR3MTBcY2YxXHJ0bGNoXGFmMTFcYWZzMzBcbHRyY2hcZjExXGZzMzAKV09SSyBFWFBFUklFTkNFe1wqXGJrbWtzdGFydCBfSGxrNTIyNTI1NzAzfXtcKlxia21rZW5kIF9IbGs1MjI1MjU3MDN9fQp7XGV4cG5kMlxleHBuZHR3MTBcY2YxXHJ0bGNoXGFmMTFcYWZzMzBcbHRyY2hcaGljaFxhZjExXGFmczMwXGRiY2hcYWZzMzBcbG9jaFxmMTFcZnMzMFxwYXJ9XHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzNcc2IyNDBcc2Ewe1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyXGIKQmFyY2xheSBQcm9mZXNzaW9uYWwgQWNjb3VudGluZyBTZXJ2aWNlcywgSW5jLix9e1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCiBNaWxsdG93biwgTUF9ClxwYXIgXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzN7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjJcaQpQcmFjdGljZSBNYW5hZ2VyfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgogKE9jdG9iZXIgMjAxNCBcdTgyMTFcJzNmIFByZXNlbnQpfQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXHNiMTAwXHNhMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgpIYW5kbGUgYW5kIG9wdGltaXplIGFsbCBhZG1pbmlzdHJhdGl2ZSBvcGVyYXRpb25zIGZvciA3LXBoeXNpY2lhbiBtZWRpY2FsIHByYWN0aWNlLiBTY29wZSBvZiByZXNwb25zaWJpbGl0aWVzIGluY2x1ZGVzOiBhY2NvdW50cyByZWNlaXZhYmxlIC8gcGF5YWJsZSwgYWNjb3VudGluZywgYnVkZ2V0IHJldmlldywgYW5kIHByZXBhcmF0aW9uIG9mIGZpbmFuY2lhbHMgZm9yIENQQS4gfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMlxpClNlbGVjdGVkIENvbnRyaWJ1dGlvbnM6fQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xsaXN0dGV4dFxwYXJkXHBsYWluIFxydGxjaFxhZjZcYWZzMThcbHRyY2hcZjZcZnMxOFxiMCBcdS0zOTc3XCczZlx0YWJ9XGlsdmwwXGxzMyBcZmktNDMyXGxpMTYyN1xsaW4xNjI3XHR4OTAwXGZpLTM2MFxsaTkwN1xsaW45MDdccmkwXHJpbjBcc2IxMDBcc2Ewe1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCkVsaW1pbmF0ZWQgYmFja2xvZyBpbiBmaW5hbmNpYWwgcmVwb3J0aW5nIHJlc3BvbnNpYmlsaXRpZXMgd2l0aGluIH17XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjJcYgoyNSBkYXlzIG9mIGluaXRpYWwgaGlyaW5nfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgoufQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xsaXN0dGV4dFxwYXJkXHBsYWluIFxydGxjaFxhZjZcYWZzMThcbHRyY2hcZjZcZnMxOFxiMCBcdS0zOTc3XCczZlx0YWJ9XGlsdmwwXGxzMyBcZmktNDMyXGxpMTYyN1xsaW4xNjI3XHR4OTAwXGZpLTM2MFxsaTkwN1xsaW45MDdccmkwXHJpbjBcc2IxMDBcc2Ewe1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyClN1Y2Nlc3NmdWxseSBwcm9qZWN0LW1hbmFnZWQgYWNxdWlzaXRpb24gYW5kIGluc3RhbGxhdGlvbiBvZiBzdGF0ZS1vZi10aGUtYXJ0IGhlYWx0aGNhcmUgYmlsbGluZyBzb2Z0d2FyZSB0aGF0IHJlZHVjZWQgZXJyb3JzIH17XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjJcYgpieSAzMCUufQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXHNiMzYwXHNhMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMlxiClJlZGRpbmd0b24gSGFyZHdhcmV9e1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCiwgV2VsbGluZ3RvbiwgTUF9ClxwYXIgXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzN7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjJcaQpBY2NvdW50YW50fXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgogKEF1Z3VzdCAyMDA4IFx1ODIxMVwnM2YgT2N0b2JlciAyMDE0KX0KXHBhciBccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM1xzYjEwMFxzYTB7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKU2tpbGxmdWxseSBwZXJmb3JtZWQgYWxsIG9mZmljZSBhY2NvdW50aW5nIHRhc2tzIGZvciBzbWFsbCBoYXJkd2FyZSBzdG9yZS4gR2F0aGVyZWQgYW5kIGFuYWx5emVkIGZpbmFuY2lhbCBkYXRhLCBhbmQgcHJvY2Vzc2VkIGFjY291bnRzIHBheWFibGUsIGFjY291bnRzIHJlY2VpdmFibGUsIGFuZCBwYXlyb2xsIGZvciB3b3JrZm9yY2Ugb2YgMzUgcGVyc29ubmVsLiB9e1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyXGkKU2VsZWN0ZWQgQ29udHJpYnV0aW9uczp9ClxwYXIgXHBhcmRccGxhaW4gXHMwXHFsXHdpZGN0bHBhclxoeXBocGFyMFxzYjBcc2EwXGx0cnBhclxrZXJuaW5nMFxjZjBccnRsY2hcYWY4XGFmczI0XGFsYW5nMTAyNVxsdHJjaFxoaWNoXGFmOFxhZnMyNFxhbGFuZzEwMzNcZGJjaFxhZjhcbGFuZ2ZlMTAzM1xsb2NoXGY4XGZzMjRcbGFuZzEwMzN7XGxpc3R0ZXh0XHBhcmRccGxhaW4gXHJ0bGNoXGFmNlxhZnMxOFxsdHJjaFxmNlxmczE4XGIwIFx1LTM5NzdcJzNmXHRhYn1caWx2bDBcbHMzIFxmaS00MzJcbGkxNjI3XGxpbjE2MjdcdHg5MDBcZmktMzYwXGxpOTA3XGxpbjkwN1xyaTBccmluMFxzYjEwMFxzYTB7XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKQ3JlYXRlZCBtb250aGx5IGFuZCBhbm51YWwgYnVkZ2V0IGFuZCBmb3JlY2FzdCByZXBvcnRzIHRoYXQgY29udHJpYnV0ZWQgdG8gYSB9e1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyXGIKNSUgZGVjcmVhc2UgaW4gYW5udWFsIGV4cGVuZGl0dXJlc317XHJ0bGNoXGFmMTJcYWZzMjJcbHRyY2hcZjEyXGZzMjIKLn0KXHBhciBccGFyZFxwbGFpbiBcczBccWxcd2lkY3RscGFyXGh5cGhwYXIwXHNiMFxzYTBcbHRycGFyXGtlcm5pbmcwXGNmMFxydGxjaFxhZjhcYWZzMjRcYWxhbmcxMDI1XGx0cmNoXGhpY2hcYWY4XGFmczI0XGFsYW5nMTAzM1xkYmNoXGFmOFxsYW5nZmUxMDMzXGxvY2hcZjhcZnMyNFxsYW5nMTAzM3tcbGlzdHRleHRccGFyZFxwbGFpbiBccnRsY2hcYWY2XGFmczE4XGx0cmNoXGY2XGZzMThcYjAgXHUtMzk3N1wnM2ZcdGFifVxpbHZsMFxsczMgXGZpLTQzMlxsaTE2MjdcbGluMTYyN1x0eDkwMFxmaS0zNjBcbGk5MDdcbGluOTA3XHJpMFxyaW4wXHNiMTAwXHNhMHtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgpNaWdyYXRlZCBhY2NvdW50aW5nIHN5c3RlbSB0byBhIG5ldyBzb2Z0d2FyZSBwcm92aWRlciBhbmQgaW50ZWdyYXRlZCBhbGwgYWNjb3VudGluZywgYm9va2tlZXBpbmcsIHRheCwgYW5kIHBheXJvbGwgZnVuY3Rpb25zIGludG8gdGhlIG5ldyBzeXN0ZW0ufQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMzXHNsMjc2XHNsbXVsdDFcc2I0MDBcc2EyMDBcYnJkcnRcYnJkcnNcYnJkcncxNVxicmRyY2YxOVxicnNwNDAwXGJyZHJsXGJyZHJub25lXGJyZHJiXGJyZHJub25lXGJyZHJyXGJyZHJub25le1xleHBuZDJcZXhwbmR0dzEwXHJ0bGNoXGFmMTFcYWZzMzBcbHRyY2hcZjExXGZzMzAKRURVQ0FUSU9OICYgQ1JFREVOVElBTFN9CntcZXhwbmQyXGV4cG5kdHcxMFxydGxjaFxhZjExXGFmczMwXGx0cmNoXGhpY2hcYWYxMVxhZnMzMFxkYmNoXGFmczMwXGxvY2hcZjExXGZzMzBccGFyfVxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyXGIKVmVybW9udCBTdGF0ZSBDb2xsZWdlfXtccnRsY2hcYWYxMlxhZnMyMlxsdHJjaFxmMTJcZnMyMgosIFJ1dGxhbmQsIENUfQpccGFyIFxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCkJhY2hlbG9yIG9mIFNjaWVuY2UgaW4gQWNjb3VudGluZywgMjAwN30Ke1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGhpY2hcYWYxMlxhZnMyMlxkYmNoXGFmczIyXGxvY2hcZjEyXGZzMjJccGFyfVxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCkNlcnRpZmljYXRpb246IENQQX0Ke1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGhpY2hcYWYxMlxhZnMyMlxkYmNoXGFmczIyXGxvY2hcZjEyXGZzMjJccGFyfVxwYXJkXHBsYWluIFxzMFxxbFx3aWRjdGxwYXJcaHlwaHBhcjBcc2IwXHNhMFxsdHJwYXJca2VybmluZzBcY2YwXHJ0bGNoXGFmOFxhZnMyNFxhbGFuZzEwMjVcbHRyY2hcaGljaFxhZjhcYWZzMjRcYWxhbmcxMDMzXGRiY2hcYWY4XGxhbmdmZTEwMzNcbG9jaFxmOFxmczI0XGxhbmcxMDMze1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGYxMlxmczIyCkdQQTogMy45NX0Ke1xydGxjaFxhZjEyXGFmczIyXGx0cmNoXGhpY2hcYWYxMlxhZnMyMlxkYmNoXGFmczIyXGxvY2hcZjEyXGZzMjJccGFyfX0=\"\t\r\n  \t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>job<ul>\n<li>id - <strong>REQUIRED</strong> - for which the applicant wants to apply, id fetched form the list of job postings</li>\n</ul>\n</li>\n<li>candidate<ul>\n<li>first_name - <strong>REQUIRED</strong> - applicant first name</li>\n<li>last_name - <strong>OPTIONAL</strong> - applicant last name</li>\n<li>city - <strong>OPTIONAL</strong> - applicant city</li>\n<li>state - <strong>OPTIONAL</strong> - applicant state</li>\n<li>zip - <strong>OPTIONAL</strong> - applicant zip</li>\n<li>country - <strong>OPTIONAL</strong> - applicant country</li>\n<li>email - <strong>REQUIRED</strong> - email id of the applicant</li>\n<li>cell_phone - <strong>OPTIONAL</strong></li>\n<li>phone - <strong>OPTIONAL</strong></li>\n</ul>\n</li>\n<li>file_name - <strong>OPTIONAL</strong></li>\n<li>file_data - <strong>OPTIONAL</strong> - file upload .pdf, .doc are acceptable</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n      \"api_request_query\": {\n        \"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c9LY+FLhon0i9YXLbuP5zEk=\"},\n        \"candidate\":{\n            \"first_name\": \"Testing\",\n            \"email\": \"tst@testing.biz\",\n            \"cell_phone\": 9009999999\n        },\n        \"file_name\": \"Resume.doc\",\n        \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\"    \n          }\n  }\n  \n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d9b90788-05cf-47c0-8fec-efa23ea20ed3","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c2P4J7ec9eLeIrxHVvs_L-A=\"},\r\n        \"candidate\":{\r\n            \"first_name\": \"Testing\",\r\n            \"email\": \"tst@testing.biz\",\r\n            \"cell_phone\": 9009999999\r\n        },\r\n        \"file_name\": \"Resume.doc\",\r\n        \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\"    \r\n          }\r\n  \t}\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:01:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"506"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73918"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"success\": 1,\n            \"status\": 201,\n            \"message\": \"Your application for the Avionic Technician position is submitted successfully.\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"34.660716\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2023-02-23T19:01:39\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/applyJobWithOutRegistration/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"34.675061\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"43256e7d-4360-4453-9957-320ff7d77472"}],"id":"e96d5d45-6fab-47ab-ae76-e38e1152d211","_postman_id":"e96d5d45-6fab-47ab-ae76-e38e1152d211","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"8456820e-0197-476c-a800-55bb153cb6d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5c05a4d2-24af-4e65-afb3-84ea7814c8ee","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:09:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"389"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330911"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:09:53\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:09:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.02737\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"8456820e-0197-476c-a800-55bb153cb6d7"},{"name":"Candidate Set","id":"2497babe-be7f-4574-a1e1-f25843e3e032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>Not implemented by Ceipal.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"075af163-9df2-4ef0-87cd-bde30dc95733","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:09:14 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"390"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330908"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:09:14\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:09:14\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.027698\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"2497babe-be7f-4574-a1e1-f25843e3e032"},{"name":"Candidate Update","id":"f33275b8-f152-41f6-980d-529892981eb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"590ae2f8-c923-471d-b7fc-fa7ea35d8809","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:10:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"389"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330914"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:10:42\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:10:42\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.010219\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f33275b8-f152-41f6-980d-529892981eb1"},{"name":"Candidate Get By ID","id":"373e07cb-a7db-4f89-b695-223471ae0c1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0fa81246-928f-40fc-bb2d-5dec4b15dab5","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:11:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"389"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73936"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:11:04\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:11:04\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.009581\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"373e07cb-a7db-4f89-b695-223471ae0c1e"},{"name":"Candidate Set Education","id":"f79cf7c9-3b57-48fc-ac7c-cbcf10c63f2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0141ce41-8446-404a-a66d-f6afbdd3c4c2","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:12:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"396"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73939"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:12:07\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:12:07\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.003892\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f79cf7c9-3b57-48fc-ac7c-cbcf10c63f2f"},{"name":"Candidate Get Education","id":"f5127087-5b8f-47bf-8230-a7855f516e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"48ee4642-4914-429f-8dec-f8b886cd1094","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:12:33 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"397"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330920"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:12:33\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:12:33\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.004865\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f5127087-5b8f-47bf-8230-a7855f516e9e"},{"name":"Candidate Set Work History","id":"fdb90730-0574-48f8-ac75-a9008f6cc9ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"\",\r\n      \"api_pw\": \"\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c6127a9c-e795-4da6-a6c8-a193763975f9","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"\",\r\n      \"api_pw\": \"\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:13:14 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"402"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73942"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:13:14\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:13:14\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.010348\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"fdb90730-0574-48f8-ac75-a9008f6cc9ff"},{"name":"Candidate Get Work History","id":"bd760b5c-0d79-44a4-ad7a-e21e6c8d91c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"\",\r\n      \"api_pw\": \"\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2543c703-cd64-4670-85a9-af50362932da","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"\",\r\n      \"api_pw\": \"\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:13:38 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"404"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73945"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:13:38\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:13:38\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.008973\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"bd760b5c-0d79-44a4-ad7a-e21e6c8d91c4"}],"id":"513177b5-b78f-4361-b2d5-a5af3c2bd062","_postman_id":"513177b5-b78f-4361-b2d5-a5af3c2bd062","description":""},{"name":"Custom","item":[{"name":"Custom","id":"7acb0f9a-8ab9-4ad1-a2da-5bc4db8ef11e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to Ceipal via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f10e4c1d-d4e5-45e6-b383-446cfbd3db37","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:14:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"383"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"330923"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:14:12\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:14:12\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.004499\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"7acb0f9a-8ab9-4ad1-a2da-5bc4db8ef11e"}],"id":"f942c8a3-8cdb-4356-9150-8c556e9cbbf6","_postman_id":"f942c8a3-8cdb-4356-9150-8c556e9cbbf6","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"6195410f-8ff4-4d09-a680-b6dd3c368cdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7191f917-e4b0-4dbc-b3ea-61a757752fb7","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Feb 2023 19:17:00 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"388"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"73948"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-23T19:17:00\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-23T19:17:00\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.003911\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"6195410f-8ff4-4d09-a680-b6dd3c368cdb"}],"id":"0ee9379f-68fd-43fe-9001-a1adc1776673","_postman_id":"0ee9379f-68fd-43fe-9001-a1adc1776673","description":""},{"name":"Job","item":[{"name":"Job Get","id":"0049cb9f-0d89-45be-b79b-bfe89fd6e337","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n         \"api_request_fields\": \"business_unit_id\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"41616248-90ff-40f4-bb9b-2a5ac28186e0","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 22:23:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"8359"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7595"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"23.00-28.00 Hourly USD\",\n                    \"status\": \"Active\",\n                    \"description\": \"<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><strong><span style=\\\"line-height:normal\\\">JOB TITLE: Tool Crib Attendant - Hiring Fast!</span></strong></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>LOCATION: Van Nuys, CA</b></span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>PAY RATE: $23.00 - $28.00 per hour</b></span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>***MUST BE US PERSONS***</b></span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">We are a national staffing firm working with some of the top-tier aerospace companies in the world! And we are looking for first-class employees to work with our clients.&nbsp; </span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>&nbsp;Qualifying Questions:&nbsp;</b></span></span></span></p>\\n\\n<ul>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Are you a US persons as noted in the Job description?&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Do you meet the educational requirements for this job?&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Do you meet the experience requirements for this job?&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Are you able to commute to the job location or are you able to relocate for the role?&nbsp;</span></span></span></p>\\n\\t</li>\\n</ul>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>Details:&nbsp;</b></span></span></span></p>\\n\\n<ul>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Contract 6 mos.&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Night shift</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Medical, dental, and vision plan with United Healthcare&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Robust 401K&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Potential for bonuses&nbsp;</span></span></span></p>\\n\\t</li>\\n\\t<li style=\\\"margin-bottom:11px\\\">\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Sick pay, and holiday pay for those who qualify&nbsp;</span></span></span></p>\\n\\t</li>\\n</ul>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\"><b>Summary:&nbsp;</b></span></span></span></p>\\n\\n<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">This position requires a basic knowledge of purchasing and <span style=\\\"background-color:#f1c40f;\\\">inventory control with an ability to adapt with changing priorities. Responsibilities include, but are not limited to procurement, organization and distribution of parts and materials, receiving inspection, processing of cores and management of purchase orders.</span></span></span></p>\\n\\n<div>\\n<p><strong><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Responsibilities:</span></span></strong></p>\\n\\n<ul>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Source parts and materials for aircraft maintenance and inventory.</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Establish/maintain relationships with vendors to ensure a that we obtain the best pricing and highest quality service</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Provide quotes internally and externally while ensuring that profit margins are maintained</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Manage purchase orders to vendors and suppliers</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Monitor outside services to ensure on-time delivery</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Pick up and deliver parts and materials as needed</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Perform receiving inspection of parts and materials to ensure conformity with FAA regulations and customer requirements</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Process core returns to vendors</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Ensure conformity with FAA regulatory requirements (Calibration, certification, shelf life, parts quarantine)</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Perform regular inventory, cycle counts and maintain min/max requirements</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Ensure accurate assignment and billing of parts to work orders</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Maintain cleanliness and organization of parts department</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Support after hours &ldquo;On-Call&rdquo; (AOG) support on a rotational basis as required</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Flexible schedule as required to meet the demand of the business</span></span></p>\\n\\t</li>\\n</ul>\\n\\n<p><strong><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Required Skills:</span></span></strong></p>\\n\\n<ul>\\n\\t<li><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">High School Diploma required</span></span></li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Knowledge of corporate aircraft parts is a plus</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Aviation buyer, inventory or material control experience is a plus</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Experience in procurement, organization and distribution of parts and materials, receiving inspection, processing of cores and management of purchase orders.</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Provide quotes internally and externally while ensuring that profit margins are maintained</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Exp managing&nbsp;purchase orders to vendors and suppliers</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Must have proficiency with Microsoft Office Applications </span>(Excel, Word, Outlook) and aptitude to learn customized company software programs</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Must be detail oriented and able to work productively, independently or within a team</span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Strong organizational and communication (verbal and written) skills with the ability to self-motivate, handle multiple tasks, meet established targets</span></span></p>\\n\\t</li>\\n</ul>\\n</div>\\n\\n<p>&nbsp;</p>\\n\\n<p><strong><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Desired Skills:</span></span></strong></p>\\n\\n<ul>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Knowledge of Aircraft parts is a plus</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Experience in material control or tool crib is preferred</span></span></span></p>\\n\\t</li>\\n\\t<li>\\n\\t<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"background-color:#f1c40f;\\\">Will consider somene with auto parts store experience if they have a great attitude</span></span></span></p>\\n\\t</li>\\n</ul>\\n\\n<p>&nbsp;</p>\\n\\n<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><strong>*ITAR Definition</strong></span></span></p>\\n\\n<p><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\">Under &sect; 120.14 of the ITAR a U.S. person is defined as&nbsp;<b>a person who is a lawful permanent resident of the United States</b>. A lawful permanent resident is further defined by 8 U.S.C. 1101(a)(20). A U.S. Person is also a protected individual which is defined by 8 U.S.C. 1324b(a)(3).&nbsp;</span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">The Structures Company is a national staffing firm specializing in contract, contract to hire, and direct hire placement opportunities. Our clients rely on us to support their engineering, IT, Production, Maintenance &amp; Repair, and support staff. Our niche recruiting team is one of our biggest strengths and is why we are a top provider of talented professionals to the majority of our clients. They will help you identify the opportunity that best fits your interests while also providing industry-leading customer service.&nbsp;</span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">We support the majority of aerospace OEM&#39;s and tier 1 suppliers across the United States.&nbsp;</span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">The Structures Company LLC is an Affirmative Action/ Equal Opportunity Employer (or AA/ EOE)&nbsp;</span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">Keywords: aerospace, aviation, aircraft&nbsp;</span></span></span></p>\\n\\n<p style=\\\"margin-bottom: 11px;\\\"><span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:Calibri,Verdana,Geneva,sans-serif;\\\"><span style=\\\"line-height:normal\\\">#jobad #national #vij</span></span></span></p>\\n\",\n                    \"date_added\": \"2023-03-01\",\n                    \"category\": \"Airline - Aviation\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxWOyG52lslXxMD2cDoywOk=\",\n                    \"title\": \"Tool Crib Attendant - Hiring Fast!!\",\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Van Nuys\",\n                        \"address1\": null,\n                        \"state\": \"CA\"\n                    }\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c43SGmzf7oR_MRUpjhqqlvw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5Fo9I2HA3-CFfmgbza6yPM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Q8OdPQEpyooMeF28hU7gY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx9qmMj4gLG_PzEZT9OV4no=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_warAKWTYUMXoW3OZdCRF4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Lizzie.barc@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0oAn_TyglbHIF6kFEE9vAU=\",\n                        \"phone\": \"5866480105\",\n                        \"first_name\": \"Lizzie\",\n                        \"last_name\": \"Barc\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9MrfoIq14TnStiw_Fbv_hc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwRpxQJE4JLmWKgKUC1StWI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxtFgvOisNeInKDGwDAXfUg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyngnOqJQH9a3ZK8CA0I_ZQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7UI5WY-xO07V-x-q7dMqXI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                        \"first_name\": \"Izzy\",\n                        \"last_name\": \"Ochoa\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxg_2YVlE20n9n_pt9WiN38=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxWhzBweSS7zRQK3jtu0RUA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c58GRsGOKx9yfrz5gb3_hbs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_yRoGHlqpNMcnUZItb6h4w=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2IiLUbz5E18QDKbhqqVOvU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3OoAV0r6xv1CEydGnLDuXM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwDLfcHd6ah_rV3Xjmeo52A=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwXYI3Eer7OhyOZF-7z_me4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5ZiLyNNG6lq9rNz0ZVwbFc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4qNpCQKOYdCPia3maULowc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2P4J7ec9eLeIrxHVvs_L-A=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8mD9fwX7cui-ZFh1f1ij_8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czb2xeNPQnY30tRcDTbJ2i4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"corey.halliday@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5gOCFdQmTctpLgwB1eUTK4=\",\n                        \"first_name\": \"Corey\",\n                        \"last_name\": \"Halliday\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0R6T0P7NrTr_jjND1N0NN4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c15rEkanhvFqRKUkQk4ggOo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_nha5F3hsINoeUyZweyQHs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c16i86evq9lwqbKTP5HE7V4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_C_qHC1fcD7GzY5kMKo_tc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2CZN87_DWUW3eoiuqqDsoY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyYZF6SRC5ECevFhSTa6rSY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7DVaSNpKb-V8B-uc2TCm9I=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7Mr-T2trjTAKJ7Vo02ha2Q=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0lgZRjrMIuddSz2Iue1UJ0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwZeCbIAw2Id7YYTfs8Ou4M=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxmKTJqVsXfwOeD0TyRncio=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1kq7vwgScs6QtRC5g6LdBw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0b4mrNG-f0-NDKIE0Whr3w=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5hExMECNv-9C6Ozx_KwT8s=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-OpTc13alMzsVjBGT3Vy4A=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"corey.halliday@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5gOCFdQmTctpLgwB1eUTK4=\",\n                        \"first_name\": \"Corey\",\n                        \"last_name\": \"Halliday\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwJCPWtGKSim3682sfyhqgc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5PfhcZhP1rldWfZVejTrE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cy_NsZ4a9iEfBc15oz6NXA0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6lBJ5d5T7oZT5TBNT4NusM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cw61GiblJahblrUV0T_58Ds=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-iPOMy-sdNwy7UOHiU7WnQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Il_fHe2DLqI7I9tursmVo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c79eYR2iS5Gmr1yutyEqx24=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_f56xOUuWPkYMl5ssElUrY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_Jbmsy9hwhX4DXCRVG0UkQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6uJcCetbrk4S2z4lZ4dZKU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7aCcNZIqu6MLSdOuVLVKXQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1buggrM7IAJc4lhA42efEY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9HQY6AEdNJjLD4cwYTcvbM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-lM_b_BwjnXg1Bhbuuf6mk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyj8gEBMd02t3eFOzDXELQU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4fvXkykehYa7KACgKG1zII=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c27AWal4NohH2UxarFfXqd4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6zHsP-XdNymPaAJM2efB5w=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6-zCchZvxRAl2UBgPEHJlE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czST3kpYTD6d5A5zay-IAxg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9ZlPofIiOSzFefiS0ZC0Zc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6njVoMIZZE8PqILGjSg_ak=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_BMY6ZmsYQpQJAhzChCgfQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_XN1LuaE6awhb2ftJcxAio=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7uVwFsWpP9EjH7QwTOms1A=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cw2bltBwyKPeRrvOLqGEMHI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyA-i3ynq9kO9GeUxHzYEJQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8b0qSFBYtE3j6p8WN4rQkU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c31Xvek0CID9gNUkxv02iTY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-kwnNetYlOQ8P0tCKAfPrQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0IIQgJXRN5QJOfVMAXny7c=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6r80k7t9Oih8J1OBxAPN4M=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6tvU48qL-fl0e-tkgzR4yo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3kmBQncPLbCjO85VLQ8Kmk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7o7rPh6yFZQxkr_YBoHhk4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czCVqwxcmrbAZELVcxihF-E=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ahdH7WlwI10A8wSz7YRUo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5hOQUbfYxapc-1t7F6zG-U=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwzRdMNX9QqDuAmIstZ5KB8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cw_14al_GQujwhBsyOT85wE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwONnjrK-CBCNjaD1DXizec=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8WP4Y53Ad2LdjBqPZSxNxc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1kh8-Uo6obfXGc86AFzttM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czFybHYIRAT_mFCL4Ev75Fw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"debbieaubert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9QPWyDsd4WQCpY6ypjvExA=\",\n                        \"phone\": \"4242314424\",\n                        \"first_name\": \"Debbie\",\n                        \"last_name\": \"Aubert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1R2QGVOj0aoYUatWhDu-Xs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4n_qIFHlYUZ8S3jIPsgg7w=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9By92cB6UVrJOux03mXybg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimberly.wade@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                        \"first_name\": \"Kimberly\",\n                        \"last_name\": \"Wade\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_iL7rBAFOwAOTQYI2dvj_g=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9V07lrM6IlHxVwrDp-xLHo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3RrFnD2hWwr7g_2Drpe3jE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8OH2_PB8HHqDzI2IHGFlD4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1M8HQGgltwmBLTgMs6ZXek=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3zNsHFjkD1K-dXA0rRWWsY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                        \"first_name\": \"Izzy\",\n                        \"last_name\": \"Ochoa\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwffAXz_h7OTbx8T0RldCWI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                        \"first_name\": \"Izzy\",\n                        \"last_name\": \"Ochoa\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9hYHe9ytdhZ2xXfytyc504=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4qjfLcyfaPS6ZBUvypGKzY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyyQ_Oaliu3Q1vv71Xwatfk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-y4KY2O_rxUxnXM_n0lJcc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8VP509JdAs-2j-TUcnaA_c=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"courtneywilburn@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3cyPb4eA_nFHJZr9luS7dd98=\",\n                        \"phone\": \"9372440572\",\n                        \"first_name\": \"Courtney\",\n                        \"last_name\": \"Wilburn\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-EwIu8B9Lrv-jGNu09jzw8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Lizzie.barc@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0oAn_TyglbHIF6kFEE9vAU=\",\n                        \"phone\": \"5866480105\",\n                        \"first_name\": \"Lizzie\",\n                        \"last_name\": \"Barc\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-FVTX23OxpcsHLwucJ4zAA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c09mHMOX4WWAV0eS1ZJduKg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1y-uUIqfDrwRTe5Ku81cvw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx9p7UMYn__z5NqVr2Rm7YU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5j3ZuerOfhZax8pwFlX4tk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3E4pvYMkaH88T4E4p9Ksxs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4MSKQjlh5uiKNA2QooiQpc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwsICZEQiMSaQgdRD6ATlwA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7YH45FRWNw4vjw9RqNuWYI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5jOOFGGbMo4Dx-4e60smtc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c15i1M_kSMkqolVl_Co7XsU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8hL37v3gWV4MwxsTfvvv-0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-PQw5eeu6ph5VVBxGG_HaM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3s2IvLVoUdG5xIRLU3fhj0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_BUiSy6PBIPeTvbSUkTuCU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4l_KEKHs8sABVF-F5pP_Zg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czw3CZTI9wWi6zSQGgjXe4o=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6ic9m2BY1lkAFzzkpK8D1g=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyAlqPyuOtiEw8csBdvLZ0A=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cw1mRUUpaahyV5GUx4T3PtI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cw5Pk3mphElC6LeTj14hwZM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"garrett.smart@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c4JVxLVhT5IYhyF1OzwnDqE=\",\n                        \"first_name\": \"Garrett \",\n                        \"last_name\": \"Smart\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_UTTQOZpjjWJJVCocVp8_g=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2IexqnhHlhiM4X0nshgTs4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                        \"first_name\": \"Izzy\",\n                        \"last_name\": \"Ochoa\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-qJKaUfS9SF_UTC9edsOcg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7f3Z-GG0GrWW4E3MmYaPuk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4w4pUAlicSKJjhuspUPye4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3uiIQtRDZQIJEmDkv1iugE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxCbrvsHe1w9sSgwwexbmyA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"tara.gilbert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c0JDtIf5EQC_GBbkGTrJ1Lo=\",\n                        \"phone\": \"4242313902\",\n                        \"first_name\": \"Tara\",\n                        \"last_name\": \"Gilbert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czz8-e0I7iVpyt4j5WAOSq0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2gRqXpohA-hVXnn3eTuzW4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9Qi13Uw_xF3_pZEoaaWzX0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c68T7YLui7STkp9D2z4zRzc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czYmelk9S80THzE5EFsXgtQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3ZssfxNMxg47aHv0PyZlcw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7aGoK03DBd7hqgLxZdbJdc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0B1KGul6NvtrUSlKhy9aDg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8a2twKatMODS_1QLCrlLzY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4fNGnLs8UZSyI2BcVw3zKY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2yi8y-FQpip6X-rdI2OAqs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6PA54qbPEihS4vqnLjZbsM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7gK7whW_fgQ0PDa7qL0wAg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1Bm-DaJj1QSAzWqFOGHUDI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4Quaj5Tmt9V0aEnvJraWqc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2zg-UPSetmlC_gFVn0faOo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c36iwVmp7DWcB88EbtbhIrc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"debbieaubert@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9QPWyDsd4WQCpY6ypjvExA=\",\n                        \"phone\": \"4242314424\",\n                        \"first_name\": \"Debbie\",\n                        \"last_name\": \"Aubert\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5g-ShFwdRgsC-eC8LUkpR8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cy98l_N1572jMgqZ_by3Ym8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-pjbMrJKHUDrEX5nWgN9Ic=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_A6GPE5Z14eX_F2xgacEh8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5mhhvMOiM9BcBDT5zzW8O0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6cyxfdajjlL3Qg7rulw2aE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3xVTSnjSrL2bFIppITptdE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7aH6x4n8ivntfwwMlvpcn4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"jorge.garcia@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6eE3PaJWmWlJ0hiCbOdfqM=\",\n                        \"phone\": \"5412156199\",\n                        \"first_name\": \"Jorge\",\n                        \"last_name\": \"Garcia\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1i6-In1kOzAYk7kSytWgRw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"jorge.garcia@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6eE3PaJWmWlJ0hiCbOdfqM=\",\n                        \"phone\": \"5412156199\",\n                        \"first_name\": \"Jorge\",\n                        \"last_name\": \"Garcia\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx36gHbWglYsPTDM77RmzJE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwdfaVJsTEih7MSVKvXAcZc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2p76FN3xy99uE35M644buc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6vsXtQexXQ0amoQJKWA8UE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0QSd1yhyeYKYhrerdIRxwI=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5ZZgm8HRi0A-J4qKikHrTY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"marksharp@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1dsGfsuNEA491kgjDHAHyQ=\",\n                        \"phone\": \"7148233000\",\n                        \"first_name\": \"Mark Sharp\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c99KE58Z68wB0ezVtdZJG_8=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2f5D2RmHXIga1KJxBxtCzg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1oHOrH_gNwf9bjXbvRrahU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c39tXevAErhw1g6L5gEE3vk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"andrew.lowden@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                        \"phone\": \"6122956923\",\n                        \"first_name\": \"Andrew\",\n                        \"last_name\": \"Lowden\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyieXIta3c1ij3qicNLUhh4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7bV-0Mt6aqvRiL2icvlSVM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6WAtx-MMfit6nlZL_uEqXs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c31Gw2M-PcQYp7lBE9X4Dls=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c7DdP9y2o1k1hnLenGwMp4k=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4B4r5ciY4UEEeXbnzwFD-k=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5VXzdjlOCfsShzsUaI8a24=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxCAaVZmOto7mPZj5XAMTng=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4U_0EunGUTRjLyShq1IAmQ=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3CJcDbsJvgr_7-6dQpvYgk=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czB_rKvtEv7xTAA4TD7IGXo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4Lj_BnvAAHzscmiZuLpjLo=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                        \"first_name\": \"Bobby\",\n                        \"last_name\": \"sachdev\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6XNRH7lzxaMj8orKuJYBVw=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"diego.villegas@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c7uXEm7XJ-dDe_b-AMBerHM=\",\n                        \"phone\": \"7144625375\",\n                        \"first_name\": \"Diego\",\n                        \"last_name\": \"Villegas\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9Z2XusYdsNB8kZq8n8A8BU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8TlN7txa80caOAXtUhTQj0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4Aqp73mZT1VOgp117xPgjg=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8IlHfe6_r0ZgXGBrQb4DdE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2OItLvDiQTVfEP8qLf-r3Y=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"parisdipasqua@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                        \"first_name\": \"Paris Di\",\n                        \"last_name\": \"Pasqua\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czxvI4EuCGYqIoEcOiXQp1U=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Jaime.Nieto@thestructurescompany.com\",\n                        \"status\": \"Inactive\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c3WuGqnYfwe2a40Y6mCPy0s=\",\n                        \"phone\": \"6615474851\",\n                        \"first_name\": \"Jaime\",\n                        \"last_name\": \"Nieto\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4a9cK_VFbVVBNU9JnmvgHA=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Jaime.Nieto@thestructurescompany.com\",\n                        \"status\": \"Inactive\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c3WuGqnYfwe2a40Y6mCPy0s=\",\n                        \"phone\": \"6615474851\",\n                        \"first_name\": \"Jaime\",\n                        \"last_name\": \"Nieto\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxnnqQuXRYSi3sJh7xOM4VE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Jaime.Nieto@thestructurescompany.com\",\n                        \"status\": \"Inactive\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c3WuGqnYfwe2a40Y6mCPy0s=\",\n                        \"phone\": \"6615474851\",\n                        \"first_name\": \"Jaime\",\n                        \"last_name\": \"Nieto\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_Nu7SK7dXoQd508WNr8OyY=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"Jaime.Nieto@thestructurescompany.com\",\n                        \"status\": \"Inactive\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c3WuGqnYfwe2a40Y6mCPy0s=\",\n                        \"phone\": \"6615474851\",\n                        \"first_name\": \"Jaime\",\n                        \"last_name\": \"Nieto\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6qdApFreZcpNGGH-d8FKs0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8r7nxLsLy-SeQZhrx_ZV7o=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3rA8HPN04lRq1Ti2JZY-gc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"kimra.stone@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c-R-NHR2u4fB2e2e2wy-sak=\",\n                        \"phone\": \"6614016071\",\n                        \"first_name\": \"Kimra\",\n                        \"last_name\": \"Stone\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4e7AjgQat91D79vNizK43Q=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"joshua.garza@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                        \"phone\": \"4242035727\",\n                        \"first_name\": \"Joshua\",\n                        \"last_name\": \"Garza\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyAbQ2VS-QTPMVLpMSOooxM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"paras.sharma@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3czjOngsbCqcD1_Wrp5_eT9s=\",\n                        \"first_name\": \"paras\",\n                        \"last_name\": \"sharma\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czbp0V9HnjYy_b3l0K8HKNM=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_9G7O_w18VY5oF9rzYh5Xs=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_wZr92VOq7EpSZzxKZ2wUU=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4tS_wTcLJKOBy_eLcAbD1I=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwBqgBDkhvuMghQSIZXichE=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c02rU8CObgASOj0I3FJ59a4=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"chrissheets@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c8xxQwmHN4vWkboZWg6PK1Y=\",\n                        \"phone\": \"8186978790\",\n                        \"first_name\": \"Chris\",\n                        \"last_name\": \"Sheets\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c3NPCbKq071akQX4CBno-I0=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0FPDilvqkQRsKYuF9OV3Pc=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyToRxjiAqmohPvtMTPL564=\"\n                },\n                {\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\n                }\n            ],\n            \"count\": \"206\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Users GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.096827\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-02T22:39:34\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"206 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getUserDetails/?user_id=z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo%3D\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"941.214193\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"206 jobs returned\"\n}"}],"_postman_id":"0049cb9f-0d89-45be-b79b-bfe89fd6e337"},{"name":"Job Get By ID","id":"cd85a936-e04c-4bd2-a9fa-23b2c40c4c07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p>NOTE: Not Implemented</p>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7f5171c9-6599-4edb-bd5a-5fd452e4bdbd","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 22:42:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1573"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"7598"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Active\",\n                    \"description\": \"<p><b>Kronos Solutions Consultant &ndash; WAM/ATK/HRMS</b></p>\\r\\n\\r\\n<p><b>Initial Duration:</b>&nbsp; 2 Months<br />\\r\\n&nbsp;</p>\\r\\n\\r\\n<p><b>Location:</b>&nbsp; Remote (Client: CA - PST)</p>\\r\\n\\r\\n<p>&nbsp;</p>\\r\\n\\r\\n<p><b><u>Description:</u></b></p>\\r\\n\\r\\n<p><span style=\\\"font-size:11pt\\\"><span style=\\\"line-height:16.5pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Kronos Solution Consultant - WAM/ATK/HRMS</span></span></span></p>\\r\\n\\r\\n<p><u><em><strong><span style=\\\"font-size:11pt\\\"><span style=\\\"line-height:16.5pt\\\"><span style=\\\"font-family:Calibri,sans-serif\\\">Retail Sector Client</span></span></span></strong></em></u></p>\\r\\n\\r\\n<div>\\r\\n<p class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><b><u><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Description</span></u></b><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">:</span></span></span></span></p>\\r\\n\\r\\n<p class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Configuration of Workforce HR as follows:</span></span></span></span></p>\\r\\n\\r\\n<p class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Add on of Workforce HR: Performance -2 cycles and 2 separate forms for 2 environments </span></span></span></span></p>\\r\\n\\r\\n<p class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Workforce HR: ACA -will configure attributes of ACA (Affordable Care Act) per customer executive approved documented ACA policy and ACA HR administration process. </span></span></span></span></p>\\r\\n\\r\\n<ul>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Will configure Benefit Plan ACA eligibility, ACA full time employee status, and 1095/1095 content options. </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Will demonstrate ACA enhanced standard Benefit Reports, Ad-hoc Query Tool and IRS forms. </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">If applicable, will configure ACA Status Change and Revoke Employer Plan life events. </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Workforce: HR Benefits ESS -Standard ESS - Open Enrollment, Life Events; Assuming Benefits are already configured in WF HR. </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Workforce Attendance -2 Attendance Groups </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Also includes hours for below: Workforce HR - Benefit ESS : Open enrollment, life events, standard ESS, assuming benefits configured already </span></span></span></span></li>\\r\\n\\t<li class=\\\"Default\\\"><span style=\\\"font-size:12pt\\\"><span style=\\\"font-family:Arial,sans-serif\\\"><span style=\\\"color:black\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif\\\">Workforce HR - Performance : Assumes 2 cycles and 2 separate forms for 2 environments Can be multiple resources if necessary.</span></span></span></span></li>\\r\\n</ul>\\r\\n</div>\",\n                    \"date_added\": \"2020-09-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\",\n                    \"title\": \"Kronos Solution Consultant (WAM/ATK/HR) - Remote - Immediate Need\",\n                    \"rep_user\": {\n                        \"email\": \"sean.smith@thestructurescompany.com\",\n                        \"status\": \"Active\",\n                        \"id\": \"z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo=\",\n                        \"phone\": \"(424) 241-2128\",\n                        \"first_name\": \"Sean\",\n                        \"last_name\": \"Smith\"\n                    },\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"address1\": \"\"\n                    }\n                }\n            ],\n            \"count\": \"1\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Users GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.098091\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-03-02T22:42:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getUserDetails/?user_id=z5G7h3l6a1kMvyS65NP3c9YyY7W11RY6HGSFIGISkRo%3D\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"4.514354\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"cd85a936-e04c-4bd2-a9fa-23b2c40c4c07"}],"id":"62ddc708-4fae-43e2-940b-859f6df2e46e","_postman_id":"62ddc708-4fae-43e2-940b-859f6df2e46e","description":""},{"name":"User","item":[{"name":"User Get","id":"c8a8d60b-7dd5-4d95-970f-888c47c3ece8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get","description":"<p>For retrieving all users.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["user","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9daa329d-de0d-4728-b8b6-6734ead45a44","name":"User Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 20:37:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1427"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"328071"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/user/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"39\",\n            \"users\": [\n                {\n                    \"email\": \"paras.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czjOngsbCqcD1_Wrp5_eT9s=\",\n                    \"first_name\": \"paras\",\n                    \"last_name\": \"sharma\"\n                },\n                {\n                    \"email\": \"yonael.taye@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-jaoqe9mLRoODK9P1fHSCo=\",\n                    \"phone\": \"510-285-7538\",\n                    \"first_name\": \"Yonael\",\n                    \"last_name\": \"Taye\"\n                },\n                {\n                    \"email\": \"rajat.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1Allu2YfGO3vVLnE4FFo18=\",\n                    \"first_name\": \"Rajat\",\n                    \"last_name\": \"Sharma\"\n                },\n                {\n                    \"email\": \"courtneywilburn@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyPb4eA_nFHJZr9luS7dd98=\",\n                    \"phone\": \"9372440572\",\n                    \"first_name\": \"Courtney\",\n                    \"last_name\": \"Wilburn\"\n                },\n                {\n                    \"email\": \"parisdipasqua@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                    \"first_name\": \"Paris Di\",\n                    \"last_name\": \"Pasqua\"\n                },\n                {\n                    \"email\": \"garrett.smart@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4JVxLVhT5IYhyF1OzwnDqE=\",\n                    \"first_name\": \"Garrett \",\n                    \"last_name\": \"Smart\"\n                },\n                {\n                    \"email\": \"ariyana.obryan@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c83Dj8qg7UcADhHwGGmp5L4=\",\n                    \"first_name\": \"Ariyana\",\n                    \"last_name\": \"OBryan\"\n                },\n                {\n                    \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                    \"first_name\": \"Izzy\",\n                    \"last_name\": \"Ochoa\"\n                },\n                {\n                    \"email\": \"grace.singh@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c12tBen3FQq3gDe4xYxjcOk=\",\n                    \"first_name\": \"Grace\",\n                    \"last_name\": \"Singh\"\n                },\n                {\n                    \"email\": \"Rick.kumar@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XMnz-7QOip-nQvBMWA9ao=\",\n                    \"first_name\": \"Rick\",\n                    \"last_name\": \"Kumar\"\n                },\n                {\n                    \"email\": \"yankee.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4nif9YkWbce0zozQREPFjk=\",\n                    \"first_name\": \" yankee\",\n                    \"last_name\": \"sharma\"\n                },\n                {\n                    \"email\": \"corey.halliday@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5gOCFdQmTctpLgwB1eUTK4=\",\n                    \"first_name\": \"Corey\",\n                    \"last_name\": \"Halliday\"\n                },\n                {\n                    \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                    \"first_name\": \"Bobby\",\n                    \"last_name\": \"sachdev\"\n                },\n                {\n                    \"email\": \"Penelope.Lee@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c933Gmn8lJeSDaQoRmvbcRk=\",\n                    \"phone\": \"3105031625\",\n                    \"first_name\": \"Penelope\",\n                    \"last_name\": \"Lee\"\n                },\n                {\n                    \"email\": \"Megan.giusti@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c79a8H8lmvL0_Wsa2FEw3fs=\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"giusti\"\n                },\n                {\n                    \"email\": \"Lizzie.barc@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0oAn_TyglbHIF6kFEE9vAU=\",\n                    \"phone\": \"5866480105\",\n                    \"first_name\": \"Lizzie\",\n                    \"last_name\": \"Barc\"\n                },\n                {\n                    \"email\": \"kimberly.wade@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                    \"first_name\": \"Kimberly\",\n                    \"last_name\": \"Wade\"\n                },\n                {\n                    \"email\": \"joshua.garza@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                    \"phone\": \"424-392-4126 \",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Garza\"\n                },\n                {\n                    \"email\": \"andrew.lowden@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                    \"phone\": \"6122956923\",\n                    \"first_name\": \"Andrew\",\n                    \"last_name\": \"Lowden\"\n                },\n                {\n                    \"email\": \"pawan.singh@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ=\",\n                    \"phone\": \"714-823-3000\",\n                    \"first_name\": \"Pawan\",\n                    \"last_name\": \"Singh\"\n                },\n                {\n                    \"email\": \"paras.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czjOngsbCqcD1_Wrp5_eT9s=\",\n                    \"first_name\": \"paras\",\n                    \"last_name\": \"sharma\"\n                },\n                {\n                    \"email\": \"yonael.taye@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-jaoqe9mLRoODK9P1fHSCo=\",\n                    \"phone\": \"510-285-7538\",\n                    \"first_name\": \"Yonael\",\n                    \"last_name\": \"Taye\"\n                },\n                {\n                    \"email\": \"rajat.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1Allu2YfGO3vVLnE4FFo18=\",\n                    \"first_name\": \"Rajat\",\n                    \"last_name\": \"Sharma\"\n                },\n                {\n                    \"email\": \"courtneywilburn@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyPb4eA_nFHJZr9luS7dd98=\",\n                    \"phone\": \"9372440572\",\n                    \"first_name\": \"Courtney\",\n                    \"last_name\": \"Wilburn\"\n                },\n                {\n                    \"email\": \"parisdipasqua@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_C3h2wtdLxQLvlL-od6K5I=\",\n                    \"first_name\": \"Paris Di\",\n                    \"last_name\": \"Pasqua\"\n                },\n                {\n                    \"email\": \"garrett.smart@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4JVxLVhT5IYhyF1OzwnDqE=\",\n                    \"first_name\": \"Garrett \",\n                    \"last_name\": \"Smart\"\n                },\n                {\n                    \"email\": \"ariyana.obryan@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c83Dj8qg7UcADhHwGGmp5L4=\",\n                    \"first_name\": \"Ariyana\",\n                    \"last_name\": \"OBryan\"\n                },\n                {\n                    \"email\": \"Izzy.Ochoa@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5IhlFNnSSq9qFh5Ld39yrE=\",\n                    \"first_name\": \"Izzy\",\n                    \"last_name\": \"Ochoa\"\n                },\n                {\n                    \"email\": \"grace.singh@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c12tBen3FQq3gDe4xYxjcOk=\",\n                    \"first_name\": \"Grace\",\n                    \"last_name\": \"Singh\"\n                },\n                {\n                    \"email\": \"Rick.kumar@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XMnz-7QOip-nQvBMWA9ao=\",\n                    \"first_name\": \"Rick\",\n                    \"last_name\": \"Kumar\"\n                },\n                {\n                    \"email\": \"yankee.sharma@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4nif9YkWbce0zozQREPFjk=\",\n                    \"first_name\": \" yankee\",\n                    \"last_name\": \"sharma\"\n                },\n                {\n                    \"email\": \"corey.halliday@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5gOCFdQmTctpLgwB1eUTK4=\",\n                    \"first_name\": \"Corey\",\n                    \"last_name\": \"Halliday\"\n                },\n                {\n                    \"email\": \"bobby.sachdev@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6ZAZihAvdi12jH5GRrVQqw=\",\n                    \"first_name\": \"Bobby\",\n                    \"last_name\": \"sachdev\"\n                },\n                {\n                    \"email\": \"Penelope.Lee@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c933Gmn8lJeSDaQoRmvbcRk=\",\n                    \"phone\": \"3105031625\",\n                    \"first_name\": \"Penelope\",\n                    \"last_name\": \"Lee\"\n                },\n                {\n                    \"email\": \"Megan.giusti@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c79a8H8lmvL0_Wsa2FEw3fs=\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"giusti\"\n                },\n                {\n                    \"email\": \"Lizzie.barc@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0oAn_TyglbHIF6kFEE9vAU=\",\n                    \"phone\": \"5866480105\",\n                    \"first_name\": \"Lizzie\",\n                    \"last_name\": \"Barc\"\n                },\n                {\n                    \"email\": \"kimberly.wade@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c06EuCC2ALFkQ4b_40CCNlg=\",\n                    \"first_name\": \"Kimberly\",\n                    \"last_name\": \"Wade\"\n                },\n                {\n                    \"email\": \"joshua.garza@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c6R3laa4U_Rf8S9Dp9fY7Tw=\",\n                    \"phone\": \"424-392-4126 \",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Garza\"\n                },\n                {\n                    \"email\": \"andrew.lowden@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1ZWjeOekYF3Oxk9-Ov7ztw=\",\n                    \"phone\": \"6122956923\",\n                    \"first_name\": \"Andrew\",\n                    \"last_name\": \"Lowden\"\n                },\n                {\n                    \"email\": \"pawan.singh@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ=\",\n                    \"phone\": \"714-823-3000\",\n                    \"first_name\": \"Pawan\",\n                    \"last_name\": \"Singh\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Users GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.171346\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T20:37:12\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"39 users returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getUsersList/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.547178\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_user\"\n    },\n    \"atsconnect_message\": \"39 users returned\"\n}"}],"_postman_id":"c8a8d60b-7dd5-4d95-970f-888c47c3ece8"},{"name":"User Get By ID","id":"a3b6b198-0743-4b03-a953-73ee77d44bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get","description":"<p>For retrieving user details by user ID.</p>","urlObject":{"path":["user","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"83300229-67c7-4626-a079-e7be2a5da1e6","name":"User Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 20:39:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"573"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"70556"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/user/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"users\": [\n                {\n                    \"email\": \"pawan.singh@thestructurescompany.com\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ=\",\n                    \"phone\": \"714-823-3000\",\n                    \"first_name\": \"Pawan\",\n                    \"last_name\": \"Singh\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Users GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.257024\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T20:39:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 user returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getUserDetails/?user_id=z5G7h3l6a1kMvyS65NP3cywkbneywst7tu6uO-GeJjQ%3D/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.30998\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_user\"\n    },\n    \"atsconnect_message\": \"1 user returned\"\n}"}],"_postman_id":"a3b6b198-0743-4b03-a953-73ee77d44bbb"}],"id":"573cefcf-86a0-4df7-936e-07cbe6674065","event":[{"listen":"prerequest","script":{"id":"92b7ee7d-0866-4566-a30e-0e66e249bf3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"017494c2-0484-4c4d-8667-49326a1376dd","type":"text/javascript","exec":[""]}}],"_postman_id":"573cefcf-86a0-4df7-936e-07cbe6674065","description":""},{"name":"Placement","item":[{"name":"Placement Get","id":"524246ed-ced1-4db3-ba3b-0b49e8a8e798","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/placement/get","description":"<p>For retrieving all placements.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n\n</code></pre>","urlObject":{"path":["placement","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fbde8d16-abb4-43db-8f42-9c438b7c45ec","name":"Placement Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/placement/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 21:26:03 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3747"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"328090"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/placement/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1125\",\n            \"placements\": [\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0AoVcaC0hRNbw45IQ8_LwM=\",\n                    \"date_added\": \"2023-01-27\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwkRCwNMnr0zZoZ7FrtRCuM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c0bLu80tvlUldX1qvNzWdzU=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7GDBsyGUg8XR3DPvXZsrHA=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czn9YkWkpP-0avdr_Nz7Hy8=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1bb16EUVmmIWwmaPR41lUA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_2arYKVG2hpnEQqVKPe70Y=\",\n                    \"date_added\": \"2023-01-25\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-Xo7GSzRDiZGfNxitzhuCc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c8u7_INLhkHtldalOtuBjAc=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c62TlHqPfqy-sQfFvSZ4TQE=\",\n                    \"date_added\": \"2023-01-23\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1pdBqRkn5vlyYNnXPs9sbQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-EW2gp569O8DVh_oUgrFbE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3czBDC8Her3ire4i1Ynp-K-s=\",\n                    \"date_added\": \"2023-01-20\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1LJr2PspUgXIoD0Omd6GjQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-Uot9yLRCFn0t3YyY9zEvs=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c3pi-RIcjK1pu4d8zdT6K6I=\",\n                    \"date_added\": \"2023-01-16\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx30L2W0GUUWTG30e_qUzHA=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c_YdJ1WpLLQq7WgDi0pWv4g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5WKSox5_Qf142yYuTIKyYk=\",\n                    \"date_added\": \"2023-01-13\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c03cF8lTwHmdOu8FnsQag4k=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c03QIJ3njs3s7blDuBkbgCo=\"\n                },\n                {\n                    \"date_end\": \"2023-01-30\",\n                    \"status\": \"InActive\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\",\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-joT4fvQ4ZCN3au_wA1Eys=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9XGkRQbI6xEu4IptSJVFrE=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8cdQuo4G5K42vasPPZvuvg=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyHPgWunqrPo6XFhr2pttnc=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c2O9mhY_odp-KqBkoHiPZ7g=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c_pGbPfJxq22N-LtKug2Zeo=\",\n                    \"date_added\": \"2023-01-12\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c64QCFeCmYWRnF5g7aG9rjg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6Bmsvia26uW-KuqXSk1MAA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c29c3ZKvTTfP22yEixwQE_0=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-29\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyVjbD2TW7bL4rsg4V8hUTM=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1TbPuT2rkUpCaIJni7RU1c=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c5b5tkIb0Z3q5pr0RgtuB-I=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0hNV2JcPfbqCEpkQJF6uZQ=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c7MKdLAB4Sy6QnVLHNJsnpI=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-23\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4afj65xLPjKcf9sUugtCLg=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-SPI8AMJPGbSNYPy7YS4VM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c8Km4xMrCyHcHtZZ-AFsV8E=\",\n                    \"date_added\": \"2023-01-11\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-avgKk9RStAFX30MG--3Yo=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c-jVrOSKJyO_oiyls2DlLgM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c43_SwwUFo81nWE-Bvn4ulQ=\",\n                    \"date_added\": \"2023-01-10\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4sHTdFafTB3spX5HGdjeOU=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c01vk6nRaMw_29qEuCT7WAk=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-fsiS1JQYAdKA5u_u90dMI=\",\n                    \"date_added\": \"2023-01-09\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-18\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9x5yDiKDW7krgjK3Ae5c0U=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c1837s0lKA9mjdet93sXgH8=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c-QQKdo7v9Kwv2nd0GqFzo4=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-27\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_6pksDOBjMWngaoIgsH1PI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3czbbwczFluGHNW3hHTpJuKA=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c9QqgUB4HGBUzQFotahBGXk=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-02-09\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0pbY7-cT0qY9lJ-afueDCI=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c9SwWCnZ_OR9KCXyERKvitM=\"\n                },\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c4WZ-kS1VqAyvgQB3XQSYnc=\",\n                    \"date_added\": \"2023-01-06\",\n                    \"status\": \"Active\",\n                    \"date_begin\": \"2023-01-13\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c0W7pgiXVNob2Dtkq1oNjis=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3cxJhkqVnDFnQ-MSVS3IFTxk=\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Placement GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.431633\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T21:26:59\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1125 placements returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getPlacementsList/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"56.303619\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_placement\"\n    },\n    \"atsconnect_message\": \"1125 placements returned\"\n}"}],"_postman_id":"524246ed-ced1-4db3-ba3b-0b49e8a8e798"},{"name":"Placement Get By ID","id":"048166b4-cbcf-4bc3-b814-15ca1127c426","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/placement/get","description":"<p>For retrieving placement details by placement ID.</p>","urlObject":{"path":["placement","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2f67c2f2-8863-4613-9739-96d354cdc9f2","name":"Placement Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/placement/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 21:28:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"736"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"328093"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/placement/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"placements\": [\n                {\n                    \"salary_unit\": \"Recurring(Hourly)\",\n                    \"candidate\": \"z5G7h3l6a1kMvyS65NP3c0DvLlKoXrcD6qvIelhWH28=\",\n                    \"date_added\": \"2023-01-17\",\n                    \"status\": \"Active\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8ew5KU46OW-2a6IdPg24iY=\",\n                    \"job\": \"z5G7h3l6a1kMvyS65NP3c6ebchWz2Pw9yLQt8Li6G48=\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Placement GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.755525\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T21:28:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 placement returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getPlacementDetails/?bearer token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.808342\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_placement\"\n    },\n    \"atsconnect_message\": \"1 placement returned\"\n}"}],"_postman_id":"048166b4-cbcf-4bc3-b814-15ca1127c426"}],"id":"6176f33c-5c57-4880-877d-12a16a5bc96d","event":[{"listen":"prerequest","script":{"id":"92b7ee7d-0866-4566-a30e-0e66e249bf3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"017494c2-0484-4c4d-8667-49326a1376dd","type":"text/javascript","exec":[""]}}],"_postman_id":"6176f33c-5c57-4880-877d-12a16a5bc96d","description":""},{"name":"Client","item":[{"name":"Client Get","id":"ab171f5d-cc03-40af-8c11-1abb400f4ca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/client/get","description":"<p>For retrieving all users.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["client","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5d62678d-e5a9-495e-bbca-ba8e3f02cd86","name":"Client Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{_api_url}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/client/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 20:06:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1993"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"70544"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"239\",\n            \"clients\": [\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"xxxxxxxxxxxxxxxxxx\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"xxxxxxxxxxxxxxxxxx\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-12\",\n                    \"url\": \"https://www.thorntonaviation.com/\",\n                    \"date_modified\": \"2023-01-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2Zy2eiCJkaEmH5bUsCg_bM=\",\n                    \"company\": \"Thornton Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"date_modified\": \"2023-01-05\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-22\",\n                    \"url\": \"https://www.zeroavia.com/about-us\",\n                    \"date_modified\": \"2022-11-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxe9jfIrnAyAh1XxQwUWhw8=\",\n                    \"company\": \"ZeroAvia\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-17\",\n                    \"url\": \"https://vtxco.com/contact/\",\n                    \"date_modified\": \"2022-11-17\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cx5z_4yVqavR8Clbogg1OsI=\",\n                    \"company\": \"Vertex Aerospace\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://ericksoninc.com/\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cxP7_LaKS9ayDbk1TBZqBZo=\",\n                    \"company\": \"Erickson Air-Crane\"\n                },\n                {\n                    \"status\": \"New Lead\",\n                    \"date_added\": \"2022-11-15\",\n                    \"url\": \"https://www.cae.com/defense-security/what-we-do/training-centres/usaf-initial-flight-training-ift\",\n                    \"date_modified\": \"2022-11-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-uwnFChKQTqHHQ6gOEAn30=\",\n                    \"company\": \"Doss Aviation\"\n                },\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2022-11-11\",\n                    \"url\": \"https://blueforcetech.com/who-we-are/\",\n                    \"date_modified\": \"2022-11-11\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4rwL5AZ1XvISRZPjrHXZbU=\",\n                    \"company\": \"Blue Force Technologies Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-09-12\",\n                    \"url\": \"https://www.atsmro.com/\",\n                    \"date_modified\": \"2022-09-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1NX6oWM3tFTGOVEFCM7kco=\",\n                    \"company\": \"Aviation Technical Services ATS \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-08-22\",\n                    \"url\": \"https://loutech.net/\",\n                    \"date_modified\": \"2022-08-22\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c2E5E4j9lTbr5RWSwqHFCas=\",\n                    \"company\": \"Loutech Resources\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-07-15\",\n                    \"url\": \"www.stratolaunch.com\",\n                    \"date_modified\": \"2022-07-15\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c1v4V4U9rZuNFFr8ETfWbJk=\",\n                    \"company\": \"Stratolaunch\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-12\",\n                    \"url\": \"https://astra.com/about/\",\n                    \"date_modified\": \"2022-05-12\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-3YpBcYdXP7QSqasUi_wnM=\",\n                    \"company\": \"Astra\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-05-03\",\n                    \"url\": \"https://www.systemseals.com/careers/#openings\",\n                    \"date_modified\": \"2022-05-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c_hnqA7-wIfUQNGg93cnjOE=\",\n                    \"company\": \"System Seals\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"www.appliedcomposites.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3czUYWeJ8c7UdMIEh7inZDis=\",\n                    \"company\": \" Applied Composites\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-16\",\n                    \"url\": \"https://www.qualcomm.com\",\n                    \"date_modified\": \"2022-03-16\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c5h1ZfqKe-s_rWlPEiuHWa4=\",\n                    \"company\": \"Qualcomm Inc\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-03-03\",\n                    \"url\": \"https://www.flyjetedge.com/\",\n                    \"date_modified\": \"2022-03-03\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c-aospOzFhCbXpk5TMt9cbg=\",\n                    \"company\": \"Jet Edge\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-21\",\n                    \"url\": \"https://mayoaviation.com/\",\n                    \"date_modified\": \"2022-02-21\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cyvRXZa9xQPc49Ujz0y0sAA=\",\n                    \"company\": \"Mayo Aviation \"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-02-20\",\n                    \"url\": \"http://jetworx.com/\",\n                    \"date_modified\": \"2022-02-20\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8SYO7gDMWEFHDeZ17Xw-nU=\",\n                    \"company\": \"JetWorkx\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2022-01-25\",\n                    \"url\": \"https://ablspacesystems.com/company/\",\n                    \"date_modified\": \"2022-01-25\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4H_7WlGY0HxGGf_ZIrRrz8=\",\n                    \"company\": \"ABL Space Systems\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-30\",\n                    \"url\": \"https://atlasgroupaero.com/companies/brenner/contact\",\n                    \"date_modified\": \"2021-12-30\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c4uk6jpqm6uMZI0imT0Ojzc=\",\n                    \"company\": \"Brenner Aero Structures\"\n                },\n                {\n                    \"status\": \"Active\",\n                    \"date_added\": \"2021-12-28\",\n                    \"url\": \"https://crosspointtesting.com/\",\n                    \"date_modified\": \"2021-12-28\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c9JoPdP-DuiHMcPvg_BaDTY=\",\n                    \"company\": \"CrossPoint Testing and Inspection Services LLC\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Clients GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.492705\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T20:06:20\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"239 clients returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getClientsList/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"3.659397\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"239 clients returned\"\n}"}],"_postman_id":"ab171f5d-cc03-40af-8c11-1abb400f4ca6"},{"name":"Client Get By ID","id":"b76dadec-bb58-49be-82ab-c9f1be88ca01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/client/get","description":"<p>For retrieving user details by user ID.</p>","urlObject":{"path":["client","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"de23f541-c72d-46d3-b67a-dd553d37e15a","name":"Client Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{_api_url}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/client/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 20:08:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"562"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"70547"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"clients\": [\n                {\n                    \"status\": \"Negotiation\",\n                    \"date_added\": \"2023-01-05\",\n                    \"url\": \"https://feam.aero/about-us/\",\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI=\",\n                    \"company\": \"FEAM Aero\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Clients GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"5.089023\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-20T20:08:24\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"ceipal\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 client returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ceipal.com/v1/getClientDetails/?client_id=z5G7h3l6a1kMvyS65NP3c8xccytkKKAYE1iTw3fK9GI%3D/\"\n        },\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"5.142139\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"1 client returned\"\n}"}],"_postman_id":"b76dadec-bb58-49be-82ab-c9f1be88ca01"}],"id":"a0cdab47-5079-4a5e-82d8-c1993c625843","event":[{"listen":"prerequest","script":{"id":"92b7ee7d-0866-4566-a30e-0e66e249bf3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"017494c2-0484-4c4d-8667-49326a1376dd","type":"text/javascript","exec":[""]}}],"_postman_id":"a0cdab47-5079-4a5e-82d8-c1993c625843","description":""},{"name":"Note","item":[{"name":"Note Set","id":"49f756ed-6cc3-474d-8e03-df5397bafcf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ca6fd25b-886d-439e-90ce-b8dbf3cf76a4","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 Feb 2023 21:44:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"385"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"69737"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-02-17T21:44:15\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-02-17T21:44:15\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.046546\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"49f756ed-6cc3-474d-8e03-df5397bafcf8"}],"id":"7c6dd431-33d4-47df-ab85-57a6635c6d8a","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"7c6dd431-33d4-47df-ab85-57a6635c6d8a","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"64294e56-a595-425f-bc9e-c6d8d90e011e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b97c2282-b178-4c51-abd2-c200e22c5165","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"\",\r\n      \"api_pw\": \"\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"ceipal\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 22:09:39 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"384"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272323"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T22:09:39\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T22:09:39\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"ceipal\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"ceipal\",\n        \"elapsed\": \"0.003219\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"64294e56-a595-425f-bc9e-c6d8d90e011e"}],"id":"3bc7bcdc-364c-4117-942d-9dcd8eba219f","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"3bc7bcdc-364c-4117-942d-9dcd8eba219f","description":""}],"id":"8b9dcfdc-2597-455c-8581-6c11124dcc13","description":"<p>Ceipal</p>\n<p>Overview</p>\n<p>This integration is fairly limited. It only supports,* authorization, applying and retrieving jobs*</p>\n<p>API Docs</p>\n<p><a href=\"https://developer.ceipal.com/?version=latest\">https://developer.ceipal.com/?version=latest</a></p>\n","event":[{"listen":"prerequest","script":{"id":"7b9c071d-aaea-4ffe-989c-09555cd74c32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43e9e9bd-22af-4382-a723-77f164175720","type":"text/javascript","exec":[""]}}],"_postman_id":"8b9dcfdc-2597-455c-8581-6c11124dcc13"},{"name":"LaborEdge","item":[{"name":"Authentication","item":[{"name":"Authentication","event":[{"listen":"test","script":{"id":"e4d28433-635b-4a7b-84ff-261fa590a823","exec":["var responseData = pm.response.json();","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = responseData.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    var atsconnectMessage = responseData.atsconnect_message;","    pm.expect(atsconnectMessage).to.eql(\"Authenticated\");","});"],"type":"text/javascript","packages":{}}}],"id":"0251b8c2-154a-46ef-974b-c97481171f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow<br />for subsequent successful API calls. <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li>api_un - Your LaborEdge Username - <strong>REQUIRED</strong></li>\n<li>api_pw - Your LaborEdge Password - <strong>REQUIRED</strong></li>\n<li>api_id - Your LaborEdge Client ID - <strong>REQUIRED</strong></li>\n<li>api_secret - Your LaborEdge Organization Code - <strong>REQUIRED</strong></li>\n<li>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</li>\n<li>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</li>\n<li>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_connection\": {\n      \"api_id\": \"nexus\",\n      \"api_un\": \"api_ghr\",\n      \"api_pw\": \"Api@Ghr\",\n      \"api_secret\": \"{{laboredge_organization_code}}\",\n    },\n\n</code></pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"55a9aa02-f9b5-4514-968a-7c84c791645c","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Mar 2021 21:43:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1163"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1548215"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"LEBaseApiUrl\": null,\n            \"LEAccessToken\": \"xxxxxxxxxxxxxxxxxx\",\n            \"restUrl\": \"https://api-uat.laboredge.com:9000/api/secured/oauth/token\",\n            \"LERestToken\": \"xxxxxxxxxxxxxxxxxx\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Session Token\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.13663\",\n            \"CALL_ACTION\": \"OAuth\",\n            \"TIMESTAMP\": \"2021-03-16T21:43:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"laboredge\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"refresh_token\\\",\\\"refresh_token\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"vms\\\",\\\"organizationCode\\\":\\\"ghr\\\"}\",\n            \"call\": \"https://api-uat.laboredge.com:9000/api/secured/oauth/token\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.671902\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"0251b8c2-154a-46ef-974b-c97481171f9c"}],"id":"811951b8-81dc-4523-93e9-487af42bdd07","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"f9392fe5-8c50-44e2-8b6b-da530b0c6969","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c52a5d9f-ffdf-419f-ade2-1e8e1005e32a","type":"text/javascript","exec":[""]}}],"_postman_id":"811951b8-81dc-4523-93e9-487af42bdd07"},{"name":"Application","item":[{"name":"Application Get","id":"c0490e70-0bc0-43d8-a2e1-859d7a76969b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n\"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ce17285e-3748-4acc-a2df-f5ea9ff0976f","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n\"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 19:28:01 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"362"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"798062"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T19:28:01\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T19:28:01\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.037831\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c0490e70-0bc0-43d8-a2e1-859d7a76969b"},{"name":"Application Get By ID","id":"4aae6510-a78f-425a-8fe6-d4de213e3b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c045f62c-e50d-4405-acb2-6b51f49c639b","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 21:57:21 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"970"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2097730"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-03-18T21:57:21\",\n            \"CALL_ACTION\": \"OAuth\",\n            \"TIMESTAMP\": \"2021-03-18T21:57:21\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"xxxxxxxxxxxxxxxxxx\",\n            \"call\": \"https://api-uat.laboredge.com:9000/api/secured/oauth/token\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.413544\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"4aae6510-a78f-425a-8fe6-d4de213e3b3b"},{"name":"Application Set","id":"6c483e2b-efda-4057-aa17-83b1289adb58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n  \t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"558c0e05-c0d5-49f5-8815-7e8b2996dea1","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n  \t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 19:28:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"363"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1384237"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T19:28:53\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T19:28:53\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.009879\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"6c483e2b-efda-4057-aa17-83b1289adb58"}],"id":"cc3a1d86-4156-4a0c-bfbe-58db93cecd66","_postman_id":"cc3a1d86-4156-4a0c-bfbe-58db93cecd66","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","event":[{"listen":"test","script":{"id":"7a242881-7b61-4397-8350-b62adf3f1f7e","exec":["// Get the variables on request body","var requestBody = pm.request.body.raw;","var responseData = pm.response.json();","var requestCandidateId = JSON.parse(requestBody).api_request_data.api_request_query.id;","var responseCandidateId = responseData.api_response.api_data.candidates[0].id;","var responseReferral_source = responseData.api_response.api_data.candidates[0].referral_source;","var atsconnectMessage = responseData.atsconnect_message;","var candidateData = responseData.api_response.api_data.candidates[0];","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Candidate GET\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = responseData.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"POST\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = responseData.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"api_xstatus matches the expected value\", function () {","    var api_xstatus = responseData.api_response.api_xstatus;","    pm.expect(api_xstatus).to.eql(\"15000 candidates returned\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/search\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = responseData.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    pm.expect(atsconnectMessage).to.eql(\"15000 candidates returned\");","});"],"type":"text/javascript"}}],"id":"9ad6ef3c-614a-4b4a-a795-c57074c1fc40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {    \r\n\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all users.</p>\n<p>\"api_request_data\": {<br />\"api_request_query\": {}<br />}</p>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"80565819-770b-49ca-b124-d7c238ecc190","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9ad6ef3c-614a-4b4a-a795-c57074c1fc40"},{"name":"Candidate Set","event":[{"listen":"test","script":{"id":"2418694a-333f-446f-9446-0239bd3066ed","exec":["var response = pm.response.json();","var request = pm.request.body.raw;","var requestData = JSON.parse(request);","","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Candidate SET\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = response.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"POST\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = response.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"api_xstatus matches the expected value\", function () {","    var api_xstatus = response.api_response.api_xstatus;","    pm.expect(api_xstatus).to.eql(\"200 OK\");","});","pm.test(\"atsconnect_ticket - values matches the expected value\", function () {","    var values = response.atsconnect_ticket.request.values;","    pm.expect(values).to.eql(\"{\\\"firstName\\\":\\\"For Testing Only\\\",\\\"statusId\\\":1369,\\\"referralSourceId\\\":2462,\\\"phone\\\":\\\"+1 999-555-3335\\\",\\\"countryId\\\":137,\\\"email\\\":\\\"002@haleymarketing.com\\\",\\\"city\\\":\\\"Buffalo\\\",\\\"zip\\\":\\\"34220\\\",\\\"stateId\\\":5904,\\\"cellPhone\\\":\\\"+1 919-555-3336\\\",\\\"lastName\\\":\\\"For Testing Only\\\",\\\"addressLine1\\\":\\\"2196 Sheridan Drive\\\"}\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = response.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    var atsconnectMessage = response.atsconnect_message;","    pm.expect(atsconnectMessage).to.eql(\"200 OK\");","});","pm.test(\"Check for error message when first_name and last_name are missing or blank\", function () {","    if (!requestData.api_request_data.api_request_query.first_name || requestData.api_request_data.api_request_query.first_name.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.eql(\"Error - Missing First Name\");","    } else if (!requestData.api_request_data.api_request_query.status || requestData.api_request_data.api_request_query.status.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.not.eql(\"Error - Missing First Name\");","    }","    else if (!requestData.api_request_data.api_request_query.status || requestData.api_request_data.api_request_query.status.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.not.eql(\"Error - Missing Candidate Status\");","    }","    else if (!requestData.api_request_data.api_request_query.referral_source || requestData.api_request_data.api_request_query.referral_source.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.not.eql(\"Error - Missing Referral Source\");","    }","});"],"type":"text/javascript"}}],"id":"b24506e0-8a25-4599-a5be-8f47cad8afe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_id\": \"{{laboredge_client_id}}\",\r\n            \"api_un\": \"{{laboredge_user_name}}\",\r\n            \"api_pw\": \"{{laboredge_password}}\",\r\n            \"api_secret\": \"{{laboredge_client_secret}}\"\r\n        },\r\n        \"vendor\": \"laboredge\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"address1\": \"2196 Sheridan Drive\",\r\n            \"cell_phone\": \"+1 919-555-3309\",\r\n            \"city\": \"Baltimore\",\r\n            \"country\": \"US\",\r\n            \"email\": \"0019.1.testing.6.february.2026@haleymarketing.com\",\r\n            \"first_name\": \"For Testing Only\",\r\n            \"last_name\": \"For Testing Only\",\r\n            \"phone\": \"+1 999-555-0339\",\r\n            \"referral_source\": \"Website\",\r\n            \"state\": \"MD\",\r\n            \"zip\": 21239,\r\n\t\t\t\"job\": { \"id\": 14255433 }\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>email - <strong>OPTIONAL</strong> - Email address</li>\n<li>first_name - <strong>REQUIRED</strong> - First name</li>\n<li>last_name - <strong>REQUIRED</strong> - Last name</li>\n<li>status - <strong>REQUIRED</strong> - Candidate Status</li>\n<li>referral_source - <strong>REQUIRED</strong> - Referral Source</li>\n<li>address1 - <strong>OPTIONAL</strong></li>\n<li>address2 - <strong>OPTIONAL</strong></li>\n<li>city - <strong>OPTIONAL</strong></li>\n<li>zip - <strong>OPTIONAL</strong></li>\n<li>state - <strong>OPTIONAL</strong></li>\n<li>country - <strong>OPTIONAL</strong></li>\n<li>phone - <strong>OPTIONAL</strong> - Phone number</li>\n<li>cell_phone - <strong>OPTIONAL</strong> - Cell Phone number</li>\n<li>rep_user - <strong>OPTIONAL</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {\n            \"email\":\"kjhj823232774s3@do.fam\",\n            \"first_name\":\"Tap\",\n            \"last_name\":\"Memrands\",\n            \"phone\":\"866.933.1244\",\n            \"file_data\": PDF             \n        }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8301eeb2-c5f7-48d7-9e1a-b29c5a8e2bf4","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_id\": \"{{laboredge_client_id}}\",\r\n            \"api_un\": \"{{laboredge_user_name}}\",\r\n            \"api_pw\": \"{{laboredge_password}}\",\r\n            \"api_secret\": \"{{laboredge_client_secret}}\"\r\n        },\r\n        \"vendor\": \"laboredge\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"address1\": \"2196 Sheridan Drive\",\r\n            \"cell_phone\": \"+1 919-555-3336\",\r\n            \"city\": \"Buffalo\",\r\n            \"country\": \"US\",\r\n            \"email\": \"07309981@mailinator.com\",\r\n            \"first_name\": \"tasty\",\r\n            \"last_name\": \"McCoserton\",\r\n            \"phone\": \"+1 999-555-3335\",\r\n            \"referral_source\": \"Referral Partners (Travel Only)\",\r\n            \"state\": \"MD\",\r\n            \"zip\": \"34220\",\r\n            \"status\": \"Active\"\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 19:44:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"595"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709502"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 22356925\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.056082\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-09-07T19:44:19\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"laboredge\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"tasty\\\",\\\"statusId\\\":1369,\\\"referralSourceId\\\":2462,\\\"phone\\\":\\\"+1 999-555-3335\\\",\\\"countryId\\\":137,\\\"email\\\":\\\"07309981@mailinator.com\\\",\\\"city\\\":\\\"Buffalo\\\",\\\"zip\\\":\\\"34220\\\",\\\"stateId\\\":5904,\\\"cellPhone\\\":\\\"+1 919-555-3336\\\",\\\"lastName\\\":\\\"McCoserton\\\",\\\"addressLine1\\\":\\\"2196 Sheridan Drive\\\"}\",\n            \"call\": \"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.473247\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"b24506e0-8a25-4599-a5be-8f47cad8afe0"},{"name":"Candidate Update","event":[{"listen":"test","script":{"id":"88a1d310-704b-4f40-8fe7-95465a9fc3d9","exec":["var response = pm.response.json();","var request = pm.request.body.raw;","var requestData = JSON.parse(request);","","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Candidate SET\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = response.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"PUT\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = response.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"api_xstatus matches the expected value\", function () {","    var api_xstatus = response.api_response.api_xstatus;","    pm.expect(api_xstatus).to.eql(\"200 OK\");","});","pm.test(\"atsconnect_ticket - values matches the expected value\", function () {","    var values = response.atsconnect_ticket.request.values;","    pm.expect(values).to.eql(\"{\\\"email\\\":\\\"001@haleymarketing.com\\\",\\\"firstName\\\":\\\"tast\\\",\\\"referralSourceId\\\":2462,\\\"lastName\\\":\\\"mcoserton\\\"}\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/22356066\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = response.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    var atsconnectMessage = response.atsconnect_message;","    pm.expect(atsconnectMessage).to.eql(\"200 OK\");","});","pm.test(\"Check for error message when first_name and last_name are missing or blank\", function () {","    if (!requestData.api_request_data.api_request_query.first_name || requestData.api_request_data.api_request_query.first_name.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.eql(\"Error - Missing First Name\");","    } else if (!requestData.api_request_data.api_request_query.first_name || requestData.api_request_data.api_request_query.first_name.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.not.eql(\"Error - Missing First Name\");","    }","});"],"type":"text/javascript"}}],"id":"bd82d5a0-101e-4746-9c54-cbce2ea52851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_id\": \"{{laboredge_client_id}}\",\r\n            \"api_un\": \"{{laboredge_user_name}}\",\r\n            \"api_pw\": \"{{laboredge_password}}\",\r\n            \"api_secret\": \"{{laboredge_client_secret}}\"\r\n        },\r\n        \"vendor\": \"laboredge\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\":22356066,\r\n            \"email\": \"001@haleymarketing.com\",\r\n            \"referral_source\": \"Referral Partners (Travel Only)\",\r\n            \"first_name\": \"tast\",\r\n            \"last_name\": \"mcoserton\",\r\n            \"status\": \"\"\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - Candidate ID</p>\n</li>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>status - <strong>REQUIRED</strong> - Candidate Status (can be empty or NULL)</p>\n</li>\n<li><p>referral_source - <strong>REQUIRED</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_request_data\": {\n    \"api_request_query\": { \n        \"id\":22356066,        \n        \"email\": \"001@haleymarketing.com\",         \n        \"referral_source\": \"Referral Partners (Travel Only)\",       \n        \"first_name\": \"tast\",        \n        \"last_name\": \"mcoserton\",        \n        \"status\": \"\"        \n    }    \n}\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"820a5b19-9ea1-4139-9bc6-8939f826ef79","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_id\": \"{{laboredge_client_id}}\",\r\n            \"api_un\": \"{{laboredge_user_name}}\",\r\n            \"api_pw\": \"{{laboredge_password}}\",\r\n            \"api_secret\": \"{{laboredge_client_secret}}\"\r\n        },\r\n        \"vendor\": \"laboredge\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\":22356066,\r\n            \"email\": \"001@haleymarketing.com\",\r\n            \"referral_source\": \"Referral Partners (Travel Only)\",\r\n            \"first_name\": \"tast\",\r\n            \"last_name\": \"mcoserton\",\r\n            \"status\": \"\"\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:13:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"492"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709514"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 22356066\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.061581\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2023-09-07T20:13:04\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"laboredge\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"email\\\":\\\"001@haleymarketing.com\\\",\\\"firstName\\\":\\\"tast\\\",\\\"referralSourceId\\\":2462,\\\"lastName\\\":\\\"mcoserton\\\"}\",\n            \"call\": \"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/22356066\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.309607\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"bd82d5a0-101e-4746-9c54-cbce2ea52851"},{"name":"Candidate Get By ID","event":[{"listen":"test","script":{"id":"0e1640ed-c922-49b9-a6d5-d8d0c77967fd","exec":["// Get the variables on request body","var requestBody = pm.request.body.raw;","var responseData = pm.response.json();","var requestCandidateId = JSON.parse(requestBody).api_request_data.api_request_query.id;","var responseCandidateId = responseData.api_response.api_data.candidates[0].id;","var responseReferral_source = responseData.api_response.api_data.candidates[0].referral_source;","var atsconnectMessage = responseData.atsconnect_message;","var candidateData = responseData.api_response.api_data.candidates[0];","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Candidate GET By ID\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = responseData.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"GET\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = responseData.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"api_xstatus matches the expected value\", function () {","    var api_xstatus = responseData.api_response.api_xstatus;","    pm.expect(api_xstatus).to.eql(\"1 candidate returned\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/22356925\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = responseData.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    pm.expect(atsconnectMessage).to.eql(\"1 candidate returned\");","});","pm.test(\"Check candidate data\", function () {","    pm.expect(candidateData.referral_source).to.eql(\"Referral Partners (Travel Only)\");","    pm.expect(candidateData.country).to.eql(\"United States\");","    pm.expect(candidateData.status).to.eql(\"Active\");","    pm.expect(candidateData.phone).to.eql(\"+1 919-555-3336\");","    pm.expect(candidateData.last_name).to.eql(\"McCoserton\");","    pm.expect(candidateData.cell_phone).to.eql(\"+1 919-555-3336\");","    pm.expect(candidateData.state).to.eql(\"Maryland\");","    pm.expect(candidateData.email).to.eql(\"07309981@mailinator.com\");","    pm.expect(candidateData.address1).to.eql(\"2196 Sheridan Drive\");","    pm.expect(candidateData.id).to.eql(22356925);","    pm.expect(candidateData.first_name).to.eql(\"tasty\");","});"],"type":"text/javascript"}}],"id":"4351ccb2-e2b8-4b77-b38e-572ea8cdd173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n          \"id\": 22356925,\r\n          \"api_request_fields\": \"first_name last_name\"          \r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - Candidate ID</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1279a6fb-ba18-4215-96e7-11e9c1a956fb","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n          \"id\": 22356925\r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:13:25 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"609"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"798075"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"Referral Partners (Travel Only)\",\n                    \"country\": \"United States\",\n                    \"status\": \"Active\",\n                    \"phone\": \"+1 919-555-3336\",\n                    \"last_name\": \"McCoserton\",\n                    \"cell_phone\": \"+1 919-555-3336\",\n                    \"state\": \"Maryland\",\n                    \"email\": \"07309981@mailinator.com\",\n                    \"address1\": \"2196 Sheridan Drive\",\n                    \"id\": 22356925,\n                    \"first_name\": \"tasty\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET By ID\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.219121\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-09-07T20:13:25\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"laboredge\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/22356925\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.224662\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"4351ccb2-e2b8-4b77-b38e-572ea8cdd173"},{"name":"Candidate Search","event":[{"listen":"test","script":{"id":"3338b28f-1f0c-448c-8919-ee6e7c3a948e","exec":["// Get the variables on request body","var requestBody = pm.request.body.raw;","var responseData = pm.response.json();","var requestCandidateId = JSON.parse(requestBody).api_request_data.api_request_query.id;","var responseCandidateId = responseData.api_response.api_data.candidates[0].id;","var responseReferral_source = responseData.api_response.api_data.candidates[0].referral_source;","var atsconnectMessage = responseData.atsconnect_message;","var candidateData = responseData.api_response.api_data.candidates[0];","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Candidate GET\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = responseData.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"POST\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = responseData.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"api_xstatus matches the expected value\", function () {","    var api_xstatus = responseData.api_response.api_xstatus;","    pm.expect(api_xstatus).to.eql(\"1 candidate returned\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/search\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = responseData.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"atsconnect_message matches the expected value\", function () {","    pm.expect(atsconnectMessage).to.eql(\"1 candidate returned\");","});","pm.test(\"Check candidate data\", function () {","    pm.expect(candidateData.referral_source).to.eql(\"Referral Partners (Travel Only)\");","    pm.expect(candidateData.country).to.eql(\"United States\");","    pm.expect(candidateData.status).to.eql(\"Active\");","    pm.expect(candidateData.phone).to.eql(\"+1 919-555-3336\");","    pm.expect(candidateData.last_name).to.eql(\"McCoserton\");","    pm.expect(candidateData.cell_phone).to.eql(\"+1 919-555-3336\");","    pm.expect(candidateData.state).to.eql(\"Maryland\");","    pm.expect(candidateData.email).to.eql(\"07309981@mailinator.com\");","    pm.expect(candidateData.address1).to.eql(\"2196 Sheridan Drive\");","    pm.expect(candidateData.id).to.eql(22356925);","    pm.expect(candidateData.first_name).to.eql(\"tasty\");","});"],"type":"text/javascript"}}],"id":"22638659-5356-480e-84bc-df81b39057f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {    \r\n            \"email\": \"07309981@mailinator.com\"        \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all candidates matching search criteria.</p>\n\n<ul>\n<li>email - <strong>REQUIRED</strong></li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d952be96-a479-4727-b313-28452b3116c1","name":"Candidate Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {    \r\n            \"email\": \"07309981@mailinator.com\"        \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:15:29 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"664"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709517"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"Referral Partners (Travel Only)\",\n                    \"country\": \"United States\",\n                    \"status\": \"Active\",\n                    \"phone\": \"+1 919-555-3336\",\n                    \"last_name\": \"McCoserton\",\n                    \"cell_phone\": \"+1 919-555-3336\",\n                    \"state\": \"Maryland\",\n                    \"email\": \"07309981@mailinator.com\",\n                    \"address1\": \"2196 Sheridan Drive\",\n                    \"id\": 22356925,\n                    \"first_name\": \"tasty\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.225971\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-09-07T20:15:29\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"laboredge\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"email\\\":\\\"07309981@mailinator.com\\\",\\\"pagingSortingDetails\\\":{\\\"maxRowsToFetch\\\":1,\\\"start\\\":0}}\",\n            \"call\": \"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/search\"\n        },\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.249604\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"22638659-5356-480e-84bc-df81b39057f9"},{"name":"Candidate Set Education","id":"3fde0188-40ba-45c6-8972-368847abbf72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"bfcf91e3-ac63-4ec1-bda1-9702ea19a3ea","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:18:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"368"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709520"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:18:11\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:18:11\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.005277\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"3fde0188-40ba-45c6-8972-368847abbf72"},{"name":"Candidate Get Education","id":"e0029a09-32b2-44cc-b8d4-e7096b314aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a1df3890-db21-4adb-a64b-8b433ddad6f5","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:18:33 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"368"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"798081"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:18:33\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:18:33\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.005647\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e0029a09-32b2-44cc-b8d4-e7096b314aaa"},{"name":"Candidate Set Work History","id":"f5ef7c27-59f7-4c9b-856d-f3976704a033","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ecad2f1d-67d5-4e19-ab4f-bde4fa774657","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:18:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"372"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709523"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:18:48\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:18:48\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.004774\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f5ef7c27-59f7-4c9b-856d-f3976704a033"},{"name":"Candidate Get Work History","id":"102a562f-affb-4fc6-b1c3-54fcb32e9674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"023661f3-4176-43a5-8391-080ab9b771ef","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:19:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"370"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709526"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:19:48\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:19:48\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.00442\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"102a562f-affb-4fc6-b1c3-54fcb32e9674"}],"id":"f396db5c-7bc0-4f37-b6a2-64581ff8b925","_postman_id":"f396db5c-7bc0-4f37-b6a2-64581ff8b925","description":""},{"name":"Custom","item":[{"name":"Custom","id":"6c102cf8-34b4-4b6f-8809-c27ef9aaff83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {            \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to LaborEdge via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fb97ac3b-e2f8-46bd-bfec-68dbe243ef94","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {            \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:21:39 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"356"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"798087"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:21:39\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:21:39\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.009552\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"6c102cf8-34b4-4b6f-8809-c27ef9aaff83"}],"id":"ce63507d-3b5b-4d48-b0b8-ab614653e1b0","_postman_id":"ce63507d-3b5b-4d48-b0b8-ab614653e1b0","description":""},{"name":"File Upload","item":[{"name":"File Upload","event":[{"listen":"test","script":{"id":"63b3d5cc-64d5-40ef-a966-8ca2a251fd90","exec":["var response = pm.response.json();","var request = pm.request.body.raw;","var requestData = JSON.parse(request);","","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"File Upload\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = response.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"POST-FILE\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = response.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - CALL_REQUEST matches the expected value\", function () {","    var callRequest = response.atsconnect_ticket.request.call;","    pm.expect(callRequest).to.eql(\"https://api-nexus.laboredge.com:9000/api/api-integration/v1/candidates/22356925/candidatedocument\");","});","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = response.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = response.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"Error - Missing Document Type is returned when type is missing or null or blank\", function () {","    if (!requestData.api_request_data.api_request_query.type || requestData.api_request_data.api_request_query.type.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.equal(\"Error - Missing Document Type\");","    }","});","pm.test(\"Error - Missing File is returned when file_data is missing or null or blank\", function () {","    if (!requestData.api_request_data.api_request_query.file_data || requestData.api_request_data.api_request_query.file_data.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.equal(\"Error - Missing File\");","    }","});","pm.test(\"Error - Missing File is returned when file_data is missing or null or blank\", function () {","    if (!requestData.api_request_data.api_request_query.file_data || requestData.api_request_data.api_request_query.file_data.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.equal(\"Error - Missing File\");","    }","});","pm.test(\"Error - Missing File is returned when file_name is missing or null or blank\", function () {","    if (!requestData.api_request_data.api_request_query.file_name || requestData.api_request_data.api_request_query.file_name.trim() === \"\") {","        pm.expect(response.atsconnect_message).to.equal(\"Error - Access Denied\");","    }","});","","pm.test(\"file_name is a supported file type\", function () {","    var supportedFileTypes = [\"doc\", \"docx\", \"pdf\", \"txt\"];","    var fileName = requestData.api_request_data.api_request_query.file_name;","    var fileType = fileName.split('.').pop();","","    pm.expect(supportedFileTypes.includes(fileType)).to.be.true;","});"],"type":"text/javascript"}}],"id":"6352bc07-1edf-4e09-98bb-56911617a5e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_id\": \"{{laboredge_client_id}}\",\r\n            \"api_un\": \"{{laboredge_user_name}}\",\r\n            \"api_pw\": \"{{laboredge_password}}\",\r\n            \"api_secret\": \"{{laboredge_client_secret}}\"\r\n        },\r\n        \"vendor\": \"laboredge\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 22356925\r\n            },\r\n            \"type\": \"Resume\",\r\n            \"file_name\": \"Resume.pdf\",\r\n            \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\"\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>candidate -&gt; id - <strong>REQUIRED</strong> - Candidate ID</p>\n</li>\n<li><p>type - <strong>REQUIRED</strong></p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n<ul>\n<li>Supported File Type (doc,docx,pdf,txt)</li>\n</ul>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>        \"api_request_query\": {\n            \"candidate\": {\n                \"id\": 22356925\n            },\n            \"type\": \"Resume\",\n            \"file_name\": \"Resume.pdf\",\n            \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\"\n        }\n    }\n\n</code></pre>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6352bc07-1edf-4e09-98bb-56911617a5e1"}],"id":"78197fd7-f53b-4834-9b65-6b3dbef90ac5","_postman_id":"78197fd7-f53b-4834-9b65-6b3dbef90ac5","description":""},{"name":"Job","item":[{"name":"Job Get","event":[{"listen":"test","script":{"id":"4606a3f3-2edd-4fe8-8452-f336d8f5546d","exec":["var requestBody = pm.request.body.raw;","var responseData = pm.response.json();","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"api_log - CALL_REQUEST matches the expected value\", function () {","    var callRequest = responseData.api_response.api_log.CALL_REQUEST;","    pm.expect(callRequest).to.eql(\"Jobs GET\");","});","pm.test(\"api_log - CALL_ACTION matches the expected value\", function () {","    var callAction = responseData.api_response.api_log.CALL_ACTION;","    pm.expect(callAction).to.eql(\"POST\");","});","pm.test(\"api_log - MESSAGE matches the expected value\", function () {","    var message = responseData.api_response.api_log.MESSAGE;","    pm.expect(message).to.eql(\"Success\");","});","pm.test(\"api_log - VENDOR matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","","pm.test(\"atsconnect_ticket - vendor matches the expected value\", function () {","    var vendor = responseData.atsconnect_ticket.vendor;","    pm.expect(vendor).to.eql(\"laboredge\");","});","pm.test(\"atsconnect_ticket - key matches the expected value\", function () {","    var key = responseData.atsconnect_ticket.key;","    pm.expect(key).to.eql(\"11111-22222-33333-44444-55555\");","});","pm.test(\"If status is 'CLOSED/OPEN', then all status in response body should be 'Closed/Open'\", function () {","    // Check if the request body contains status as 'CLOSED'","    var requestBody = JSON.parse(pm.request.body.raw);","    if (pm.request.body && pm.request.body.raw) {","        if (requestBody.api_request_data.api_request_query.status === \"CLOSED\") {","            // Check if all status in the response body are 'Closed'","            pm.response.json().api_response.api_data.jobs.forEach(function (job) {","                pm.expect(job.status).to.equal(\"Closed\");","            });","        } else if (requestBody.api_request_data.api_request_query.status === \"OPEN\") {","            // Check if all status in the response body are 'Open'","            pm.response.json().api_response.api_data.jobs.forEach(function (job) {","                pm.expect(job.status).to.equal(\"Open\");","            });","        }","    }","});"],"type":"text/javascript"}}],"id":"00d5094e-e9ed-48d8-824e-2ae5ebc77e78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":0,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<p>status - <b>OPTIONAL</b> - job status (\"OPEN\" or \"CLOSED\")\noffset - <b>OPTIONAL</b> - offset</p>\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00d5094e-e9ed-48d8-824e-2ae5ebc77e78"},{"name":"Job Get By ID","id":"27dbde95-b39c-4be6-a70a-4833221e0a49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 15428886\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p><strong>Not Implemented</strong> - retrieves all jobs</p>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27dbde95-b39c-4be6-a70a-4833221e0a49"},{"name":"Job Search","id":"a7de7223-a82d-43f1-8344-02dafb930b0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 17790139\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<p><strong>Not Implemented</strong> - returns all jobs</p>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7de7223-a82d-43f1-8344-02dafb930b0f"}],"id":"feaf77ae-ae5d-4e41-b9be-41f39c777840","_postman_id":"feaf77ae-ae5d-4e41-b9be-41f39c777840","description":""},{"name":"Notes","item":[{"name":"Note Set","id":"562a1544-2dc1-4ccc-9987-789e3111a75d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3a1be1ea-a777-4e05-8f4e-0939d5321efb","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:40:27 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"361"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"709579"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note Set\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:40:27\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:40:28\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.0319199999999999\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"562a1544-2dc1-4ccc-9987-789e3111a75d"}],"id":"6f470361-7e6e-4d79-8602-2b5d163b6c32","event":[{"listen":"prerequest","script":{"id":"f35d64ee-e8ef-4ccf-bd99-6cf4128cc1f2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a485e13d-96a4-484e-a669-76563d4a3b35","type":"text/javascript","exec":[""]}}],"_postman_id":"6f470361-7e6e-4d79-8602-2b5d163b6c32","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"dd589ac1-fe5b-478b-a356-20d5fd350791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"05f986dc-7a64-4a6e-86ef-1dfebdb9b024","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {            \r\n        }      \r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Sep 2023 20:40:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"360"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"798099"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-09-07T20:40:11\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2023-09-07T20:40:11\",\n            \"APIKEY\": \"bmV4dXM6YXBpX2docjpnaHI6QXBpQEdocg==\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"laboredge\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"laboredge\",\n        \"elapsed\": \"0.128648\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"dd589ac1-fe5b-478b-a356-20d5fd350791"}],"id":"8899cea2-f0df-4746-9db6-3e9262117d35","event":[{"listen":"prerequest","script":{"id":"86bc0f0f-2c92-4718-95b2-4974e3266d9d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2b685e36-85ff-4e70-9c87-8c740d91dc2a","type":"text/javascript","exec":[""]}}],"_postman_id":"8899cea2-f0df-4746-9db6-3e9262117d35","description":""}],"id":"e3840610-9f8d-4d90-9fda-21f4155e544e","event":[{"listen":"prerequest","script":{"id":"8c01638b-b8c5-4123-a41b-147d03674274","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bbd3b64c-fe6e-418b-8cfd-3cf62e666da5","type":"text/javascript","exec":[""]}}],"_postman_id":"e3840610-9f8d-4d90-9fda-21f4155e544e","description":""},{"name":"eRecruit v1","item":[{"name":"Authentication","item":[{"name":"ATS Authorization","id":"c868d98f-bfd3-41dc-b4fd-354c12a12bcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }\n"},"url":"{{ats-connect}}/authenticate","description":"<p>API Healthcare uses a session key to validate api requests</p>\n\n<p>Returns the API Session Key</p>\n\n<p><b>NOTE: This process is internal - this endpoint is available for testing purposes.</b></p>\n\n<ul>\n<li><p>api_un - username - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_pw - password - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_url - endpoint, a designated value for compiling rest url - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c3551da5-938c-4a76-830a-18b74a4b3c11","name":"ATS Authorization","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"    {\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{}\n    }\n"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 16:56:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"485"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272927"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"CREADTEDBY_ID\": \"e1f806d0-6732-4662-9452-bc6f25ad2a35\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Authenticate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.348681\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T16:56:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"Password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"Username\\\":\\\"haleymarketingAPI@softworldinc.com\\\",\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Authenticate\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.403169\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"c868d98f-bfd3-41dc-b4fd-354c12a12bcc"}],"id":"54d0161a-3f34-4577-aa5d-23f689c3f223","_postman_id":"54d0161a-3f34-4577-aa5d-23f689c3f223","description":""},{"name":"Application","item":[{"name":"Application Get","id":"fd6140c7-ded6-4c4d-b0a7-a8e1986ece2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                \"id\":1474716\n                    }\n                }\n    }\n}\n"},"url":"{{ats-connect}}/application/get/","description":"<p>For retrieving a specific candidate's application via their candidate ID or email address.</p>\n\n<ul>\n<li><p>email - <b>REQUIRED</b> - if candidate ID is not used</p>\n</li>\n<li><p>id - <b>REQUIRED</b> - if email is not used</p>\n</li>\n<li><p>api_request_fields - Not supported in this call</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                \"id\":5665439\n                    }\n                }\n    }\n</pre>","urlObject":{"path":["application","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"970a4182-3964-4e4c-817c-aeed84d49b4e","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                \"id\":5665439\n                    }\n                }\n    }\n}\n"},"url":"{{ats-connect}}/application/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 16:57:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"580"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200106"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 4,\n            \"applications\": [\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"\",\n                    \"note\": \"\",\n                    \"job\": \"221676\",\n                    \"candidate\": \"5665439\",\n                    \"id\": \"\",\n                    \"rep_user\": \"\",\n                    \"api_request_custom\": {\n                        \"EntityID\": \"00000000-0000-0000-0000-000000000e01\",\n                        \"CreatedByID\": \"5b764a3c-8400-433e-b175-f02532b699c8\"\n                    }\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"\",\n                    \"note\": \"\",\n                    \"job\": \"221983\",\n                    \"candidate\": \"5665439\",\n                    \"id\": \"\",\n                    \"rep_user\": \"\",\n                    \"api_request_custom\": {\n                        \"EntityID\": \"00000000-0000-0000-0000-000000000e01\",\n                        \"CreatedByID\": \"5b764a3c-8400-433e-b175-f02532b699c8\"\n                    }\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"\",\n                    \"note\": \"\",\n                    \"job\": \"221983\",\n                    \"candidate\": \"5665439\",\n                    \"id\": \"\",\n                    \"rep_user\": \"\",\n                    \"api_request_custom\": {\n                        \"EntityID\": \"00000000-0000-0000-0000-000000000e01\",\n                        \"CreatedByID\": \"5b764a3c-8400-433e-b175-f02532b699c8\"\n                    }\n                },\n                {\n                    \"referral_source\": \"\",\n                    \"status\": \"\",\n                    \"note\": \"\",\n                    \"job\": \"221734\",\n                    \"candidate\": \"5665439\",\n                    \"id\": \"\",\n                    \"rep_user\": \"\",\n                    \"api_request_custom\": {\n                        \"EntityID\": \"00000000-0000-0000-0000-000000000e01\",\n                        \"CreatedByID\": \"5b764a3c-8400-433e-b175-f02532b699c8\"\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateApplication\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.086132\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T16:57:05\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Applications returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/CandidateApplication/00000000-0000-0000-0000-000000000E01/5665439/ByCandidateID\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.483508\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 or more Applications returned\"\n}"}],"_postman_id":"fd6140c7-ded6-4c4d-b0a7-a8e1986ece2f"},{"name":"Application Set","id":"61dc71b9-0609-41d1-aa54-666b847b7e96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                        \"id\":1474716\n                            },\n                            \"job\":{\n                                        \"id\":116913\n                            }\n                }\n    }\n}\n"},"url":"{{ats-connect}}/application/set/","description":"<p>For submitting a candidate's application.  Email or candidate ID is required and you may add additional candidate info which will set/update the candidate before the application set.</p>\n\n<ul>\n<li><p>email - <b>REQUIRED</b> - if candidate ID is not used</p>\n</li>\n<li><p>id - <b>REQUIRED</b> - if email is not used</p>\n</li>\n<li><p>api_request_custom - \"ApplicationSource\" - <b>OPTIONAL,</b> - if left out will default to 'Website'</p>\n</li>\n<li><p>api_request_fields - Not supported in this call</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                        \"id\":5813350\n                            },\n                            \"job\":{\n                                        \"id\":231077\n                            }\n                }\n    }\n</pre>","urlObject":{"path":["application","set",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"67e8d112-c5b9-4a05-8f53-e261fdf571c5","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"candidate\":{\n                                        \"id\":5813350\n                            },\n                            \"job\":{\n                                        \"id\":231077\n                            }\n                }\n    }\n}\n"},"url":"{{ats-connect}}/application/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 16:58:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"521"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272930"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"1\",\n            \"id\": \"293342\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"CandidateApplication\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.216761,\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T16:58:46\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Application set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\",\\\"ApplicationSource\\\":null,\\\"CandidateID\\\":5813350,\\\"PositionID\\\":231077,\\\"CreatedByID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/CandidateApplication/00000000-0000-0000-0000-000000000E01/Do/Create\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.626484\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Application set\"\n}"}],"_postman_id":"61dc71b9-0609-41d1-aa54-666b847b7e96"}],"id":"d4d64f6c-5b14-4220-9987-4f970cf5f56d","_postman_id":"d4d64f6c-5b14-4220-9987-4f970cf5f56d","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"864e713f-6427-4bda-ab21-d73838f187bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"email\": \"elliottlgray84@gmail.com\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/","description":"<p>For retrieving a specific candidate via their email address.</p>\n\n<ul>\n<li>email - <strong>REQUIRED</strong></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"email\":\"tshoemaker030718-1@haleymarketing.com\"\n                }\n    }\n\n</code></pre>","urlObject":{"path":["candidate","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7e18d0cb-45cf-4311-a40a-9a1e04b068af","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"email\":\"tshoemaker030718-1@haleymarketing.com\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:00:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"717"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200109"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"other-job board\",\n                    \"pay_rate\": \"\",\n                    \"skills\": \"\",\n                    \"date_of_birth\": \"\",\n                    \"veteran\": \"\",\n                    \"ethnicity\": \"\",\n                    \"last_name\": \"Test1\",\n                    \"opt_out\": \"\",\n                    \"email\": \"tshoemaker030718-1@haleymarketing.com\",\n                    \"category\": \"\",\n                    \"resume_html\": \"\",\n                    \"address\": {\n                        \"country\": \"US\"\n                    },\n                    \"id\": \"5813350\",\n                    \"gender\": \"\",\n                    \"categories\": \"\",\n                    \"phone\": \"8886962900\",\n                    \"description\": \"\",\n                    \"cell_phone\": \"\",\n                    \"disability\": \"\",\n                    \"date_added\": \"\",\n                    \"rep_user\": \"\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"api_request_custom\": {\n                        \"WorkHistory\": {\n                            \"work_history\": [],\n                            \"count\": 0\n                        },\n                        \"FolderGroupIDList\": [\n                            \"91\"\n                        ],\n                        \"EducationHistory\": {\n                            \"education_history\": [],\n                            \"count\": 0\n                        }\n                    },\n                    \"first_name\": \"Test\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.252486\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:00:26\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/User/00000000-0000-0000-0000-000000000E01/tshoemaker030718-1@haleymarketing.com\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.672162\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 or more Candidates returned\"\n}"}],"_postman_id":"864e713f-6427-4bda-ab21-d73838f187bc"},{"name":"Candidate Get By ID","id":"354183a8-7586-466e-a8ab-0d154e07aec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":1474716\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/","description":"<p>For retrieving a specific candidate.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b> - ats specific fields you'd like included in the results - space separated values</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":5665439\n                }\n    }\n</pre>","urlObject":{"path":["candidate","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a93a215b-96e9-425f-8b06-fce78a1ca1d6","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":5665439\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Jan 2023 20:08:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1165"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"762886"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": 1,\n            \"candidates\": [\n                {\n                    \"referral_source\": \"CareerBuilder Sourced\",\n                    \"pay_rate\": \"\",\n                    \"skills\": \"\",\n                    \"date_of_birth\": \"\",\n                    \"veteran\": \"\",\n                    \"ethnicity\": \"\",\n                    \"last_name\": \"Java\",\n                    \"opt_out\": \"\",\n                    \"email\": \"kalyan@avcoconsulting.com\",\n                    \"category\": \"\",\n                    \"resume_html\": \"\",\n                    \"address\": {\n                        \"country\": \"US\"\n                    },\n                    \"id\": \"5665439\",\n                    \"CommunicationMethod_100_RecordID\": \"1958591\",\n                    \"Email\": \"kalyan@avcoconsulting.com\",\n                    \"gender\": \"\",\n                    \"CommunicationMethod_100\": \"508-425-7377\",\n                    \"categories\": \"\",\n                    \"branch\": \"\",\n                    \"description\": \"\",\n                    \"phone\": \"508-425-7377\",\n                    \"mime_type\": \"\",\n                    \"cell_phone\": \"\",\n                    \"HomePhone\": \"508-425-7377\",\n                    \"disability\": \"\",\n                    \"date_added\": \"\",\n                    \"rep_user\": \"\",\n                    \"type\": \"\",\n                    \"title\": \"\",\n                    \"api_request_custom\": {\n                        \"WorkHistory\": {\n                            \"work_history\": [\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2084806\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2086969\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2094498\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2094505\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2094514\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2094515\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2094516\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2095453\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                },\n                                {\n                                    \"company_name\": \"Food Factory\",\n                                    \"comments\": \"This is a comment\",\n                                    \"state\": \"\",\n                                    \"termination_reason\": \"\",\n                                    \"city\": \"\",\n                                    \"id\": \"2103909\",\n                                    \"start_date\": \"11/25/1972\",\n                                    \"commission\": \"\",\n                                    \"ending_salary\": \"\",\n                                    \"country\": \"\",\n                                    \"salary_type\": \"\",\n                                    \"location\": \"\",\n                                    \"bonus\": \"\",\n                                    \"end_date\": \"01/31/1982\",\n                                    \"title\": \"President\",\n                                    \"starting_salary\": \"5.0000\"\n                                }\n                            ],\n                            \"count\": 9\n                        },\n                        \"FolderGroupIDList\": [\n                            \"91\"\n                        ],\n                        \"EducationHistory\": {\n                            \"education_history\": [\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"392743\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"420454\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"421087\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"422788\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"423160\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"423485\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                },\n                                {\n                                    \"degree\": \"\",\n                                    \"comments\": \"\",\n                                    \"state\": \"\",\n                                    \"degree_type\": \"\",\n                                    \"city\": \"Boston\",\n                                    \"gpa\": \"1.80\",\n                                    \"id\": \"425914\",\n                                    \"school\": \"University of California\",\n                                    \"start_date\": \"\",\n                                    \"minor\": \"English\",\n                                    \"expiration_date\": \"\",\n                                    \"certification\": \"\",\n                                    \"graduation_date\": \"1995\",\n                                    \"candidate\": \"\",\n                                    \"end_date\": \"\",\n                                    \"type\": \"\",\n                                    \"major\": \"Chemistry\"\n                                }\n                            ],\n                            \"count\": 7\n                        }\n                    },\n                    \"first_name\": \"Vikas\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.388649\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-01-25T20:08:20\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5665439\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.951438\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 or more Candidates returned\"\n}"}],"_postman_id":"354183a8-7586-466e-a8ab-0d154e07aec0"},{"name":"Candidate Get Education","id":"7660f3d9-7ce0-4221-bebf-cd058433db96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 1474716\n                }\n    }\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For retreiving a candidate's education record.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439\n                }\n    }\n</pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e24b656f-fa8a-4934-af87-a2613449b044","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439\n                }\n    }\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:27:46 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"629"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272948"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"education_history\": [\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"392743\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"420454\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"421087\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"422788\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"423160\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"423485\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                },\n                {\n                    \"degree\": \"\",\n                    \"minor\": \"English\",\n                    \"expiration_date\": \"\",\n                    \"certification\": \"\",\n                    \"comments\": \"\",\n                    \"state\": \"\",\n                    \"graduation_date\": \"1995\",\n                    \"city\": \"Boston\",\n                    \"end_date\": \"\",\n                    \"gpa\": \"1.80\",\n                    \"type\": \"\",\n                    \"id\": \"425914\",\n                    \"school\": \"University of California\",\n                    \"start_date\": \"\",\n                    \"major\": \"Chemistry\"\n                }\n            ],\n            \"count\": 7\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.384695\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:27:47\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Candidate Education results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5665439\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.752735\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 or more Candidate Education results returned\"\n}"}],"_postman_id":"7660f3d9-7ce0-4221-bebf-cd058433db96"},{"name":"Candidate Get Work History","id":"04c8adff-ff0c-4ef9-9ed7-e96981d35864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 1474716\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For retreiving a candidate's work history record.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439\n                }\n    }\n</pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"61d32513-2822-4066-bd7b-6b45edfe1760","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:08:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"643"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272936"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"work_history\": [\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2084806\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2086969\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2094498\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2094505\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2094514\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2094515\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2094516\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2095453\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                },\n                {\n                    \"ending_salary\": \"\",\n                    \"location\": \"\",\n                    \"salary_type\": \"\",\n                    \"company_name\": \"Food Factory\",\n                    \"bonus\": \"\",\n                    \"comments\": \"This is a comment\",\n                    \"termination_reason\": \"\",\n                    \"end_date\": \"01/31/1982\",\n                    \"id\": \"2103909\",\n                    \"title\": \"President\",\n                    \"start_date\": \"11/25/1972\",\n                    \"commission\": \"\",\n                    \"starting_salary\": \"5.0000\"\n                }\n            ],\n            \"count\": 9\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.414053,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:08:03\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 or more Candidate Workhistories returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5665439\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.85387\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 or more Candidate Workhistories returned\"\n}"}],"_postman_id":"04c8adff-ff0c-4ef9-9ed7-e96981d35864"},{"name":"Candidate Set","id":"84b535d4-3f6f-4e7d-975a-9e532927022f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                        \"first_name\":\"Testing\",\n                        \"last_name\":\"This\",\n                        \"email\":\"test.31.March.2026.1@mailinator.com\",\n                        \"phone\":\"999-999-1234\",\n                        \"address1\":\"123 Any St\",\n                        \"city\":\"Shreveport\",\n                        \"state\":\"LA\",\n                        \"zip\":\"71108\",\n\t\t\t\t\t\t\"referral\": \"Indeed\",\n\t\t\t\t\t\t\"folder_group_id\": 1\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/","description":"<p>For submitting candidate data to the ATS.</p>\n\n<ul>\n<li>job_id or job_specialty - <strong>REQUIRED</strong> - either job id or specialty is used to determine the folder group id which is required by erecruit [is not used currently but there may be a default value?!]</li>\n<li>api_request_custom - AdSource - source of the candidate, if omitted or left blank will default to 'Website'</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"first_name\": \"Test9\",\n                            \"last_name\": \"Test040417\",\n                            \"phone\": \"5555551212\",\n                            \"cell_phone\":\"2072363591\",\n                            \"email\": \"test4@Test040417.com\",\n                            \"address1\": \"6 Tree Top Way\",\n                            \"address2\": \"Apt 8\",\n                            \"city\": \"Portland\",\n                            \"state\": \"Maine\",\n                            \"zip\": \"04563\",\n                            \"country\":\"US\",\n                            \"referral_source\":\"Indeed\"\n                }\n    }\n\n</code></pre>","urlObject":{"path":["candidate","set",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5a7e850c-8b38-40e1-ae6d-6ad93ee3b75e","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"first_name\": \"Test9\",\n                            \"last_name\": \"Test040417\",\n                            \"phone\": \"5555551212\",\n                            \"cell_phone\":\"2072363591\",\n                            \"email\": \"test4@Test040417.com\",\n                            \"address1\": \"6 Tree Top Way\",\n                            \"address2\": \"Apt 8\",\n                            \"city\": \"Portland\",\n                            \"state\": \"Maine\",\n                            \"zip\": \"04563\",\n                            \"country\":\"US\",\n                            \"referral_source\":\"Indeed\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:29:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"682"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200128"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"1\",\n            \"id\": \"5890647\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.186398,\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T17:29:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"WithPermissions\\\":\\\"false\\\",\\\"FirstName\\\":\\\"Test9\\\",\\\"AddressLine1\\\":\\\"6 Tree Top Way\\\",\\\"AddressLine2\\\":\\\"Apt 8\\\",\\\"City\\\":\\\"Portland\\\",\\\"CheckforDup\\\":1,\\\"AdSource\\\":\\\"Indeed\\\",\\\"LastName\\\":\\\"Test040417\\\",\\\"CountryID\\\":\\\"220\\\",\\\"StateID\\\":\\\"25\\\",\\\"IsApproved\\\":\\\"false\\\",\\\"PostalCode\\\":\\\"04563\\\",\\\"ChangedByID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\",\\\"CommunicationMethod_100\\\":\\\"5555551212\\\",\\\"FolderGroupID\\\":null,\\\"CommunicationMethod_103\\\":\\\"2072363591\\\",\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5890647/Update/\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.887861\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate set\"\n}"},{"id":"bf32ae1e-3ebf-4750-9d1f-3ffde4a0eb32","name":"Candidate Set with Job Specialty","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"first_name\": \"Test\",\n                            \"last_name\": \"Me\",\n                            \"phone\": \"9555551212\",\n                            \"cell_phone\":\"9072363591\",\n                            \"email\": \"test4@mailinator.com\",\n                            \"address1\": \"6 Tree Top Way\",\n                            \"address2\": \"Apt 8\",\n                            \"city\": \"Portland\",\n                            \"state\": \"Maine\",\n                            \"zip\": \"04563\",\n                            \"country\":\"US\",\n                            \"referral_source\":\"Indeed\",\n                            \"job_specialty\": \"Engineering\"\n                }\n    }\n}"},"url":"{{ats-connect}}/candidate/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 22 Dec 2022 20:12:23 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"687"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"243627"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"1\",\n            \"id\": \"6137455\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.709425\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-12-22T20:12:24\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"WithPermissions\\\":\\\"false\\\",\\\"FirstName\\\":\\\"Test\\\",\\\"AddressLine1\\\":\\\"6 Tree Top Way\\\",\\\"AddressLine2\\\":\\\"Apt 8\\\",\\\"City\\\":\\\"Portland\\\",\\\"AdSource\\\":\\\"Indeed\\\",\\\"CountryID\\\":\\\"220\\\",\\\"LastName\\\":\\\"Me\\\",\\\"StateID\\\":\\\"25\\\",\\\"Email\\\":\\\"test4@mailinator.com\\\",\\\"IsApproved\\\":\\\"false\\\",\\\"PostalCode\\\":\\\"04563\\\",\\\"CommunicationMethod_100\\\":\\\"9555551212\\\",\\\"OwnerID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\",\\\"FolderGroupID\\\":\\\"122\\\",\\\"CommunicationMethod_103\\\":\\\"9072363591\\\",\\\"CreatedByID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\",\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/Do/Create/\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"1.738405\",\n        \"key\": \"xxxxxxxxxxxxxxx55\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate set\"\n}"}],"_postman_id":"84b535d4-3f6f-4e7d-975a-9e532927022f"},{"name":"Candidate Set Education","id":"38b1148c-e563-4892-a0f2-04612c1b60b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"gpa\": \"1.8\",\n                            \"major\": \"Chemistry\",\n                            \"minor\":\"English\",\n                            \"city\": \"Boston\",\n                            \"state\": \"Oregon\",\n                            \"school\":\"University of California\",\n                            \"graduation_date\":\"1995\",\n                            \"country\":\"United States\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"gpa\": \"1.8\",\n                            \"major\": \"Chemistry\",\n                            \"minor\":\"English\",\n                            \"city\": \"Boston\",\n                            \"state\": \"Oregon\",\n                            \"school\":\"University of California\",\n                            \"graduation_date\":\"1995\",\n                            \"country\":\"United States\"\n                }\n    }\n</pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a635e5a6-3a75-460b-9591-d17f6f69baf9","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"gpa\": \"1.8\",\n                            \"major\": \"Chemistry\",\n                            \"minor\":\"English\",\n                            \"city\": \"Boston\",\n                            \"state\": \"Oregon\",\n                            \"school\":\"University of California\",\n                            \"graduation_date\":\"1995\",\n                            \"country\":\"United States\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:05:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"598"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200112"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"425914\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"UpdateEducationHistory\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.293111,\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T17:05:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Education set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"GraduationYear\\\":\\\"1995\\\",\\\"GPA\\\":\\\"1.8\\\",\\\"City\\\":\\\"Boston\\\",\\\"Minors\\\":\\\"English\\\",\\\"Majors\\\":\\\"Chemistry\\\",\\\"UpdatedByUserID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\",\\\"AboutTypeID\\\":\\\"6\\\",\\\"CountryID\\\":\\\"220\\\",\\\"ReferenceID\\\":5665439,\\\"StateID\\\":\\\"50\\\",\\\"SchoolName\\\":\\\"University of California\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Education/Do/UpdateEducationHistory\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.733034\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Education set\"\n}"}],"_postman_id":"38b1148c-e563-4892-a0f2-04612c1b60b7"},{"name":"Candidate Set Work History","id":"e8bdcca2-1d3f-4792-b3d1-c6b3f82ff059","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"title\": \"President\",\n                            \"company_name\": \"Food Factory\",\n                            \"starting_salary\":\"5.00\",\n                            \"comments\": \"This is a comment\",\n                            \"start_date\": \"11/25/1972\",\n                            \"end_date\":\"01/31/1982\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre> \n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"title\": \"President\",\n                            \"company_name\": \"Food Factory\",\n                            \"starting_salary\":\"5.00\",\n                            \"comments\": \"This is a comment\",\n                            \"start_date\": \"11/25/1972\",\n                            \"end_date\":\"01/31/1982\"\n                }\n    }\n</pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9a7592b9-4951-4e14-bdfd-731566e712f9","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"id\": 5665439,\n                            \"title\": \"President\",\n                            \"company_name\": \"Food Factory\",\n                            \"starting_salary\":\"5.00\",\n                            \"comments\": \"This is a comment\",\n                            \"start_date\": \"11/25/1972\",\n                            \"end_date\":\"01/31/1982\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:03:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"550"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272933"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"2103909\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"UpdateWorkHistory\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.167163\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T17:03:07\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate Workhistory set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"EndDate\\\":\\\"01/31/1982\\\",\\\"Salary\\\":\\\"5.00\\\",\\\"Title\\\":\\\"President\\\",\\\"AboutTypeID\\\":\\\"6\\\",\\\"CompanyName\\\":\\\"Food Factory\\\",\\\"ReferenceID\\\":5665439,\\\"StartDate\\\":\\\"11/25/1972\\\",\\\"Description\\\":\\\"This is a comment\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/WorkHistory/Do/Update\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.705361\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate Workhistory set\"\n}"}],"_postman_id":"e8bdcca2-1d3f-4792-b3d1-c6b3f82ff059"},{"name":"Candidate Update","id":"87c671c4-c1e6-46d2-9bbb-6a21b3c27944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\t\t\t\t\t\"id\": 1587474,\n                    \"folder_group_id\": \"174,345\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/","description":"<p>For updating candidate data in the ATS.</p>\n\n<ul>\n<li>email - <strong>REQUIRED</strong> - if candidate ID is not used</li>\n<li>id - <strong>REQUIRED</strong> - if email is not used</li>\n<li>folder_group_id - if updating the folder group IDs, the variable used should be <em>folder_group_id</em> even if there are multiple comma separated values</li>\n<li>api_request_custom - AdSource - source of the candidate, if omitted or left blank will default to 'Website'</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"address1\": \"6 Tree Top Way\",\n                            \"city\": \"Methuen\",\n                            \"state\": \"Massachusetts\",\n                            \"zip\": \"01844\",\n                            \"id\": 5665491,\n                            \"folder_group_id\": \"8,17,123,155,177,205,284,345\"\n                },\n                \"api_request_custom\":{\n                            \"AdSource\":\"Indeed\"\n                }\n\n</code></pre>","urlObject":{"path":["candidate","set",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"76e61e9f-84f2-4d0f-bdb8-49ab2fe25ab1","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                            \"address1\": \"6 Tree Top Way\",\n                            \"address2\": \"\",\n                            \"city\": \"Methuen\",\n                            \"state\": \"Massachusetts\",\n                            \"zip\": \"01844 \",\n                            \"id\": 5665491\n                },\n                \"api_request_custom\":{\n                            \"AdSource\":\"Indeed\"\n                }\n    }\n}\n"},"url":"{{ats-connect}}/candidate/set/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:32:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"620"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272951"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"1\",\n            \"id\": \"5665491\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.320276,\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T17:32:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"WithPermissions\\\":\\\"false\\\",\\\"PostalCode\\\":\\\"01844 \\\",\\\"ChangedByID\\\":\\\"e1f806d0-6732-4662-9452-bc6f25ad2a35\\\",\\\"AddressLine1\\\":\\\"6 Tree Top Way\\\",\\\"AddressLine2\\\":\\\"\\\",\\\"City\\\":\\\"Methuen\\\",\\\"CandidateID\\\":5665491,\\\"FolderGroupIDList\\\":\\\"138\\\",\\\"CheckforDup\\\":1,\\\"AdSource\\\":\\\"Indeed\\\",\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\",\\\"StateID\\\":\\\"28\\\",\\\"IsApproved\\\":\\\"false\\\"}\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5665491/Update/\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"1.145602\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate set\"\n}"}],"_postman_id":"87c671c4-c1e6-46d2-9bbb-6a21b3c27944"}],"id":"5382d5cc-5812-4b97-97fc-43e2220dd444","_postman_id":"5382d5cc-5812-4b97-97fc-43e2220dd444","description":""},{"name":"Custom","item":[{"name":"Custom","id":"760da47b-9a8c-4245-a8b3-137700b14d43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n         \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n        \"vendor\":\"erecruitV1\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n        \"api_custom_action\":\"GET\",\n        \"api_request_query\":{\n            \"id\":5665439\n        }\n    }\n}\n"},"url":"{{ats-connect}}/custom","description":"<p>For submitting or retreiving data.</p>\n\n<p><b>NOTE: Because this is a custom function you may need to refer to the erecruit v1 Api Reference for detailed requirements of the call you're wanting to make.</b></p>\n\n<ul>\n<li><p>api_custom_call - <b>REQUIRED</b> - single value e.g. 'Candidate' or 'Job', or 'Application'</p>\n</li>\n<li><p>api_custom_action - <b>REQUIRED</b> - single value e.g. 'GET' or 'POST' or 'PATCH'</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL BASED ON CALL</b> - These will need to match the fields allowed for the specific API call</p>\n</li>\n<li><p>api_request_custom - <b>OPTIONAL BASED ON CALL</b> - These will need to match the filter parameters set for the specific API call</p>\n</li>\n<li><p>api_request_query - <b>OPTIONAL BASED ON CALL</b> - hash with key:value pairs signifying the values the call wants to query</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n        \"api_custom_action\":\"GET\",\n        \"api_request_query\":{\n            \"id\":5665439\n        }\n    }\n</pre>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ba024a68-13e2-4381-a73b-6844b77f7489","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n         \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n        \"vendor\":\"erecruitV1\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n        \"api_custom_call\":\"Candidate\",\n        \"api_custom_action\":\"GET\",\n        \"api_request_query\":{\n            \"id\":5665439\n        }\n    }\n}\n"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:33:40 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2906"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200131"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"Candidate\": {\n                \"CellProviderID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"TimesheetCount\": {\n                    \"text\": \"0\"\n                },\n                \"ShareWithLinkedIn\": {\n                    \"text\": \"false\"\n                },\n                \"WorkHistories\": {\n                    \"WorkHistory\": [\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2084806\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2086969\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2094498\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2094505\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2094514\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2094515\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2094516\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2095453\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        },\n                        {\n                            \"Salary\": {\n                                \"text\": \"5.0000\"\n                            },\n                            \"CurrencyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Title\": {\n                                \"text\": \"President\"\n                            },\n                            \"CompanyID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"SourceID\": {\n                                \"text\": \"3\"\n                            },\n                            \"Source\": {\n                                \"text\": \"API\"\n                            },\n                            \"CustomFields\": {},\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"StartDate\": {\n                                \"text\": \"1972-11-25T00:00:00\"\n                            },\n                            \"CompensationTypeID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"EndDate\": {\n                                \"text\": \"1982-01-31T00:00:00\"\n                            },\n                            \"WorkHistoryID\": {\n                                \"text\": \"2103909\"\n                            },\n                            \"CompanyName\": {\n                                \"text\": \"Food Factory\"\n                            },\n                            \"ReasonForLeavingID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"Description\": {\n                                \"text\": \"This is a comment\"\n                            },\n                            \"CompanyDepartmentID\": {\n                                \"xsi:nil\": \"true\"\n                            }\n                        }\n                    ]\n                },\n                \"TerminationReasonID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"PreferredLocations\": {},\n                \"CandidateReferenceCount\": {\n                    \"text\": \"0\"\n                },\n                \"MatchCount\": {\n                    \"text\": \"0\"\n                },\n                \"CountryID\": {\n                    \"text\": \"220\"\n                },\n                \"CourierMessageCount\": {\n                    \"text\": \"0\"\n                },\n                \"StateID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"TotalProfit\": {\n                    \"text\": \"0.0000\"\n                },\n                \"MinHoursPerWeek\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"YearlyMin\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"ShiftsCount\": {\n                    \"text\": \"0\"\n                },\n                \"LeadLastName\": {\n                    \"text\": \"Fatovic\"\n                },\n                \"OwnerEntityID\": {\n                    \"text\": \"00000000-0000-0000-0000-000000000e01\"\n                },\n                \"LastNoteID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"RelationshipCount\": {\n                    \"text\": \"0\"\n                },\n                \"IsMergedTo\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AdditionalOwnersCount\": {\n                    \"text\": \"0\"\n                },\n                \"AdsourceAdditionalInfo\": {},\n                \"NickName\": {},\n                \"TotalHoursWorked\": {\n                    \"text\": \"0.000000\"\n                },\n                \"IsOwnershipPermanent\": {\n                    \"text\": \"false\"\n                },\n                \"CurrencyID\": {\n                    \"text\": \"2\"\n                },\n                \"Summary\": {},\n                \"Tax1099CompanyID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"EducationHistoryCount\": {\n                    \"text\": \"7\"\n                },\n                \"MaxTravelPercentage\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AccrualScheduleCount\": {\n                    \"text\": \"0\"\n                },\n                \"CandidateID\": {\n                    \"text\": \"5665439\"\n                },\n                \"ACAEmployeeType\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"HourlyMin\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"WorkHistoryCount\": {\n                    \"text\": \"9\"\n                },\n                \"ReligionId\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"EducationLevelID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AddressWasGeoProcessed\": {\n                    \"text\": \"false\"\n                },\n                \"OnboardingAttachmentmentCount\": {\n                    \"text\": \"0\"\n                },\n                \"DoNotSendCount\": {\n                    \"text\": \"0\"\n                },\n                \"ListCount\": {\n                    \"text\": \"0\"\n                },\n                \"FirstName\": {\n                    \"text\": \"Vikas\"\n                },\n                \"IsLookingForContractToPerm\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"EducationHistories\": {\n                    \"EducationHistory\": [\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"392743\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"420454\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"421087\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"422788\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"423160\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"423485\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        },\n                        {\n                            \"GPA\": {\n                                \"text\": \"1.80\"\n                            },\n                            \"GraduationYear\": {\n                                \"text\": \"1995\"\n                            },\n                            \"Minors\": {\n                                \"text\": \"English\"\n                            },\n                            \"Majors\": {\n                                \"text\": \"Chemistry\"\n                            },\n                            \"EducationHistoryID\": {\n                                \"text\": \"425914\"\n                            },\n                            \"Location\": {\n                                \"Country\": {\n                                    \"text\": \"United States of America\"\n                                },\n                                \"City\": {\n                                    \"text\": \"Boston\"\n                                }\n                            },\n                            \"CustomFields\": {},\n                            \"EducationLevelID\": {\n                                \"xsi:nil\": \"true\"\n                            },\n                            \"IncludeInPrintTemplates\": {\n                                \"text\": \"false\"\n                            },\n                            \"SchoolName\": {\n                                \"text\": \"University of California\"\n                            }\n                        }\n                    ]\n                },\n                \"RequiresTaxes\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"CommunicationMethods\": {\n                    \"CommunicationMethod\": [\n                        {\n                            \"Value\": \"508-425-7377\",\n                            \"RecordID\": \"1958591\",\n                            \"CommunicationTypeID\": \"101\",\n                            \"Name\": \"Home Phone\",\n                            \"Category\": \"Phone\",\n                            \"IsPrimaryInCategory\": \"false\"\n                        },\n                        {\n                            \"Value\": \"kalyan@avcoconsulting.com\",\n                            \"RecordID\": \"1958590\",\n                            \"CommunicationTypeID\": \"200\",\n                            \"Name\": \"Main Email\",\n                            \"Category\": \"Email\",\n                            \"IsPrimaryInCategory\": \"true\"\n                        }\n                    ]\n                },\n                \"LeadFirstName\": {\n                    \"text\": \"Danko\"\n                },\n                \"IsApproved\": {\n                    \"text\": \"false\"\n                },\n                \"PostalCode\": {},\n                \"PreferredFolderGroups\": {\n                    \"FolderGroup\": {\n                        \"SubCategoryID\": {\n                            \"text\": \"0\"\n                        },\n                        \"CategoryID\": {\n                            \"text\": \"145\"\n                        },\n                        \"FolderGroupID\": {\n                            \"text\": \"91\"\n                        },\n                        \"Name\": {\n                            \"text\": \"App Dev or Data\"\n                        },\n                        \"CategoryName\": {\n                            \"text\": \"App Dev\"\n                        }\n                    }\n                },\n                \"CommunicationTypeID\": {\n                    \"text\": \"400\"\n                },\n                \"InvoiceCount\": {\n                    \"text\": \"0\"\n                },\n                \"AdministrativeContactID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AddressCount\": {\n                    \"text\": \"1\"\n                },\n                \"LastNoteCreatedBy\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"RatingID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"UserID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"City\": {},\n                \"SemanticProfile\": {\n                    \"text\": \"Employment History:\\nEducation:\\nLanguages:\\n\\nCertifications:\\n\"\n                },\n                \"CustomFieldValues\": {\n                    \"text\": \"<Fields><Field ID=\\\"57\\\" TypeID=\\\"1\\\" Name=\\\"3rd Party Information\\\" UniqueName=\\\"3rdPartyInformation_2\\\" IsRequired=\\\"0\\\" PlaceHolderID=\\\"lookingfor.ascx\\\" SortOrder=\\\"1\\\" VisibleTo=\\\"\\\" DefaultValue=\\\"\\\" ValueID=\\\"0\\\" CanEdit=\\\"1\\\"><Value></Value></Field></Fields>\"\n                },\n                \"Title\": {},\n                \"ContractorTypeID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AdSource\": {\n                    \"text\": \"CareerBuilder Sourced\"\n                },\n                \"IsLatino\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"PayCheckCount\": {\n                    \"text\": \"0\"\n                },\n                \"FolderGroupCount\": {\n                    \"text\": \"1\"\n                },\n                \"DoNotText\": {\n                    \"text\": \"false\"\n                },\n                \"AvailableDate\": {\n                    \"text\": \"2016-09-28T10:45:35.313\"\n                },\n                \"MarketingCampaignCount\": {\n                    \"text\": \"0\"\n                },\n                \"EmailOptOut\": {\n                    \"text\": \"false\"\n                },\n                \"StatusIconID\": {\n                    \"text\": \"5\"\n                },\n                \"LeadID\": {\n                    \"text\": \"7\"\n                },\n                \"SkillCount\": {\n                    \"text\": \"0\"\n                },\n                \"CountryName\": {\n                    \"text\": \"United States of America\"\n                },\n                \"AddressID\": {\n                    \"text\": \"531119\"\n                },\n                \"AddressLine1\": {},\n                \"NoteCount\": {\n                    \"text\": \"0\"\n                },\n                \"AttachmentGeneralCount\": {\n                    \"text\": \"2\"\n                },\n                \"DefaultResumeID\": {\n                    \"text\": \"272af7af-c169-4b9b-afa0-b08b550aa0ef\"\n                },\n                \"LastNoteCreatedOn\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"EthnicityID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AttachmentHRCount\": {\n                    \"text\": \"0\"\n                },\n                \"MarketoLeadID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"DoNotCall\": {\n                    \"text\": \"false\"\n                },\n                \"CustomFields\": {},\n                \"TerminateDate\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"OwnerID\": {\n                    \"text\": \"7\"\n                },\n                \"SemanticXml\": {\n                    \"text\": \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?><Resume xml:lang=\\\"iv\\\" xmlns=\\\"http://ns.hr-xml.org/2006-02-28\\\" xmlns:sov=\\\"http://sovren.com/hr-xml/2006-02-28\\\">\\n<ResumeId><IdValue/></ResumeId>\\n<StructuredXMLResume>\\n<RevisionDate>2016-07-21</RevisionDate>\\n</StructuredXMLResume>\\n<UserArea>\\n<sov:ResumeUserArea>\\n<sov:Culture>\\n\\t<sov:Language>iv</sov:Language>\\n\\t<sov:Country>US</sov:Country>\\n\\t<sov:CultureInfo>en-US</sov:CultureInfo>\\n</sov:Culture>\\n<sov:ExperienceSummary>\\n\\t<sov:Description/>\\n\\t<sov:MonthsOfWorkExperience>-1</sov:MonthsOfWorkExperience>\\n\\t<sov:YearsOfWorkExperience>0</sov:YearsOfWorkExperience>\\n\\t<sov:MonthsOfManagementExperience>-1</sov:MonthsOfManagementExperience>\\n\\t<sov:YearsOfManagementExperience>0</sov:YearsOfManagementExperience>\\n\\t<sov:HighestManagementScore>0</sov:HighestManagementScore>\\n\\t<sov:ExecutiveType>none</sov:ExecutiveType>\\n</sov:ExperienceSummary>\\n<sov:Sections>\\n</sov:Sections>\\n<sov:ParserConfigurationString>_100000_0_00000000_0000000010001100_2_00011111111111111111220100010011100001000000000</sov:ParserConfigurationString>\\n<sov:ParserVersion>6.4.6400.15</sov:ParserVersion>\\n</sov:ResumeUserArea>\\n</UserArea>\\n</Resume>\\n\"\n                },\n                \"OwnerLastName\": {\n                    \"text\": \"Fatovic\"\n                },\n                \"AgeGroupId\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"Timestamp\": {\n                    \"text\": \"103178322\"\n                },\n                \"NamePrefix\": {},\n                \"ClaimCount\": {\n                    \"text\": \"0\"\n                },\n                \"DateOwnershipRenewed\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"AdministrativeContactUserID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"MergedToName\": {},\n                \"IsLookingForContract\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"NameSuffix\": {},\n                \"LastNoteIDByUser\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"LastLoginDate\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"MaxCommute\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"HourlyMax\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"OwnerEntityName\": {\n                    \"text\": \"Softworld\"\n                },\n                \"YearlyMax\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"EEOCategoryID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"LastName\": {\n                    \"text\": \"Java\"\n                },\n                \"LitigationHistoryCount\": {\n                    \"text\": \"0\"\n                },\n                \"OwnerFirstName\": {\n                    \"text\": \"Danko\"\n                },\n                \"AddressName\": {\n                    \"text\": \"Main Address\"\n                },\n                \"MaxHoursPerWeek\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"ClearanceLevelID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"OwnerEntityType\": {\n                    \"text\": \"1\"\n                },\n                \"CandidateApplicationCount\": {\n                    \"text\": \"4\"\n                },\n                \"DisabilityStatusID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"FromSeedID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"RegionID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"IsLookingForPerm\": {\n                    \"text\": \"false\"\n                },\n                \"LastNoteCreatedOnByUser\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"CurrentEmployer\": {},\n                \"OwnershipExpiresOn\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"VeteranStatusID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"NonVMSCandidateVendorID\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"OpportunityCount\": {\n                    \"text\": \"0\"\n                },\n                \"OwnerUserID\": {\n                    \"text\": \"6e5ab85a-b786-42de-b7a8-3dacd28957c2\"\n                },\n                \"RequirementCount\": {\n                    \"text\": \"0\"\n                },\n                \"PTOBank\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"StatusName\": {\n                    \"text\": \"Unverified\"\n                },\n                \"LeadUserID\": {\n                    \"text\": \"6e5ab85a-b786-42de-b7a8-3dacd28957c2\"\n                },\n                \"StatusID\": {\n                    \"text\": \"37\"\n                },\n                \"DefaultFolderGroup\": {\n                    \"text\": \"91\"\n                },\n                \"IndustryCount\": {\n                    \"text\": \"0\"\n                },\n                \"CandidateAccrualScheduleCount\": {\n                    \"text\": \"0\"\n                },\n                \"PTOBankExpiration\": {\n                    \"xsi:nil\": \"true\"\n                },\n                \"IsLeadPermanent\": {\n                    \"text\": \"false\"\n                }\n            }\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.315864\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:33:41\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Custom results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Candidate/00000000-0000-0000-0000-000000000E01/5665439\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.697647\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Custom results returned\"\n}"}],"_postman_id":"760da47b-9a8c-4245-a8b3-137700b14d43"}],"id":"8d855946-706d-41a9-888e-d461729fa431","_postman_id":"8d855946-706d-41a9-888e-d461729fa431","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"49131d57-0778-4dd9-b443-767ce9c0597a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\",\n                            \"api_file_upload_url\":\"{{api_file_upload_url}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    ,\n                            \"id\": 6137455\n                }\n    }\n}\n"},"url":"{{ats-connect}}/file/upload/","description":"<p>For uploading a file to a candidate record.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded resume file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>     \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\":22356066,\n            \"email\": \"001@haleymarketing.com\",\n            \"referral_source\": \"Referral Partners (Travel Only)\",\n            \"first_name\": \"tast\",\n            \"last_name\": \"mcoserton\",\n            \"status\": \"\"\n        }\n    }\n\n</code></pre>","urlObject":{"path":["file","upload",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"16dd983c-ae5a-4734-8821-00e7ccd59a16","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgD+H/L/8QAuAAAACQBXAFcAOABOAHUAbQAxAHoAMAAAAAwAT0oHAFFKBwBeSggALgD+H/L/AQEuAAAACQBXAFcAOABOAHUAbQAyAHoAMAAAAAwAT0oHAFFKBwBeSggALgD+H/L/EQEuAAAACQBXAFcAOABOAHUAbQAzAHoAMAAAAAwAT0oHAFFKBwBeSggALgD+H/L/IQEuAAAACQBXAFcAOABOAHUAbQA0AHoAMAAAAAwAT0oHAFFKBwBeSggAIgD+H/L/MQEiAAAACQBXAFcAOABOAHUAbQA1AHoAMAAAAAAAIgD+H/L/QQEiAAAACQBXAFcAOABOAHUAbQA1AHoAMQAAAAAAIgD+H/L/UQEiAAAACQBXAFcAOABOAHUAbQA1AHoAMgAAAAAAIgD+H/L/YQEiAAAACQBXAFcAOABOAHUAbQA1AHoAMwAAAAAAIgD+H/L/cQEiAAAACQBXAFcAOABOAHUAbQA1AHoANAAAAAAAIgD+H/L/gQEiAAAACQBXAFcAOABOAHUAbQA1AHoANQAAAAAAIgD+H/L/kQEiAAAACQBXAFcAOABOAHUAbQA1AHoANgAAAAAAIgD+H/L/oQEiAAAACQBXAFcAOABOAHUAbQA1AHoANwAAAAAAIgD+H/L/sQEiAAAACQBXAFcAOABOAHUAbQA1AHoAOAAAAAAALgD+H/L/wQEuAAAABwBCAHUAbABsAGUAdABzAAAAEABPSggAUUoIAFBKCABeSggANABXEPL/0QE0AAAADwBTAHQAcgBvAG4AZwAgAEUAbQBwAGgAYQBzAGkAcwAAAAYANQgBXAgBJgBYEPL/4QEmAAAACABFAG0AcABoAGEAcwBpAHMAAAAGADYIAV0IAUYA/h8BAAICRgAAAAcASABlAGEAZABpAG4AZwAAAA0AHwATpPAAFKR4AAYkAQAYAE9KCQBRSgkAQ0ocAFBKCgBeSgUAYUocADQAQhABAAICNAAAAAkAVABlAHgAdAAgAEIAbwBkAHkAAAAQACAAEmQUAQEAE6QAABSkjAAAACAALxABAhICIAAAAAQATABpAHMAdAAAAAIAIQAEAF5KCwBAACIQAQAiAkAAAAAHAEMAYQBwAHQAaQBvAG4AAAANACIAE6R4ABSkeAAMJAEAEgBDShgANggBXkoLAGFKGABdCAEmAP4fAQAyAiYAAAAFAEkAbgBkAGUAeAAAAAUAIwAMJAEABABeSgsAigD+HwEAAgKKAAAADwBIAG8AcgBpAHoAbwBuAHQAYQBsACAATABpAG4AZQAAAFEAJAATpAAAFKQbASRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAEDDwBQxgiAgIAAAQMAACdkAAAAAFHGCAAAAAAAAAAADCQBAAgAQ0oMAGFKDAA0AP4fAQBSAjQAAAAOAFQAYQBiAGwAZQAgAEMAbwBuAHQAZQBuAHQAcwAAAAUAJQAMJAEAAAA+AP4fUQJiAj4AAAANAFQAYQBiAGwAZQAgAEgAZQBhAGQAaQBuAGcAAAALACYAAyQBYSQBDCQBAAYANQgBXAgBMAD+HwEAcgIwAAAADgBGAHIAYQBtAGUAIABDAG8AbgB0AGUAbgB0AHMAAAACACcAAAAAAAAAUAAAAJAAAADOAAAADAEAAEcBAABIAQAAAQAAAAAAAAAAAP////8CBAAAAAAAAAEAAAAAAAAAAAD/////AwQAAAAAAAABAAAAAAAAAAAA/////wQEAAAAAAAAAQAAAAAAAAAAAP////8FBAAAAAAAAAEAAAAAAAAAAAD/////BgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAACQAAAAzgAAAAwBAABHAQAASAEAAAAAAAAACAEAAAAACAIAAAAACAMAAAAACAQAAAAACAAAAAAAAAAAAAA/BwAABAAAKgAAAAD/////AAgAAGoSAAB8FgAADAAAAA0AAAAACAAAWgkAADAKAAB+DgAAIhQAAKwUAAAEFgAAfhYAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAPAADwOAAAAAAABvAYAAAABgQAAAIAAAAHAAAAAQAAAAEAAAAHAAAAQAAe8RAAAAAEAAAIAQAACAIAAAj3AAAQAA8AAvA2BAAAEAAI8AgAAAAHAAAABgQAAA8AA/DIAwAADwAE8CgAAAABAAnwEAAAAAAAAAAAAAAAAAAAAAAAAAACAArwCAAAAAAEAAAFAAAADwAE8LAAAACiDArwCAAAAAIEAAAACgAA4wAL8FQAAACAAAAAAQCBAHsCAACCAHsCAACDAHsCAACEAHsCAACIAAAAAACBAf///wCDAQAAAAC/ARAAEAD/AQAACACEAwAAAACFAwAAAACGAwAAAACHAwAAAABDACLxGAAAAI8DAQAAAJADAgAAAJEDAQAAAJIDAgAAAAAAEPAEAAAAAAAAAAAAEfAEAAAAAQAAAAAADfAEAAAAAAABAA8ABPCwAAAAogwK8AgAAAADBAAAAAoAAOMAC/BUAAAAgAAAAAIAgQB7AgAAggB7AgAAgwB7AgAAhAB7AgAAiAAAAAAAgQH///8AgwEAAAAAvwEQABAA/wEAAAgAhAMAAAAAhQMAAAAAhgMAAAAAhwMAAAAAQwAi8RgAAACPAwEAAACQAwIAAACRAwEAAACSAwIAAAAAABDwBAAAAAAAAAAAABHwBAAAAAEAAAAAAA3wBAAAAAAAAgAPAATwsAAAAKIMCvAIAAAABAQAAAAKAADjAAvwVAAAAIAAAAADAIEAewIAAIIAewIAAIMAewIAAIQAewIAAIgAAAAAAIEB////AIMBAAAAAL8BEAAQAP8BAAAIAIQDAAAAAIUDAAAAAIYDAAAAAIcDAAAAAEMAIvEYAAAAjwMBAAAAkAMCAAAAkQMBAAAAkgMCAAAAAAAQ8AQAAAAAAAAAAAAR8AQAAAABAAAAAAAN8AQAAAAAAAMADwAE8LAAAACiDArwCAAAAAUEAAAACgAA4wAL8FQAAACAAAAABACBAHsCAACCAHsCAACDAHsCAACEAHsCAACIAAAAAACBAf///wCDAQAAAAC/ARAAEAD/AQAACACEAwAAAACFAwAAAACGAwAAAACHAwAAAABDACLxGAAAAI8DAQAAAJADAgAAAJEDAQAAAJIDAgAAAAAAEPAEAAAAAAAAAAAAEfAEAAAAAQAAAAAADfAEAAAAAAAEAA8ABPCwAAAAogwK8AgAAAAGBAAAAAoAAOMAC/BUAAAAgAAAAAUAgQB7AgAAggB7AgAAgwB7AgAAhAB7AgAAiAAAAAAAgQH///8AgwEAAAAAvwEQABAA/wEAAAgAhAMAAAAAhQMAAAAAhgMAAAAAhwMAAAAAQwAi8RgAAACPAwEAAACQAwIAAACRAwEAAACSAwIAAAAAABDwBAAAAAAAAAAAABHwBAAAAAEAAAAAAA3wBAAAAAAABQAPAATwTgAAABIACvAIAAAAAQQAAAAOAABzAAvwKgAAAIEB////AIMBAAAAAL8BEAAQAMABAQAACMsBAAAAAP8BCAAIAAECAgAACAAAEfAEAAAAAQAAAAsAAAAMAAAAPwMAAEADAABBAwAAPwcAAAIEAAAAAAAAAAAAAKASAACZBQAAVAQAAAAAAwQAAKESAAAAAAAAQSUAAJkFAABUBAAAAAAEBAAAAAAAAL8AAACgEgAAIwQAAFQEAAAAAAUEAAChEgAAvwAAAEElAAAjBAAAVAQAAAAABgQAAKESAAC/AAAAQSUAACMEAABUBAAAAAAFAAEAAAABAAAA/w//D/8P/w//D/8P/w//D/8PAAACAAAAAgAAAP8P/w//D/8P/w//D/8P/w//DwAAAwAAAAMAAAD/D/8P/w//D/8P/w//D/8P/w8AAAQAAAAEAAAA/w//D/8P/w//D/8P/w//D/8PAAAFAAAABQAAAP8P/w//D/8P/w//D/8P/w//DwAAAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EAABghOX+FcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EAABghOX+FcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    ,\n                            \"id\":5665439\n                }\n    }\n}\n"},"url":"{{ats-connect}}/file/upload/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:34:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"442"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272954"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"55955ee7-a5b6-44b1-bef9-26fd0e09f7a4\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"UploadFile\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.674693\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2020-01-10T17:34:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"File Uploaded\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Attachment/Do/UploadAttachment\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"1.015399\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"File Uploaded\"\n}"}],"_postman_id":"49131d57-0778-4dd9-b443-767ce9c0597a"}],"id":"d34241d7-37e6-4122-af82-e65f7d8383da","_postman_id":"d34241d7-37e6-4122-af82-e65f7d8383da","description":""},{"name":"Job","item":[{"name":"Job Get","id":"692ee6a3-4ff5-4cff-a021-6b38fb442672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n            \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n            },\n            \"vendor\":\"erecruitV1\",\n            \"api_sandbox\":0,            \n            \"api_performance_dump\":1,\n            \"api_verbose_dump\":1\n            },\n            \"api_request_data\":{}\n\n}\n"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving <b>all</b> jobs.</p>\n\n<ul>\n<li><p>api_request_fields - <b>OPTIONAL</b> - ats specific fields you'd like included in the results - space separated values</p>\n</li>\n<li><p>api_request_custom - <b>OPTIONAL</b> - accepts 3 values: ShowInternallyPosted (defaults to 1), Limit (defaults to 1000)</p>\n</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"15af10f2-3686-4bc8-b5cc-4c7932bd17dc","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\":{\n            \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n            },\n            \"vendor\":\"erecruitV1\",\n            \"api_sandbox\":1,            \n            \"api_performance_dump\":1,\n            \"api_verbose_dump\":1\n            },\n            \"api_request_data\":{}\n\n}\n"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:37:34 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"131151"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272957"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Lead Software Engineer</div>\\n<div>Location: Boston, MA</div>\\n<div>Duration: permanent</div>\\n<div><br />\\n</div>\\n<div>What you&rsquo;ll do as a Technical Lead: <br />\\n</div>\\n<div>&bull;\\tTake ownership of the design, development, and operations of API services as well as internal tools written primarily in C# and TypeScript with SQL and NoSQL databases hosted in AWS. <br />\\n</div>\\n<div>&bull;\\tProvide significant input to product vision for how your team&rsquo;s software should evolve as a coherent technical platform to deliver personalized communications for the broader engineering team. <br />\\n</div>\\n<div>&bull;\\tRepresent engineering concerns for the systems your team owns. <br />\\n</div>\\n<div>&bull;\\tLead your team in design sessions and ensure high quality work that aligns with the company's engineering strategy. <br />\\n</div>\\n<div>&bull;\\tMentor other engineers on your team and help them improve their technical skills. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>What skills you will use: <br />\\n</div>\\n<div>&bull;\\tIdeally, you have experience as the &lsquo;expert&rsquo; on a development team where you were responsible for everything from planning to delivering key features and management of those features. <br />\\n</div>\\n<div>&bull;\\tExpertise with at least one object-oriented language like C# or Java. <br />\\n</div>\\n<div>&bull;\\tYou have strong relational database skills and are comfortable using non-relational data stores like DynamoDB, ElasticSearch and Redis. <br />\\n</div>\\n<div>&bull;\\tFamiliarity with cloud (we use AWS) infrastructure and architecture best practices. <br />\\n</div>\\n<div>&bull;\\tYou also have the ability to write comprehensive automated test suites at all levels of the architecture. <br />\\n</div>\\n<div>&bull;\\tPrior experience helping scale a rapidly growing company is a plus. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>Technical Environment: C# .Net, AWS, MySQL, React, Redux, JavaScript, Swift for iOS, Java for Android, Xamarin, AWS, RES, Microservices, .NET Core\\n</div>\",\n                    \"date_added\": \"1/3/2020 2:47:02 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Lead .NET Software Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"229096\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston \",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"text-decoration: underline;\\\"></span></strong></p>\\n<strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">Enovia PLM Implementation Engineer</span></strong>\\n<p><strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">Draper Labs</span></strong></p>\\n<p><strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">6+ month contract</span></strong></p>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Responsibilities</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Join Draper&rsquo;s Enovia PLM Administration staff in contributing towards our migration to the Enovia 3DEXPERIENCE Product Lifecycle Management tool</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Interface with Information Technology, Management Information Systems, PLM Architect, Model Based Engineering staff, and Dassault representatives in planning and executing tasks associated with a new Enovia 3DEXPERIENCE implementation, including addressing configuration and customization challenges and migration of legacy engineering data</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Perform Enovia 3DEXPERIENCE installations, upgrades, and service pack installations on multiple environments per prepared procedures</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Provide Linux administration services, including creating and editing bash scripts, installing applications, and administering security certificates and product licenses</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Lead a small team of Linux/Enovia administrators performing the above functions</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Required Qualifications</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">B.S. degree or higher in a Mechanical/Electrical Engineering, Manufacturing Engineering, Computer Science, or other similar technical discipline</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">System administration experience with Red Hat Linux operating system</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Programming skills in writing/editing bash scripts, python, and TCL</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Working knowledge of SAMBA, SCP, and SSH</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Working knowledge of issuing certificate requests to a Certification Authority, developing certificates in a JVM environment, and deploying certificates into local Linux environments</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Experience directing other Linux system administrators</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Strong interpersonal and verbal/written communication skills</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Preferred Qualifications</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Security+ certification strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Prior experience with Dassault Enovia system administration in a Linux environment strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Understanding of and familiarity with engineering product design, development, and manufacturing processes strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Familiarity with MCAD, ECAD, and MRP systems strongly preferred</span></li>\\n</ul>\",\n                    \"date_added\": \"1/6/2020 11:24:51 AM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Enovia PLM Implementation Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"229952\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02139\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"background-color: #ffffff; font-size: 10pt; font-family: Arial, sans-serif;\\\"><strong>JOB DESCRIPTION:</strong>&nbsp;</span></p>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">Serves as a Network Engineer for the 480th Intelligence, Surveillance, Reconnaissance (ISR) Wing Security Office and the Distributed Common Ground System (DCGS) Processing, Exploitation, Dissemination (PED) Operations Center (DPOC).<br />\\nThe Engineer is responsible for the management, performance and upkeep of all wide area network, and campus area network services to include routers, switches, crypto, multiplexing components, network services, and other functions inherent to network management. The candidate is also responsible for the daily management of all networking devices within the DCGS Architecture.</span></p>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">In addition, the EDPOC Tier 3 Network Engineer:</span></p>\\n<ul style=\\\"margin: 15px 0px 0px; padding: 0px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; list-style-image: initial; letter-spacing: 0.25px;\\\">\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Provides level 2 troubleshooting and help desk support of the DCGS network at the core and remote locations.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Completely understands the PEDS Architecture and security issues within.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Acts as an Operations Engineer capable of working with outside agencies to resolve network related issues.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Works with DPOC Tier III staff on optimizing CAN routers, switches and cryptographic devices, providing recommendations for improvements to the DCGS Network.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Manages and operates software applications at all sites required to conduct network management of the DPA</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Responds to hardware and software problems related to DPA equipment</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Works with DPOC operations staff to optimize CAN routers, switches, and cryptographic devices and provides recommendations for improvements to the AF DCGS network in support of existing and new ISR sensors and capabilities</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Installs CAN equipment at new sites, maintains documentation and drawings of all DPA architectures</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Advises the 480 ISR WG, AF DCGS program office, and other organizations desiring connectivity to DPA to establish robust system engineering and practical integration solutions</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Reviews all integration efforts to ensure engineering rigor and security practices are maintained across the DPA and advises government leadership regarding any possible risks/concerns</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Processes and implements all network service requests (NSR) and implements all security approved ports and services requests (PSR) any changes and modifications to the AF DCGS weapon system</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Reviews requirements provided by the AF DCGS Program Office to determine bandwidth, performance, and Controlled Interface (CI) settings for establishing network configuration baselines and provides input back to COR or designated representative</span></li>\\n</ul>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">Required</span></p>\\n<ul style=\\\"font-size: medium; font-family: 'Times New Roman';\\\">\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">BA/BS, 5+ years experience</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">7 Years of network engineering and integration experience</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Top Secret / Sensitive Compartmentalized Information (TS/SCI)</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Certifications: Cisco Certified Network Associate (CCNA) and CompTIA Security+</span></li>\\n</ul>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">\\nPreferred</span></p>\\n<ul style=\\\"font-size: medium; font-family: 'Times New Roman';\\\">\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Bachelor's Degree</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Certifications: Cisco Certified Network Professional (CCNP), Certified Information Systems Security Professional (CISSP)</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">A working knowledge of AF DCGS and AF ISR operations is desired</span></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 9:33:58 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Network Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230340\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hampton\",\n                        \"zip\": \"23665\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Softworld has immediate openings for mid-level Software Developers skilled in C#, ASP.NET, MVC, and SQL Server. You will participate in design, delivery and support for web-based applications and services. The Software Developer will be responsible for contributing to the design and coding of business solutions for order and account management, workflow, and many other business functions.&nbsp; &nbsp;&nbsp;<br />\\n</div>\\n<div><strong><br />\\n</strong></div>\\n<div><strong>Duties and Responsibilities: </strong><br />\\n</div>\\n<div>\\n<ul>\\n    <li>Contribute to the architecture, design, and coding of our next generation web-based Enterprise solution. </li>\\n    <li>Our internal applications are used by 1700+ employees to manage our business and drive our success. </li>\\n    <li>The platform for this new initiative is ASP.NET backed by the power of C# and Microsoft SQL Server. </li>\\n    <li>Work with our development team and BA's as we implement Microsoft TFS and develop a full SDLC framework.</li>\\n    <li>Contribute to the maintenance of our back-end processing which is written in VB.NET and C#. These applications run on our servers and provide the backbone of our systems.</li>\\n    <li>Participate and contribute to ad-hoc development projects as they arise. </li>\\n</ul>\\n</div>\\n<div><strong>Required Skills: <br />\\n</strong></div>\\n<div>\\n<ul>\\n    <li>2-4 years of experience within software development.</li>\\n    <li>Experience in .NET technologies such as ASP.NET, MVC, C#, WCF, etc.</li>\\n    <li>Excellent organizational, problem solving, coding, unit testing and debugging skills.</li>\\n    <li>Knowledge of OOP concepts and component design. </li>\\n    <li>Experience building web applications using HTML, CSS or JavaScript (Preferably Angular JS or Bootstrap).</li>\\n    <li>Extensive use of APIs and understanding of HTTP and REST architecture.</li>\\n</ul>\\n<div><strong>Desired Skills (Not Required but Nice-to-Have): </strong><br />\\n</div>\\n<div>\\n<ul>\\n    <li>Familiarity with emerging web standards such as web components. </li>\\n    <li>Experience within a scripting language such as Python, PHP, or Perl.</li>\\n    <li>Experience with CMS software and LAMP/WAMP stack. </li>\\n    <li>Experience with workflow automation tools i.e.: Gulp, Grunt, WebPack, or Browserify.</li>\\n    <li>Experience with CSS and/or JS extension languages i.e.: SASS, LESS, TypeScript, or CoffeeScript.</li>\\n    <li>Experience with JS dependency management tools i.e.: NPM, Bower, or Yarn.</li>\\n    <li>Knowledge of application security concepts.</li>\\n    <li>Experience in working with a cloud services provider such as AWS.</li>\\n    <li>Experience with Microsoft TFS or GIT.</li>\\n    <li>Experience with Enterprise business solutions.</li>\\n    <li>Experience with telecommunications/telephone business and/or order management applications. </li>\\n</ul>\\n<div><br />\\n</div>\\n</div>\\n</div>\",\n                    \"date_added\": \"1/8/2020 4:46:12 PM\",\n                    \"reply_to\": \"jbelmas@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Mid-level Software Developer (.NET)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230497\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Quincy\",\n                        \"zip\": \"02171\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p><strong><em><span style=\\\"font-family: Arial, sans-serif; font-size: 16px; color: black;\\\">Java Developer (Jr, Mid, and Sr level openings)</span></em></strong></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Location:&nbsp;</span></strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">On-Site in Plano, TX&nbsp;</span></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Project Scope:</span></strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\"> We have signed an exclusive 3-year agreement with a fortune 100 company in Plano, TX to support their on-going Java development projects.&nbsp; You will be working on-site at the Softworld building in Plano. We have the option to bring you on as a direct-hire, contract-to-hire or long-term contract employee.</span></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Required Experience:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 2 years of Java development experience&nbsp;for Junior</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 4 years of Java development experience&nbsp;for mid</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 8 years of Java development experience&nbsp;for Senior</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Desired Technical Experience:</span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience developing REST APIs &amp; Web Services</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience with Junit &amp; Eclipse &ndash; or similar unit testing / IDE skills</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience with Spring (MVC and/or Boot)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Agile experience</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Additional Bonus technologies (not required):</span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Docker (containers)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Kafka (messaging)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Microservices</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Angular/React/Redux</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">WebSphere</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Test-driven development</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">CI/CD environment and technologies</span></li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 10:07:49 AM\",\n                    \"reply_to\": \"cdamore@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Java Developer (Multiple openings at all levels)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230634\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Plano\",\n                        \"zip\": \"75024\",\n                        \"state\": \"TX\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Lead .Net Developer&nbsp;<br />\\nColumbus Circle, DC&nbsp;<br />\\n6 Month Contract to Hire&nbsp;</strong></p>\\n<p><strong>Overview:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sofworld's client is seeking a lead .NET Application Developer to support the Administrative Office of the US Courts. This position is part of its dynamic software development division. </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As such, the position is a key contributor to the integration, design, development, implementation, maintenance, and production support for a variety of internal administrative systems.&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The ideal candidate will have a strong ASP.NET MVC and C# background and solid communication skills with the ability to lead a team.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The project involves the modernization of a portfolio of Visual FoxPro applications into .NET-based systems and services.&nbsp; </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The legacy application is composed of web-based and automated systems that support a variety of administrative and operational functions, including Human Resources, Finance, and Oversight.&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;senior developer looking for continually evolving challenges and a desire to regularly solve new problems will excel in this role. </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The ideal candidate has experience as a development lead on a cross-functional team in a large organization.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The current codebase includes a variety of applications built in: MVC, WebAPI, WPF, VSTO, and a custom plugin-based system.&nbsp; </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Candidates should have solid understanding of multiple .NET technologies, including at least two of the above.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Additionally, the development lead will be responsible for helping to communicate technical questions back to the project management team, and translating the responses into actionable requirements.</p>\\n<p><strong>&nbsp;Required Skills and Experience:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bachelor&rsquo;s degree</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10+ years of experience with ASP.NET and C#</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expertise with MVC 5, LINQ to Entities (EF)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Team Lead experience</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong Communication Skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to work independently without adequate guidance</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U.S. Citizen or Green Card</p>\\n<p><strong>Desired Skills:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Modernization/migration&nbsp;experience desired</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;jQuery</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;git</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CI/CD</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IIS Administration</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Understanding of web farm architecture</p>\",\n                    \"date_added\": \"1/10/2020 11:29:46 AM\",\n                    \"reply_to\": \"bcarnes@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Lead .Net Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230657\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington \",\n                        \"zip\": \"20002\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p><strong>Job Description:&nbsp;</strong><br />\\nInteroperability is quickly becoming one of the most critical areas in Healthcare IT. The importance of having continuous data flow in supporting the delivery of high quality patient care cannot be understated. A well-established foundation in Enterprise Integration is generally built around HL7, but nowadays this is only part of the story:</p>\\n<ul>\\n    <li>A successful ACO looks to its integration team to deliver relevant information to key stakeholders to drive improvements in care quality, operational effectiveness, and risk management.</li>\\n    <li>Meaningful Use requirements are helping to drive forward the sharing of longitudinal patient records amongst providers in any setting.</li>\\n    <li>More and more healthcare professionals are looking to technology to provide true semantic interoperability of disparate healthcare systems.</li>\\n    <li>All of these positive and challenging trends in healthcare require the Integration Engineer to have mastery over development with a diverse toolset including: HL7 v2 &amp; v3, clinical documents (CCD, CCR, C-CDA), IHE profiles, EMPI/MDM, and Web Services.&nbsp;</li>\\n    <li>In addition, Integration Engineers are valued for their wide-ranging knowledge of the numerous applications used, the accompanying workflows, and a detailed understanding of how it all &ldquo;fits together&rdquo;.</li>\\n    <li> Along with interface development, architectural design, and general project guidance, the Integration Engineer should be an expert at analysis and have the communication skills to deliver the highest quality support to our partners and customers.</li>\\n</ul>\\n<p><strong>Required Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>Education: BA/BSMS in Computer Science, Health Mgmt. Information Systems or other 4-year technical degree.</li>\\n    <li>Experience (Type &amp; Length): 3+ years of experience in integration design, development and analysis in healthcare setting utilizing HL7 standards and master data management tools.</li>\\n    <li>Certification/Licensure: Experience with an industry standard integration engine or ESM and related monitoring tools with a strong preference for Orion Rhapsody. Experience with EMPI such as IBM InfoSphere preferred. Experience with Meditech C/S a plus; experience with Meditech 5.6 or 60 preferred.</li>\\n</ul>\\n<p><strong>Required Skills: </strong></p>\\n<ul>\\n    <li>HL7</li>\\n    <li>Meditech</li>\\n    <li>Orion Rhapsody or other integration engines such as Corepoint Health, Cloverleaf, Intersystems HealthShare, Connect Integration, eGate.&nbsp;</li>\\n    <li>Java or JavaScript coding logic background</li>\\n    <li>Articulate, good com skills. Just like their other engineers, they will interact directly with users (staff at the hospital), so must have good soft skills</li>\\n    <li>Bachelor's degree is required</li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 9:40:56 AM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"HL7 Integration Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"230714\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Richardson\",\n                        \"zip\": \"75082\",\n                        \"state\": \"TX\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Piping Designer</strong><br />\\n<strong>North Kingston, RI</strong><br />\\n<strong>6+ month contract</strong><br />\\n<br />\\n<strong>Description:&nbsp;</strong></p>\\n<ul>\\n    <li>The Piping Engineer must be experienced and have a working knowledge of the fabrication and assembly of piping systems in steel hull vessels.&nbsp; He/she must be computer literate and skilled in Auto-Cad 3D.&nbsp; He/she must be well versed in various different piping systems.&nbsp; He/she must have the ability to understand ABS/Coast Guard rules and regulations.&nbsp;&nbsp;</li>\\n    <li>Required Skills:&nbsp;</li>\\n    <li>Review and revise architect provided flow diagrams match shipyard standards and ABS requirements.</li>\\n    <li>&nbsp;Design piping systems from architect provided flow diagrams and general arrangements.</li>\\n    <li>Research installation requirements of system components.</li>\\n    <li>Coordinate designs with other installations to prevent construction issues.</li>\\n    <li>Produce craft friendly drawings based on developed basic design drawings and make drawings for various assemblies and systems.</li>\\n    <li>Address all change requested from the craft and work with the owner representative on current issues and change proposals.</li>\\n    <li>Make and verify all work packages issued to production.</li>\\n    <li>These packages consist of all drawings, nestings and information for every process leading to erection. This also includes ensuring that no parts are duplicated or missing.</li>\\n    <li>Develop and update nesting programs for piping systems.</li>\\n    <li>Work with lead men and supervisors to solve discrepancies that arise in the fabrication.Revise drawings as required to prevent similar construction issues for next hull.</li>\\n</ul>\\n<p><strong>Required Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>AutoCAD 3D&nbsp; &ndash; Used to create 3D models of piping</li>\\n</ul>\\n<p><strong>Desired Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>MECH-Q &ndash; ACAD add on used to develop 3D pipe models</li>\\n    <li>Navisworks Freedom &ndash; Used for model interference checking</li>\\n    <li>Ship Constructor 2012 (Not currently used) &ndash; Intended for future use</li>\\n</ul>\\n<p>&nbsp;</p>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 3:28:26 PM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Piping Designer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230859\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"N. Kingstown\",\n                        \"zip\": \"02852\",\n                        \"state\": \"RI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Senior .NET Software Engineer</div>\\n<div>Location: Boston, MA</div>\\n<div>Duration: permanent - GREAT Salary <br />\\n</div>\\n<div><br />\\n</div>\\n<div>\\nAs a Senior Software Engineer, you&rsquo;ll be part of one of our multidisciplinary teams where you&rsquo;ll work closely with designers, product managers, and data analysts. You&rsquo;ll be a creative contributor to our processes and decision-making so when we build new features, we can ensure scalability and availability of the entire platform. Sound good to you? Join us. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>What you&rsquo;ll do as a Senior Software Engineer: <br />\\n</div>\\n<div>&bull;\\tDesign, develop, and support API services as well as internal tools written primarily in C# and TypeScript with SQL and NoSQL databases hosted in AWS. <br />\\n</div>\\n<div>&bull;\\tCare about agility as much as you care about scalability. We roll out products very quickly and are looking for a team that can pivot at a moment&rsquo;s notice. <br />\\n</div>\\n<div>&bull;\\tWe&rsquo;re constantly growing and forming new teams; you will be able to lead either as an engineer or transition into a manager role. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>Tech Stack: C# .Net, ASP.NET, .NET Core, REST, microservices, AWS, NoSQL, MySQL, React, Redux, TypeScript, JavaScript, Swift for iOS, Java for Android, and Xamarin.\\n</div>\",\n                    \"date_added\": \"1/9/2020 11:37:35 AM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior .NET Software Engineer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"230951\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston \",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-family: Arial; font-size: 13px;\\\">Java Developer<br />\\nLocation: San Francisco, CA<br />\\nDuration: 6+ months</span><br />\\n<br />\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Role Details:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">We&rsquo;re a team that values software that exemplifies simplicity of design, maintainability, extensibility, and foundational robustness. We are looking for a person who can work in a fast-paced environment that has a strong grasp of cutting edge languages and technologies.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Your Day-to-Day<br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Design, build, and support high performance, scalable, and innovative backend systems/services.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Develop backend APIs, implement system instrumentation, and provide documentation</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work closely with other engineers and product management teams to meet fixed deadlines.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work in all phases of a rapid product development lifecycle.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\"><br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Key Projects<br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Migrate our API services/systems to cloud infrastructures and software</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Find smarter ways to serve our content, whether algorithmically or possibly machine learning</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Discover reliable ways to manage, store, and secure our data around the globe</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">QUALIFICATIONS:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">You have -</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">4+ Years product software development</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">BS degree in Computer Science, similar technical field of study or equivalent practical experience.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Deep understanding of Object Oriented Programming and Design, data structures, and algorithms</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Solid Java, Linux, Shell scripting, Python ability</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Effective communication skills</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">You might also have -</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with RDBMs</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with NoSQL solutions</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with Search Technologies</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with Distributed Systems (both in system design and data storage)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Working knowledge of Docker, Kubernetes, cloud environments (GCP, AWS, etc.) a plus</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Working knowledge of build tools a plus</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Technology: Java, Spring Boot, REST, NoSQL, Linux, Shell, Python</span></p>\",\n                    \"date_added\": \"1/2/2020 9:54:40 AM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Java/API/Web Services Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230982\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Francisco \",\n                        \"zip\": \"94105\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: white;\\\"><strong><span style=\\\"font-family: Arial, sans-serif; color: #4a4a4a;\\\"><span style=\\\"font-size: 9pt;\\\">Tririga </span>Developer<span style=\\\"font-size: 9pt;\\\">&nbsp;<br />\\n</span></span><br />\\n<span style=\\\"font-family: Arial, sans-serif; color: #4a4a4a;\\\"><span style=\\\"font-size: 9pt;\\\">Columbus Circle, </span>Washington<span style=\\\"font-size: 9pt;\\\">&nbsp;DC <br />\\n</span></span><br />\\n<span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">6 Months Contract +</span><br />\\n<br />\\n<span style=\\\"font-family: Arial, sans-serif; color: #4a4a4a;\\\">Overview<span style=\\\"font-size: 9pt;\\\">:&nbsp;</span></span></strong><br />\\n<span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Currently seeking a Senior Application Developer to work in ASO&rsquo;s dynamic software development division. As such, the position is a key contributor to the integration, design, development, implementation, maintenance, and production support for IBM&rsquo;s TRIRIGA integrated workplace management system (IWMS).&nbsp; The position will adhere to the ASO development framework and processes.&nbsp;</span><br />\\n<strong><br />\\n<span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Responsibilities :&nbsp;</span></strong></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Candidate must possess a strong desire to learn how government agencies practice Facilities, Space, Project, and Asset Management application functional areas available in the TRIRIGA product offering which may be&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">implemented/customized.</span></span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Provide full life-cycle development including design, development, testing and implementation of&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">&nbsp;&nbsp;&nbsp;&nbsp;projects</span>&nbsp;that support business goals.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Take ownership of&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">projects/tasks/issues</span>&nbsp;and work them through completion.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Develop and maintain architecture &amp; customizations following AOUSC standards to ensure processes support existing architecture, follow defined guidelines and TRIRIGA development best practices standards meet user requirements.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Identify process improvements and enhancements to existing business and IT processes that will increase operating efficiencies.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Collaborate with end users and provide exceptional customer service by becoming a trusted business advisor.</span></p>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 9pt; border: 1pt none windowtext; font-family: inherit; color: #4a4a4a;\\\">Required skills and experience:</span></strong></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">8+ years of progressive systems development experience utilizing a full System Development Lifecycle (SDLC)</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in Java Development and associated tools (J2EE a plus)</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in database design and development using MS SQL Server or Oracle</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in IBM TRIRIGA Platform and Application Development</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Solid understanding of Web Architecture</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Proven experience diagnosing and resolving problems</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience working on agile self-organized, cross-functional teams</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant needs working knowledge of Arch GIS, Graphic/Floor Plans, AutoCAD, and BIRT Reports &amp; understanding of how its integrated with the TRIRIGA Platform.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have strong familiarity with TRIRIGA Application Admin Console&rsquo;s logs, user management, Database Query Tool, properties settings, SSO, performance analysis, and workflow settings/tools.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have experience using Object Migration / Object labeling and ability to perform&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">imports/exports/package</span>&nbsp;comparisons as well as TRIRIGA application upgrades.&nbsp;</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have familiarity with TRIRIGA Application Admin Console&rsquo;s logs, user management, Database Query Tool, web properties settings, SSO, performance analysis, and workflows processing.</span></p>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 9pt; border: 1pt none windowtext; font-family: inherit; color: #4a4a4a;\\\">&nbsp;Desired Knowledge:&nbsp;</span></strong></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Software development best practices</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">TRIRIGA certified a big plus. Certification in IBM TRIRIGA Application Platform</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Solid understanding of Project life cycle methodology for application development</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">JIRA work management tool is a plus</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Pentaho Data Integration (aka Kettle) tool experience is a plus Jenkins or comparable continuous integration server</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Testing methodologies and tools</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Agile development methodologies such as Scrum, Kanban, Extreme Programming</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Agile principles, processes, and methods such as iterative and incremental development, continuous integration, test-driven development (TDD), unit testing, code refactoring, pair programming, and Scrum ceremonies</span></p>\\n<p style=\\\"background: white;\\\">&nbsp;<strong><span style=\\\"padding: 0in; font-size: 9pt; border: 1pt none windowtext; font-family: inherit; color: #4a4a4a;\\\">Ability:&nbsp;</span></strong></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Excellent communication skills &ndash; both written and verbal</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Ability to set priorities to meet customer deadlines</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Strong documentation skills</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Team player, flexible/adaptable, responsible and accountable</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Strong problem solving and service delivery skills, particularly in the presentation and education of technological issues and solutions</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Ability to work on multiple projects simultaneously</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Efficient problem identification and resolution skills</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Demonstration of careful attention to detail</span></p>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 9pt; border: 1pt none windowtext; font-family: inherit; color: #4a4a4a;\\\">&nbsp;Education&nbsp;:</span></strong></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Bachelor's degree in Computer Science/Information Systems Technology or 5-7 years of equivalent experience</span></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">GDIT &nbsp;is currently seeking a Senior Application Developer to work in ASO&rsquo;s dynamic software development division. As such, the position is a key contributor to the integration, design, development, implementation, maintenance, and production support for IBM&rsquo;s TRIRIGA integrated workplace management system (IWMS).&nbsp; The position will adhere to the ASO development framework and processes.&nbsp;</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Candidate must possess a strong desire to learn how government agencies practice Facilities, Space, Project, and Asset Management application functional areas available in the TRIRIGA product offering which may be&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">implemented/customized.</span></span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Provide full life-cycle development including design, development, testing and implementation of&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">&nbsp;&nbsp;&nbsp;&nbsp;projects</span>&nbsp;that support business goals.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Take ownership of&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">projects/tasks/issues</span>&nbsp;and work them through completion.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Develop and maintain architecture &amp; customizations following AOUSC standards to ensure processes support existing architecture, follow defined guidelines and TRIRIGA development best practices standards meet user requirements.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Identify process improvements and enhancements to existing business and IT processes that will increase operating efficiencies.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Collaborate with end users and provide exceptional customer service by becoming a trusted business advisor.</span></p>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 9pt; border: 1pt none windowtext; font-family: inherit; color: #4a4a4a;\\\">Required skills and experience:</span></strong></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">8+ years of progressive systems development experience utilizing a full System Development Lifecycle (SDLC)</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in Java Development and associated tools (J2EE a plus)</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in database design and development using MS SQL Server or Oracle</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of experience in IBM TRIRIGA Platform and Application Development</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Solid understanding of Web Architecture</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Proven experience diagnosing and resolving problems</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience working on agile self-organized, cross-functional teams</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant needs working knowledge of Arch GIS, Graphic/Floor Plans, AutoCAD, and BIRT Reports &amp; understanding of how its integrated with the TRIRIGA Platform.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have strong familiarity with TRIRIGA Application Admin Console&rsquo;s logs, user management, Database Query Tool, properties settings, SSO, performance analysis, and workflow settings/tools.</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have experience using Object Migration / Object labeling and ability to perform&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">imports/exports/package</span>&nbsp;comparisons as well as TRIRIGA application upgrades.&nbsp;</span></p>\\n<p style=\\\"background: white; margin-left: 0in;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #4a4a4a;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-size: 9pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Applicant must have familiarity with TRIRIGA Application Admin Console&rsquo;s logs, user management, Database Query Tool, web properties settings, SSO, performance analysis, and workflows processing.</span></p>\",\n                    \"date_added\": \"1/7/2020 2:19:31 PM\",\n                    \"reply_to\": \"bcarnes@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Tririga Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230986\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20544\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"\",\n                    \"date_added\": \"12/11/2019 1:31:11 PM\",\n                    \"reply_to\": \"sstalcup@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Azure Cloud Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231009\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Mountainview\",\n                        \"zip\": \"94035\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>Harness Design Engineer&nbsp;<br />\\n</strong><br />\\n<strong>Required Skills:&nbsp;</strong><br />\\n&nbsp;BSEE, Electrical Engineering<br />\\n&nbsp;Military wiring, cable, and harness design experience<br />\\n<br />\\n<strong>Desired Skills:&nbsp;<br />\\n&nbsp;</strong>Capital Harness or Creo experience is desired<br />\\n&nbsp;Combat or military vehicle/automotive background&nbsp;<br />\\n<br />\\n<br />\\n<strong>Job Description</strong><br />\\no&nbsp; &nbsp; designing electrical wiring harnesses to include component selection for connectors, backshells, sleeving, braiding, sealants, boots, transitions, etc.<br />\\n<br />\\no&nbsp; &nbsp; determining harness layout through vehicle, branch points for multi-branch harnesses<br />\\n<br />\\no&nbsp; &nbsp; designing to environmental requirements for temperature, shock, vibration, submergence, exposure to harsh chemicals<br />\\n<br />\\no&nbsp; &nbsp; designing harnesses for MIL ground vehicle environment highly desired<br />\\n<br />\\no&nbsp; &nbsp; designing in Mentor Capital Harness software can be trained now, would take Creo experience as well<br />\\n<br />\\no&nbsp; &nbsp; working with CAD draftsman to route harnesses in 3D CAD tools (Pro-E Creo)<br />\\n<br />\\no&nbsp; &nbsp; working with CAD draftsman to develop released drawings for harnesses, electrical installations, wiring diagrams, etc.<br />\\n<br />\\no&nbsp; &nbsp; working with systems engineers to define whole vehicle pin-level interconnect<br />\\n<br />\\no&nbsp; &nbsp; working with physical architects to define harness routing channels, space claims<br />\\n<br />\\n<br />\\n</p>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"1/8/2020 9:18:33 AM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Harness Design Engineer \",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231054\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling Heights\",\n                        \"zip\": \"48310\",\n                        \"state\": \"MI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\"><strong></strong></span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\"><strong>SQL Database Lead and Manager - Direct-Hire - Washington, DC&nbsp;<br />\\n*<em>TS Clearance Sponsorship Available</em>*&nbsp;<br />\\n<br />\\nJob Description:&nbsp;<br />\\n</strong></span><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Our client is seeking a seasoned Database Manager to directly support their federal client in Washington, D.C. You will lead a team which is responsible for ensuring our client's IT programs and data capabilities are aligned with their strategic place. You are a change agent to move the organization to modern databases systems both on-prem and cloud based. You will efficiently and effectively deliver a user-friendly system for controlling the storage, maintenance, security, interchange, and exchange of data involved in the management and monitoring of a wide variety of data systems.&nbsp;</span></p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Responsibilities</span></strong></p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Provide a vision of a future technical environment and help the team and stakeholders adopt that vision.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Gain stakeholder buy in on methodology and solutions to problems you and your team developed.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop, build, delivery and implement a migration path to modern database tools and approaches.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Lead deliverable development and report performance metrics where applicable.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Design, create, and when necessary maintain databases in a both a client/server environment and Cloud environment.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Conduct quality control and auditing of databases in a client/server and cloud environments to ensure accurate and appropriate use of data. Products include Oracle, MySQL, PostgreSQL and cloud-based databases and tools.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Design, implement, and maintain complex databases with respect to JCL, access methods, access time, device allocation, validation checks, organization, protection and security, documentation, and statistical methods.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Apply knowledge and experience with database technologies, development methodologies, and front-end (e.g., COGNOS)/back-end programming languages (e.g., SQL).&nbsp;&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Lead and perform database programming and support systems design.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Design approach and support delivery of maintenance of database dictionaries, overall monitoring of standards and procedures, file design and storage, and integration of systems through database design.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Qualifications</span></strong></p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Due to clearance requirements this candidate needs to be a U.S. Citizen with the ability to obtain up to a Top Secret clearance.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">5+ years leading and managing a technical team, strong client and personnel management skills required.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">10+ years of Database Management experience in technology solution delivery or sybase.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Expert knowledge in Database Management, Data Maintenance, Requirements Analysis, Database Security, Database Performance Tuning, and Operating Systems.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\"><br />\\n<br />\\n</span></strong></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"12/30/2019 11:37:58 AM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"SQL Database Lead and Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231064\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20554\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Configuration Management Analyst </span></strong></p>\\n<p><em><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Aurora, CO</span></em></p>\\n<p><em><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">12 months </span></em></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">As a Configuration Management (CM) Analyst, you will be supporting engineering programs that will support the management and control of configurations and baselines, ensuring complete traceability of changes through a documented change management process. With a focus on Hardware Configuration Items (HWCIs), tasks include configuration identification, configuration control, configuration status accounting, data management, product release and delivery, and configuration audits. Track and process hardware drawings and engineering change notices. Create/improve CM processes related to HW CM. Facilitate Configuration Change Control Boards and provide CM assessments and inputs to engineering change requests. Interface with all engineering disciplines and program management. The candidate must be a flexible team player with the ability to prioritize multiple concurrent tasks in a diverse environment.</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Key Responsibilities: </span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Developing and implementing Configuration Management principles, processes and training, such as configuration control, identification, data management (library/repository), product release and delivery, and configuration audits. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Responsible for ensuring that all required deliverable and non-deliverable contract data are properly identified, scheduled, marked, reviewed, approved, submitted, and accepted. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Responsible for ensuring that all program-related information is effectively stored and controlled throughout the contract lifecycle including digital files and work products. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Collaborates across the Program Management Office (PMO) to proactively manage CM risks, opportunities, and overall deliverables. </span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Required Experience, Knowledge and/or Skills: </span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Bachelor&rsquo;s degree with 6 years of relatable experience applying Configuration and Data Management principles </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Experience implementing Configuration Management principles, processes and training, such as configuration control, identification, data management (library/repository), product release and delivery, and configuration audits. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Strong analysis skills: Ability to evaluate the current environment, gather needs, and propose a recommended CM solution </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Experience with Microsoft office tools advanced features: Excel, Word, PowerPoint, and SharePoint Desired Experience, Knowledge, Skills, and/or Abilities (a plus but not required): </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Experience working with CMMI and ISO 9000 CM requirements. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Experience with CM tools applicable to Product Data Management and Data Management. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">&bull; Certifications from either NDIA or CMII in Configuration Management</span></p>\",\n                    \"date_added\": \"12/19/2019 4:13:14 PM\",\n                    \"reply_to\": \"achesley@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Configuration Management Analyst - TS/ SCI - (CO)\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230804\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Aurora\",\n                        \"zip\": \"80011\",\n                        \"state\": \"CO\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<em><span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">This Client is currently seeking a Systems Engineer in support of several Systems Engineering programs and efforts. The Systems Engineering applicant will participate in Systems Engineering development efforts. This position involves working in a team environment with responsibilities in all phases of Systems development including concept development, requirements, functional analysis, design reviews, implementation, test, verification, validation and transition. Multiple positions are available with multiple skill sets.</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">Clearance Requirements: Current TS/SCI security clearance.</span></em><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\"><strong>Responsibilities include, but are not limited to: </strong><br />\\n&bull;Perform life cycle systems engineering and test activities in support of on-going programs.</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Work with external industry and Govt. stakeholders in the resolution of engineering systems issues.</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Develop and maintain requirements for systems and subsystems</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Prepare for and conduct design reviews</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Work in an IPT in the development of defense equipment and products.</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Develop Test strategies and procedures</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Work within and coordinate systems engineering activities across the customer, supplier and internal IPT.</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\"><strong>Required Skills:</strong><br />\\n&bull;2+ years demonstrated experience in systems engineering, software engineering or related engineering discipline</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\"><em>&bull;Knowledge of the following systems engineering functions:</em><br />\\nâ\\u0097¦CONOPS development</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">â\\u0097¦requirements development and management</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">â\\u0097¦architecture</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">â\\u0097¦system design</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">â\\u0097¦interface definition and control</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">â\\u0097¦integration and test to include test planning and procedure development</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Demonstrated understanding of the systems engineering lifecycle in support of software development, avionics systems development or sustainment activities</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Excellent written and oral communication skills</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Experience with Microsoft Office suite of tools, particularly Excel, Project, and PowerPoint</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Current TS/SCI clearance</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<strong><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n</strong><span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\"><strong>Desired Skills: </strong><br />\\n&bull;Experience with requirements management using DOORS or similar requirements management tool</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Knowledge of software development lifecycle models (waterfall and Agile).</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Ability to the identify, manage, and mitigate technical risk</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">&bull;Experience with automated test tools/ script development</span><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<strong><span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">Education Requirements:</span></strong><br style=\\\"color: #4b4b4b; background-color: #ffffff; font-size: small; font-family: Narrow;\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: small; font-family: Narrow; color: #4b4b4b;\\\">Requires a degree in Science, Technology, Engineering or Mathematics (STEM) and minimum of 2 years prior relevant experience or 10 years of experience in lieu of education</span><br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"1/8/2020 3:34:17 PM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Engineer \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231086\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dulles\",\n                        \"zip\": \"\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"\",\n                    \"date_added\": \"12/11/2019 1:39:12 PM\",\n                    \"reply_to\": \"sstalcup@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cyber Security Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231092\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling\",\n                        \"zip\": \"20166\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"&nbsp;\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>GRC SME</strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><em>Falls Church, VA<br />\\n<br />\\n</em></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">Overview:</span></strong> Softworld is currently seeking a GRC SME to support the United States Postal Service&rsquo;s Cybersecurity organization. The successful candidate will experience an unparalleled large-scale enterprise environment with over 800 Information Technology systems, processing billions of dollars in annual revenue and supporting a diverse user base spread across the entire US. </p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>&nbsp;</strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">Responsibilities</span></strong>: </p>\\n<ul style=\\\"list-style-type: square;\\\">\\n    <li>Act as subject matter expert and administrator for GRC system. </li>\\n    <li>Apply solutions to implement Postal Service CISO Organization&rsquo;s business needs.</li>\\n    <li>Server as liaison to other groups within USPS CISO Organization, USPS Information Technology, and GRC vendor.</li>\\n    <li>Participate in the implementation, integration and maintenance of GRC Solution. </li>\\n    <li>Assist with development of workflows and supporting documentation </li>\\n    <li>Create/modify dashboards, home pages, notifications and reports </li>\\n    <li>Work with GRC vendor, system architects, ensure maximum system capability</li>\\n    <li>Collaborate with business process leads GRC vendor in developing and implementing business requirements</li>\\n    <li>Advise on, develop, and implement processes around risk identification, assessment, and remediation, policy exception management, third party cyber risk management, policy management, vulnerability management and remediation. </li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">Qualifications</span>: </strong></p>\\n<ul style=\\\"list-style-type: square;\\\">\\n    <li>Bachelor's degree or equivalent experience. </li>\\n    <li>Five 5 years additional relevant experience in an environment that supports integrated risk management. </li>\\n    <li>At least 5 years of experience with one or more GRC technology platforms (e.g., Rsam, Galvanize, Archer, MetricStream). </li>\\n    <li>Demonstrated ability to work with information management concepts, such as data analysis to support business requirements, data modeling, data quality/validation. </li>\\n    <li>Demonstrated proficiency in data visualization approaches and tools (e.g. GRC systems, Tableau, Spotfire, Qlikview, Cognos, SAP Business Objects, Microstrategy, etc.); </li>\\n    <li>Working knowledge of how to implement/sustain key internal audit, risk and/or compliance initiatives, using technology for process optimization.</li>\\n    <li>Experience with Software Development Life Cycle (SDLC) and Software Testing Life Cycle (STLC)</li>\\n    <li>Demonstrated experience utilizing agile frameworks for project lifecycle</li>\\n    <li>Strong written and verbal communication skills. </li>\\n    <li>Solid analytical, decision-making and problem-solving skills.</li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 4:51:10 PM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"GRC Administrator & SME\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230895\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Falls Church \",\n                        \"zip\": \"22042\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"Job Description:<br />\\n<br />\\n- Design and Develop Electrical Components and Subsystems for processor, I/O, and display products<br />\\n- Concept to production delivery support including design, debug, test, and qualification<br />\\n- Develop Engineering Design Fixes, and Coordinate Solutions<br />\\n- Support circuit design, component selection, procurement, and prototype hardware debug and builds<br />\\n- Review and develop H/W and S/W requirement documents and test plans<br />\\n- Strong record keeping skills with commitment to tracking design changes, debug status, H/W and S/W revisions.<br />\\n- Bachelor's degree in Electrical Engineering with 6 years of applicable experience. Fewer years will be considered with an advanced degree.<br />\\n- Ability to use Engineering Development and Test Tools.<br />\\n- Strong interpersonal skills and ability to work with interdisciplinary teams.<br />\\n- Strong multi-tasking skills<br />\\n<br />\\nKnowledge in many, but not all, of the following areas desired<br />\\n- Digital and Analog circuit design including power and thermal analysis.<br />\\n- schematic development, component selection, circuit simulation, and PCB layout<br />\\n- microprocessor based products including processors, chipsets, memory and bus interfaces, networking standards (PCI-xpress, DDR2, DDR3, USB, SATA, DVI, etc...)<br />\\n- HC12 Microcontrollers and x86, Power PC Single Board Computers<br />\\n- industry interface standards and form factors (VITA42/46, COM Express, ETX, etc ...)<br />\\n- Networking Products, H/W, S/W, Switches, Routers, OSI layers<br />\\n- Network Storage (NAS, SAN), Solid State and Rotating Drive technologies, Interfaces, and protocols (IDE, SATA, SCSI, ibre Channel, NFS)<br />\\n- Serial Interconnects, USB, CAN, RS422/485, etc<br />\\n-graphics/video interfaces (DVI, HDMI, RS-170, etc.)<br />\\n- FPGA Design and Simulation, VHDL<br />\\n- EMI/EMC design practices and standards.<br />\\n- C, C++, VisualStudio (VB)<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 3:31:33 PM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Electrical Hardware Design Engineer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231098\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling Heights\",\n                        \"zip\": \"48310\",\n                        \"state\": \"MI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"PCB Designer<br />\\nBoston, MA<br />\\n6-12+ month contract<br />\\n<br />\\nResponsibilities:<br />\\n&bull; Experience designing high-count multilayer complex printed circuit boards.&nbsp;<br />\\n&bull; Experience specifically using the most recent and current Mentor Graphics tools: DxDesigner / Expedition PCB<br />\\n&bull; Candidate must be well versed in Mil and IPC Standards.<br />\\n<br />\\nQualifications:<br />\\n&bull; Expedition PCB Autorouter<br />\\n&bull; Drawing Editor<br />\\n&bull; Constraint Editor / Constraint Manager<br />\\n&bull; Mentor Graphics DMS<br />\\n&bull; Valor Artwork checking tool:<br />\\n&bull; CAD tools (Expedition&nbsp; - ideally with version VX).<br />\\n&bull; Knowledge in all aspects of PWB design, fabrication and assembly of Printed Wiring Boards<br />\\n&bull; Desired:&nbsp;<br />\\n&bull; Specific experience with latest versions of Mentor Graphics PCB Layout Tool and Constraint Manager<br />\\n&bull; C.I.D. (Certified Interconnect Designer) is a plus<br />\\n<div><br />\\n</div>\",\n                    \"date_added\": \"1/7/2020 10:45:26 AM\",\n                    \"reply_to\": \"rwells@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"PCB Designer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231100\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02139\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div style=\\\"background-color: #ffffcc;\\\"><strong style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">TITLE:</span></strong>&nbsp;&nbsp;<strong style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 14pt; font-family: Arial, sans-serif;\\\">Infrastructure Engineer</span></strong></div>\\n<div style=\\\"background-color: #ffffcc;\\\">\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">KEY SKILLS &amp; EXPERIENCE:</span></strong>&nbsp;</p>\\n<p><span style=\\\"font-size: 10.5pt; font-family: Arial, sans-serif;\\\">&bull; Proficient in PowerShell scripting.&nbsp;<br />\\n&bull; Completes Infrastructure Engineering and Administration maintenance tasks and analyzes process for improvement.<br />\\n&bull; Coordinates medium to high complexity Infrastructure changes and implementations.<br />\\n&bull; Analyzes potential changes and enhancements to system software and databases to determine compliance impact on existing production systems, system design standards and operating procedures.<br />\\n&bull; Works as a member of a project team on Compliance and Security projects. May lead teams on smaller projects.<br />\\n&bull; Performs other duties as assigned.&nbsp;<br />\\n&bull; Working knowledge of the Sarbanes Oxley requirements and controls<br />\\n&bull; Requires basic+ knowledge of Infrastructure Hardware and Software Technologies and best practices<br />\\n&bull; Proficient with 1 or more skills within Infrastructure Technology Disciplines-(Ex: Windows, Unix/Linux, Mainframe, Virtual technologies, IT tools, Application Lifecycle Management (ALM), SQL, MDT and SCCM preferred, and other relevant technologies are a plus)<br />\\n&bull; Strong organizational, interpersonal, and communicational skills<br />\\n&bull; Experience with change management systems, principles and best practices<br />\\n&bull; Proficient with Microsoft Office tools<br />\\nBachelor's degree in Computer Science, Business Administration, Math or equivalent related experience<br />\\nMinimum 5 years of experience configuring and supporting Infrastructure Specific Infrastructure experience with the latest technology.</span></p>\\n</div>\",\n                    \"date_added\": \"1/2/2020 8:37:21 AM\",\n                    \"reply_to\": \"akang@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Infrastructure Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231105\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p><strong></strong></p>\\n<p><strong>PL/SQL Developer</strong></p>\\n<p><strong>Location: </strong>Suitland, MD (Up to 50% remote)</p>\\n<p><strong>Duration: </strong>Contract-to-Hire</p>\\n<p><strong>***Due to the nature of the work being performed all candidates must be US Citizens or Green Card holders***</strong></p>\\n<p><strong>Projected Description/Purpose of Role:</strong></p>\\n<p>Softworld is seeking a PL/SQL programmer/analyst to support the U.S. Census Bureau Geography Division. The programmer/analyst will be a key member of a team that leads the requirements collection and analysis, data modeling, software design, development, debugging, and implementation and enhancement of new and existing software programs in PL/SQL programming languages.&nbsp;</p>\\n<p><strong>Responsibilities:</strong></p>\\n<p>&bull; Gather and document Software requirements from project teams, end users and subject matter experts (SMEs).</p>\\n<p>&bull; Lead the analysis, data modeling, technical and functional design of software project through the software development life cycle (SDLC).</p>\\n<p>&bull; Design, develop, enhance, debug, and implement interactive and batch software.</p>\\n<p>&bull; Write test cases, perform functional and integration testing during various phases of the product life cycle.</p>\\n<p>&bull; Research, test, build, and coordinate the conversion and/or integration of new products based on client requirements.</p>\\n<p>&bull; Assist in the evaluation and recommendation of application software packages, application integration and testing tools.</p>\\n<p>&bull; Resolves problems with software and responds to suggestions for improvements and enhancements.</p>\\n<p><strong>Required Skills:</strong></p>\\n<p>&bull; Ability to work effectively both independently and as part of an integrated team.</p>\\n<p>&bull; Experience in creating, modifying stored procedures and programming using SQL/PL-SQL&nbsp;</p>\\n<p>&bull; Highly analytical, possessing critical and creative thinking skills.</p>\\n<p>&bull; Strong interpersonal skills to maintain effective working relationships with team and customers</p>\\n<p><strong>Optional Skills</strong></p>\\n<p>&bull; Development experience using ORM tools such as Hibernate, Web Services, Spring,&nbsp; jQuery and HTML5.</p>\\n<p>&bull; Experience in innovative Java-centric scalable enterprise custom application development and delivery</p>\\n<p>&bull; Experience with Oracle BI&nbsp;</p>\\n<p>&bull; Experience with PERL/Shell programming</p>\\n<p>&bull; Experience with Oracle Spatial</p>\\n<p>&bull; Experience with Oracle APEX&nbsp;</p>\\n<div style=\\\"font-weight: normal;\\\"><br />\\n</div>\",\n                    \"date_added\": \"1/2/2020 10:15:26 AM\",\n                    \"reply_to\": \"cdamore@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"PL/SQL Programmer/Analyst \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231107\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Suitland \",\n                        \"zip\": \"20746\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"background-color: #ffffff; font-size: 14px; font-family: '72', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; color: #32363a;\\\">REQUIRED SKILLS:</span><br style=\\\"color: #32363a; background-color: #ffffff; margin: 0px; padding: 0px; font-size: 14px; font-family: '72', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\\\" />\\n<span style=\\\"background-color: #ffffff; font-size: 14px; font-family: '72', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; color: #32363a;\\\">Minimum of 7 years relevant post-secondary education or relevant work experience including a combination of these two. Experience in systems administration and networking. Experience deploying virtualized technologies (KVM, VMWare, Openstack, OpenNebula, Docker, Kubernetes). Experience with automated configuration management tools such as Puppet, Chef, or Ansible. Knowledge of Ceph storage and various Rados Gateway protocols (file, block, object) Comfortable working with version control systems such as git. Understanding of various authentication and authorization protocols and services. Experience working in cross-functional or dev-ops focused teams. Strong communication and problem-solving skills.</span>\",\n                    \"date_added\": \"12/26/2019 9:42:34 AM\",\n                    \"reply_to\": \"akang@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \" SENIOR RESEARCH COMPUTING SYSTEMS ENGINEER\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231122\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"02118\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"Top 3 Required Skills:&nbsp;<br />\\nMechanical design engineering (CAD Creo design)<br />\\nPowertrain, drivetrain, transmission, and power generation background (diesel engine)<br />\\nCombat vehicle, heavy truck, and/or automotive experience<br />\\n<br />\\nJob Description:<br />\\nDevelop integrated powertrain and power generation solutions for wheeled and tracked vehicle platforms<br />\\n<br />\\nWork with suppliers towards the development of the subsystems and components for the powertrain and power generation systems<br />\\n<br />\\nIdentify subsystem and component requirements, provide direction to analysis teams, and interpret analysis results&nbsp;&nbsp;<br />\\n<br />\\nAbility to conduct/lead FEA analysis of components and subsystems&nbsp;&nbsp;<br />\\n<br />\\nCreate test plans and actively lead or guide subsystem level testing&nbsp;&nbsp;<br />\\n<br />\\nPrepare and present information to the IPT on progress and design solutions&nbsp;&nbsp;<br />\\n<br />\\nDirect and oversee CAD model development and drawings&nbsp;&nbsp;<br />\\n<br />\\nAddress cost, reliability maintainability, safety, human factors in the development of design&nbsp;&nbsp;<br />\\n<br />\\nHandle programs on a very tight schedule, and budget with complexity&nbsp;&nbsp;<br />\\n<br />\\nAssure customer expectations are met or exceeded<br />\\n<br />\\nMust have a Bachelor&rsquo;s Degree in Mechanical Engineering.&nbsp; Master&rsquo;s degree preferred.&nbsp;<br />\\n<br />\\n6 years of relevant experience required.&nbsp; Combat vehicle experience preferred.&nbsp; &nbsp;<br />\\n<br />\\nEstablished knowledge on engines, transmissions, generators/motors, heat exchangers, fans&nbsp;<br />\\n<br />\\nExperience in CAD and Advanced simulation tools such as Creo, UG-NX, or Matlab-Simulink&nbsp;&nbsp;<br />\\n<br />\\nExperience with advanced powertrains such as Hybrid-Electric Powertrains preferred&nbsp;&nbsp;<br />\\n<br />\\nExcellent analytical skills to appropriately size subsystems and components&nbsp;&nbsp;<br />\\n<br />\\nDemonstrated ability to work independently&nbsp;&nbsp;<br />\\n<br />\\nMind-set to work collaboratively in a team environment for program success&nbsp;&nbsp;<br />\\n<br />\\nProven skills in the development of technical documents and oral communication&nbsp;&nbsp;<br />\\n<br />\\nPrimary office work with Occasional travel to test locations&nbsp;&nbsp;<br />\",\n                    \"date_added\": \"12/16/2019 9:00:38 AM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Mechanical Design Engineer - Powertrain\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231123\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling Heights\",\n                        \"zip\": \"48310\",\n                        \"state\": \"MI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p class=\\\"MsoNormal\\\" style=\\\"text-align: left; margin-bottom: 15pt; line-height: normal; vertical-align: top;\\\"><strong>Business Intelligence Developer - Contract-to-Hire - Wright-Patterson AFB, Fairborn, OH&nbsp;</strong><br />\\n<br />\\n<strong>Job Description:&nbsp;</strong></p>\\n<ul>\\n    <li>Created and design BOBJ reports&nbsp;</li>\\n    <li>Developed dashboards, reports, and metrics using visualization&nbsp;</li>\\n    <li>Ability to read code to understand the logic behind the applications&nbsp;</li>\\n    <li>Client is using BOBJ and Lumira currently and will eventually convert over to Tableau, so they are willing to take someone with another BI Tool set such as Cognos, etc.&nbsp;</li>\\n    <li>Experience with the Air Force&nbsp;</li>\\n</ul>\\n<div><strong>Requirements:&nbsp;</strong></div>\\n<p class=\\\"MsoNormal\\\" style=\\\"text-align: left; margin-bottom: 15pt; line-height: normal; vertical-align: top;\\\">&nbsp;</p>\\n<ul>\\n    <li>Bachelor's Degree in Computer Science, Management Information Systems or related field of study; experience/certifications may be substituted for degree requirements</li>\\n    <li>10-20 years&rsquo; of software, business intelligence and/or information technology related experience.</li>\\n    <li>Experience creating custom reporting solutions to facilitate mission success</li>\\n    <li>Design and implement reports, scorecards and dashboards using dashboard manager, Lumira, Tableau, web intelligence, desktop intelligence and Crystal Reports</li>\\n    <li>Experience gathering/analyzing requirements and translating them into detailed functional specifications</li>\\n    <li>Experience planning, writing and executing test plans</li>\\n    <li>Good understanding of data warehouse design</li>\\n    <li>Requires strong organizational skills and action-oriented personality; experience leading tasks and tracking actions across multiple organizations</li>\\n    <li>Excellent analytical and problem-solving abilities backed by solid writing and communication skills; must collaborate constructively and effectively with project end-users, customers, advocates and stakeholders</li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"text-align: left; margin-bottom: 15pt; line-height: normal; vertical-align: top;\\\"><strong>*Due to clearance requirements this opportunity will only consider candidates with an Active DoD Secret Clearance*&nbsp;</strong><br />\\n<br />\\n<br />\\n</p>\",\n                    \"date_added\": \"1/10/2020 11:53:31 AM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Business Intelligence Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231125\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fairborn \",\n                        \"zip\": \"45433\",\n                        \"state\": \"OH\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Forescout SME</strong></p>\\n<p><em>Lanham, MD</em></p>\\n<p><strong>Responsibilities:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Deploying and providing ongoing support for the Forescout system</li>\\n    <li>Provide training and knowledge transfer of the Forescout product</li>\\n    <li>Provide subject matter expertise (SME) for Forescout technologies</li>\\n    <li>Support the agencies system, network, and Cybersecurity operations team.</li>\\n    <li>Contribute as a lead technical resource on implementation and operations and maintenance of the Forescout solution.</li>\\n    <li>Responsible for developing and updating standard operating procedures, policy development, troubleshooting, ensuring best practices, responding to outages, and reporting information regarding the status of the tool and its integration points.</li>\\n</ul>\\n<p><strong>Required:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Must have 6-10 years experience in network operations or cyber security positions, responsible for tier-3 activities involving technical hands-on configuration and troubleshooting tasks.</li>\\n    <li>Must have networking experience with design, implementation, configuration of large network enterprise experience at least 10 sites, 10,000+ endpoint environments</li>\\n    <li>Must have 1 year of Forescout policy administration experience</li>\\n    <li>Must demonstrate proficiency with Network Access Control (NAC) products ForeScout CounterACT. This position will perform system administration of the Forecout solution in its entirety</li>\\n    <li>This position will assist in the roll-out of network segmentation and access control technical measures enforced with a focus on allowing authorized hosts access to the environment, detecting unauthorized hosts, and quarantining hosts which do not meet local cyber security requirements.</li>\\n    <li>The ideal candidate will have recent experience in an enterprise or service provider environment deploying, troubleshooting, and documenting LAN and campus networks that integrate NAC features with Cisco switches</li>\\n    <li>Must excel in high-paced, demanding environments where each day provides a new set of challenges under short time constraints involving complex network configurations and/or troubleshooting multiple hosts scattered across a large campus network.</li>\\n    <li>Possess excellent problem solving skills and a solid understanding of how to quickly troubleshoot connectivity issues that involve switches, routers, desktops, servers, VoIP phones and video endpoints.</li>\\n    <li>Knowledge and hands-on experience with enterprise-level tools and products that provide security services, including: NAC, SIEM, firewalls, logging, DNS, DHCP, RADIUS and VPN</li>\\n</ul>\\n<p><strong>Preferred/Desired:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Forescout implementation experience</li>\\n    <li>Endpoint security products, patch management, vulnerability management, firewall experience is a plus</li>\\n    <li>Pen Testing or Network architecture experience</li>\\n</ul>\",\n                    \"date_added\": \"12/11/2019 12:56:15 PM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Forescout SME\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231128\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Lanham\",\n                        \"zip\": \"20706\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span>Senior Java Developer &ndash; Fort Lauderdale, FL</span></strong></p>\\n<p><strong>4+ Month Contract</strong></p>\\n<p><strong>Description</strong></p>\\n<p>Softworld Inc.&rsquo;s client is seeking a Senior Java Developer with Microservices development experience. This project involves supporting a major broadcasting company, and the tech stack features Java, Spring, RESTful API and big data processing frameworks such as Spark and Hive. </p>\\n<p><strong>Desired Skills</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>5+ years of software development experience utilizing Java / J2EE. <strong></strong></li>\\n    <li>Extensive REST API / Web Services development experience. <strong></strong></li>\\n    <li>Experience utilizing big data streaming services such as Kinesis, Kafka or RabbitMQ. <strong></strong></li>\\n    <li>Experience working with relational, NoSQL data stores such as Aurora, Elasticsearch, DynamoDB, MongoDB etc. <strong></strong></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 11:41:14 AM\",\n                    \"reply_to\": \"cproulx@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Java Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231129\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Ft. Lauderdale\",\n                        \"zip\": \"33301\",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">The Cisco Voice Engineer will be responsible for troubleshooting our Cisco phone systems related technical incidents and provisioning MACD requests. The primary area of expertise for this position is Cisco UC (Communications Manager, Unity Connection and voice gateways).</span></p>\\n<p><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Job Description:</span></strong></p>\\n<p><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Responsibilities:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Evaluate, design, develop and maintain data networking, VOIP PBX systems and Contact Center System</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Participate in the deployment of new technologies and projects</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Management, monitoring and support of Cisco UC solutions including: Communications Manager, Unity Connection, Voice Gateways, Acme Packet SBC, recording System, Telepresence and Videoconference</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Work with a ticketing system, making timely entries and adjustments as required. Experience with monitoring/management platforms.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Interact with Service Provider and Carrier for incident resolution and change request</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Act as a third level of escalation on incidents</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Desired Capabilities:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Candidates must possess strong skills and experience across a range of the following: Excellent Communication, UC Architecture, and troubleshooting Cisco Voice, Data, and Video Conference Systems.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Understanding of networking concepts including Basic IP Routing, 802.1q, VLANs and QoS</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Strong customer interaction skills and positive attitude</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Desired Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">CCNA Collaboration</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">CCNP Collaboration or equivalent skill will be a plus. Must have at least 5 year of experience administering, engineering, and debugging Cisco Voice Solutions</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Have experience with current Cisco routing and switching technologies</span></li>\\n</ul>\\n<br />\\n<p>&nbsp;</p>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"1/2/2020 11:18:04 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr Cisco Voice/Collaboration Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231131\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dorchester\",\n                        \"zip\": \"02125\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Mechanical Piping Designer </span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Description</span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Our client in the Danverse, MA area, is looking for a Mechanical Piping Designer to participate in the designing of 3D System Models according to known specifications and installation details.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Required Skills</span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Autodesk AutoCAD 2D &amp; 3D (Req'd)<br />\\n<br />\\nAutodesk Inventor 3D &amp; Vault (Preferred)<br />\\n<br />\\nPiping modeling using Hygienic Design guidelines </span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">&nbsp;AS</span></strong><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">ME-BPE standards knowledge helpful but not required</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Participates in the designing of 3D System Models according to known specifications and installation details.</span></strong></li>\\n    <li style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Update individual assembly part drawings for current project release.</span></strong></li>\\n    <li style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Works on redlines and touch-ups prior to sending out piping designs or Fabrication Drawings for approvals</span></strong></li>\\n    <li style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Prepare and complete sets of complex drawings for arrangements, elevations, Isometrics &amp; fabrications.</span></strong></li>\\n    <li style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">Perform/adjust drawings based on As-Built fabrication corrections.</span></strong></li>\\n</ul>\",\n                    \"date_added\": \"12/18/2019 11:36:58 AM\",\n                    \"reply_to\": \"Kchavez@Softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Piping Designer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231134\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Danvers\",\n                        \"zip\": \"01923\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong></strong></p>\\n<p><strong>Sr. Java&nbsp;</strong><strong>Developer</strong><strong>&nbsp;</strong><br />\\n<br />\\n<strong>Start Date</strong>: ASAP</p>\\n<p><strong>Project Length:</strong>&nbsp; Contract-to-hire</p>\\n<p><strong>Interview Process:</strong>&nbsp; &nbsp;Phone interview, then face to face<br />\\n<br />\\n***Due to the nature of the work all candidates must be able work without sponsorship***</p>\\n<p>Candidates can work 9 hour days getting every other Friday off AND</p>\\n<p>Can work 50% of the time remote once they have been there for 90 days if they are in good standing (to be determined by their Five9 manager).</p>\\n<p>Softworld is seeking a hands-on Senior Java Developer to support the Census Bureau in Suitland, MD. As a key member of the team, the Java Developer will interface with the customers and developers supporting a range of software development activities including requirements collection and analysis, technical architecture design, detailed software design, implementation, test and integration for new and existing systems. Strong development experience using Java-centric Software technologies is a critical qualification for this position.</p>\\n<p><strong>Responsibilities</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Design, develop, test and integrate of custom JAVA applications and solutions.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interfaces with senior-level customer management and SMEs</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Designs and leads implementation of scalable, secure JAVA-based applications.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Resolve complex design, implementation and/or performance issues.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Work with the Information Security Organization to ensure that developed solutions meet all security requirements.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Support all development and delivery activities, from requirements definition and specification to deployment and delivery to production.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Consult with project teams and end users to identify new requirements; identifies areas for improvements.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assist in identification and evaluation of new/emerging technologies, COTS products, development and testing tools.</p>\\n<p>&nbsp;</p>\\n<p><strong>Required Skills:</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8+ years of recent hands-on Java development experience, including three years of Java Open Source frameworks and technologies</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5 years Web application, SOA, web service (SOAP or RESTful) development and deployment</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proficient experience developing REST Web Services from scratch (must be a producer, not a consumer)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Extensive development experience using Java, JEE, Java Frameworks (Spring Frameworks, Hibernate&hellip;), JAX-RS, AngularJS, JavaScript, jQuery, HTML5/CSS</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience in applying Agile/Scrum methodology</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience in developing innovative Java-centric scalable, secure enterprise custom applications&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience leading multiple concurrent software development projects&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong interpersonal communication skills to establish and maintain an effective working relationship with development teams and customers</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;B.S. in Computer Science</p>\\n<div><br />\\n</div>\",\n                    \"date_added\": \"12/16/2019 5:51:51 PM\",\n                    \"reply_to\": \"amallow@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Java Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231139\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Suitland\",\n                        \"zip\": \"20746\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p>&nbsp;</p>\\n<p><strong>Drupal Developer</strong> </p>\\n<p><strong>Location:</strong> Columbus Circle, Washington, DC<br />\\n<strong>Duration:</strong> 6-month temp to perm<strong></strong></p>\\n<p><strong>Job Description:</strong>&nbsp;</p>\\n<p>Our client is looking for a Drupal Developer responsible for front-end development and theming. &nbsp;This position requires a combination of programming skills (PHP, HTML, CSS, JS, etc.) and aesthetics (understanding element arrangements on the screen, the color and font choices, and so on). &nbsp;The candidate should have a strong understanding of industry trends and content management systems. &nbsp;Experience with responsive and adaptive design is strongly preferred. &nbsp;In addition, an understanding of the entire web development process, including design, development and deployment, with some back-end knowledge, is preferred. &nbsp; &nbsp;</p>\\n<p><strong>Responsibilities Include:</strong></p>\\n<p>&middot;Helping formulate an effective, responsive design and turning it into a working theme.&nbsp;</p>\\n<p>&middot;Working closely with back-end developers and stakeholders to ensure an effective, visually appealing, and intuitive web design.</p>\\n<p><strong>Skills and Qualifications:</strong></p>\\n<p>&middot;Experience building user interfaces for websites and/or web applications</p>\\n<p>&middot;Extremely fluent with HTML5/XHTML and CSS</p>\\n<p>&middot;Experience working with PHP, JavaScript, and jQuery</p>\\n<p>&middot;Ability to write JavaScript with and without the use of frameworks such as jQuery</p>\\n<p>&middot;Experience designing and developing responsive design websites</p>\\n<p>&middot;Comfortable working with debugging tools like Firebug, Chrome inspector, etc.</p>\\n<p>&middot;Ability to understand CSS changes to have consistent style across platforms and browsers</p>\\n<p>&middot;Ability to convert comprehensive layout and wireframes into working HTML pages</p>\\n<p>&middot;Knowledge and understanding of&hellip; </p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp;&nbsp;&nbsp;&nbsp;PHP</p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp;&nbsp;&nbsp;&nbsp;Web markup, including HTML5 and CSS3</p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp; &nbsp; Client-side scripting and JavaScript frameworks, including jQuery</p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp;&nbsp;&nbsp;&nbsp;Asynchronous request handling, partial page updates, and AJAX</p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp;&nbsp;&nbsp;&nbsp;Cross-browser compatibility issues and ways to work around them</p>\\n<p><span style=\\\"white-space: pre;\\\">\\t</span>o&nbsp;&nbsp;&nbsp;&nbsp;Developer workflow processes and code versioning tools, such as Drush and&nbsp;Git</p>\",\n                    \"date_added\": \"12/16/2019 11:40:05 AM\",\n                    \"reply_to\": \"cdamore@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Drupal Developer/Web Designer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231141\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20544\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Maintains operation of multi-user computer systems, including coordination with network engineers.<br />\\n</div>\\n<p><strong>Duties May Include:</strong> </p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>setting up administrator and service accounts</li>\\n    <li>maintaining system documentation </li>\\n    <li>tuning system performance</li>\\n    <li>installing system wide software and allocate mass storage space</li>\\n    <li>Makes recommendations to purchase hardware and software</li>\\n    <li>coordinates installation and provides backup recovery</li>\\n    <li>Develops and monitors policies and standards related to the use of computing resources. </li>\\n</ul>\\n<p><strong>Skills Required:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Security + </li>\\n    <li>Active Secret or Top Secret clearance </li>\\n    <li>Active Directory GPO Policy's both creating and deploying Upgrade Server 2012 to 2016 and or 2019 </li>\\n    <li>VEEAM and Backup Exec image and testing Health monitoring Troubleshooting all Server related issues in multiple closed area's </li>\\n</ul>\\n<p><strong>Experience Required&nbsp;</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>10+ years supporting a closed area environment following government contractor standards </li>\\n    <li>21+ Years with HS, 17+ Years with AA, 15+ Years with BS, 13+ Years with MS, 10+ Years with PhD</li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 11:12:32 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Admin Principle\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231142\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Nashua\",\n                        \"zip\": \"03051\",\n                        \"state\": \"NH\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Java Developer &ndash; McLean, VA</strong></p>\\n<p><strong>6 Month Contract-to-Hire</strong></p>\\n<p><strong>Description</strong></p>\\n<p>Softworld Inc. is seeking a Software Engineer for a project located in McLean, VA. This person will design and develop multi-stage complex data ingestion pipelines within an AWS environment. The project involves supporting a government client, and the tech stack features Java, Spring and RESTful web services, with a focus on Elasticsearch. &nbsp;</p>\\n<p><strong>Desired Skills</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Extensive software development experience utilizing Java / J2EE<strong></strong></li>\\n    <li>Experience working with Elasticsearch (required)<strong></strong></li>\\n    <li>Experience building API&rsquo;s and implementing complex algorithms<strong></strong></li>\\n    <li>Scripting / automation experience within a cloud environment is strongly preferred<strong></strong></li>\\n</ul>\",\n                    \"date_added\": \"12/17/2019 10:30:12 AM\",\n                    \"reply_to\": \"cproulx@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Java Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231143\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Mclean\",\n                        \"zip\": \"22102\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>Mechanical Engineer </strong></p>\\n<p> </p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>&nbsp;</strong></p>\\n<p> </p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">DESCRIPTION</span></strong></p>\\n<p> </p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Our client in the Sterling Heights, MI area, is looking for a Mechanical Engineer to&nbsp;concept, design, develop and release system, subsystem componentry, to include component mounting brackets or provisions&nbsp;for various vehicle systems. Applicants selected will be subject to a U.S. Government security investigation.</span></p>\\n<p> </p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">RESPONSIBILITIES:</span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Familiar with braking systems (service and parking) and steering used on tracked or military vehicles is a plus!<strong><span style=\\\"text-decoration: underline;\\\"></span></strong></span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to work on complex mechanisms such as articulating driver controls, articulating/multi plane displays (shock isolation mounts/ hard mounted)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to conduct own FEA (ANSA, Nastran and/or LS-DYNA solvers) is a plus</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to Design and Integrate Fuel and/or Hydraulic Subsystems and components into military vehicles</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Familiarity with hydraulic hose, tube and fitting standards</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to do flow and pressure drop calculations</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Have CAD software experience(concepting) utilizing CREO</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">CLEARANCE </span></strong></p>\\n<p> </p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Applicants selected will be subject to a U.S. Government security investigation and must meet eligibility requirements for access to classified information. Due to the nature of work performed, U.S. citizenship is required. Active Security Clearance required at the time of hire.</span></p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"12/16/2019 2:20:45 PM\",\n                    \"reply_to\": \"creilly@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Mechanical Engineer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231149\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling Heights\",\n                        \"zip\": \"48310\",\n                        \"state\": \"MI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title\\n    {\\n    font-weight: bold;\\n    }\\n</style>\\n<p class=\\\"MsoNormal\\\" style=\\\"background: white; vertical-align: baseline;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">Senior SQL Server Database Administrator<br />\\nLocation: Boston, MA<br />\\nDuration: permanent</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"background: white; vertical-align: baseline;\\\">&nbsp;</p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Job Description:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">The Database Administrator is responsible for configuring, troubleshooting and maintaining the company&rsquo;s Production and Development environment databases. The holder of this role will be responsible for owning, tracking and resolving all database related incidents and requests to meet SLA requirements. Their primary responsibilities will be tied to ensuring a stable and performant SQL service in support of our Software as a Service platform. Secondarily, they will serve as a subject matter expert in support of the development team, especially concerning (but not limited to) database structures, database performance, data security and query optimization.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\"><br />\\nKey Responsibilities:</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Database Design</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Continuous improvement of database schema in conjunction with development</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Recommendations and best practices for table structures, indexing, database sharding to ensure scalability of the platform as the business grows</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL Server Maintenance</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Backups, restores and defining recovery models</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Responsible for database clustering</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proactively monitor SQL platform to ensure stability and uptime against SLA</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Understand SQL Server use of underlying operating system platform and communicate requirements and standards to the system and network administrators</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Evaluate, test and deploy new releases, patches and upgrades of the Microsoft SQL Server Platform</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reporting</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Define and implement performance monitoring in a continuous improvement cycle</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Define and implement capacity monitoring in a continuous improvement cycle</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Produce regularly scheduled and ad hoc reports as needed</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Performance Tuning</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Performance tuning and Optimization (PTO), using native monitoring and troubleshooting tools</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Index creation and management</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL Automation</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Work with Process Engineering and IT Operations team to tune automated SQL server deployment within pre-production environments</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implement operational automation using scripts and scheduling</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Work with Process Engineering to automate frequently performed tasks in non-production environments for ad hoc development use (restores, etc&hellip;)</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SQL Security</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Table, field and database encryption per industry best practices</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Server permissions model and monitoring of exceptions</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Documentation creation and maintenance</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Annotated schema layouts</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Server configuration</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Procedures</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Design decisions and rationale</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other related documents as required</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Production Support</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;On-Call rotation in support of Database Platform</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ad hoc management of data</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Respond to alerts</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cross-train to support MySQL based platform</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;&nbsp;Core Competencies:</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Excellent communication skills, both verbal and written</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Technical troubleshooting and problem-solving skills</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Production stabilization orientation</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong attention to detail</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expert knowledge of database systems with focus on Microsoft SQL Server and T-SQL</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Knowledge or experience in other modern programming languages or web development languages: Java, JavaScript, C/C++, HTML, HTML5, etc.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Familiarity with common tools and techniques needed to develop, troubleshoot and maintain database systems</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Involvement in the MSSQL Server Community, active PASS membership</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Related Industry Certifications</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Familiarity with current development support tools including: GIT, JIRA, Confluence, etc.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial; font-size: 13px;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Working experience with MySQL</span></p>\\n<br />\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"12/19/2019 6:16:12 PM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"SQL Server Database Administrator\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231150\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"02210\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p>&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Financial Analyst</span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">*Must be a US Citizen*</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Financial Analyst needed for a Contract to Hire role in Frederick, MD.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Support product managers in budgetary and financial functions associated purchase and procurement of goods/services.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Support all aspects of the Planning, Programming, Budgeting, and Execution System to include but not limited to: Program Objective Memorandum Program Decision Memoranda, Program Budget Decisions, Future Years Defense Program, and Budget Estimate Submission, Execution Reviews, Fiscal Year Budget Planning.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Use the General Fund Enterprise Business System (GFEBS), initiate Purchase Requisitions, execute monthly financial reports for obligations and disbursement rates, and query multiple reports.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Prepare contract packages to support timely awards and facilitate the acquisition process, as needed, to ensure contracts and agreements operate smoothly.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Analyze and provide reports on programmatic planning and execution data, provide periodic updates to financial plans inclusive of planned release schedules, current fiscal year activity, and prepare reports that will be used to brief senior leadership.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Recommend methods for effective and efficient use of funding in the budget and planning years and analyze obligation and disbursement rates against budget. As budgetary financial challenges arise, seek resolution approaches to resolve and ensure funding is utilized appropriately. Prepare contract packages to support timely awards and facilitate the acquisition process, as needed, to ensure contracts and agreements operate smoothly.</span>\\n    <p><strong>Required Skills:</strong></p>\\n    </li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Bachelor&rsquo;s Degree in Finance or a related business discipline, or the equivalent combination of education, professional training, or work experience.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">5 years of related finance or business analysis experience.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Have excellent Microsoft Excel Spreadsheet skills.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Excellent written and oral communication skills, required.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Familiarity with GFEBS and PPBES, a plus.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Duration: 6 Month Contract to Hire</span></strong></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"color: black; font-family: Arial, sans-serif;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span><strong></strong></p>\\n<br />\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"12/16/2019 12:32:11 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Financial Analyst \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231155\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Frederick\",\n                        \"zip\": \"21703\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<strong>JOB DESCRIPTION:&nbsp;</strong><br />\\n<br />\\nThis Client is currently looking for a Senior Acquisition Analyst in the area of medical product development to join our team to support the Department of Army.&nbsp;<br />\\n<br />\\n&nbsp;<br />\\n<strong>Primary Responsibilities</strong><br />\\n<br />\\nThe Senior Acquisition Analyst will use expert level knowledge of Joint Capabilities Integration and Development System (JCIDS); Planning, Programming, Budgeting, and Execution (PPBE); and DoD 5000 processes, including acquisition streamlining initiatives, to support strategic analysis and acquisition planning for the Army and DHA ACAT III and ACAT IV medical programs. This position will support the following task areas:<br />\\n<br />\\n- Conduct analysis of policy and guidance to identify impacts and opportunities related to the medical acquisition programs.<br />\\n- Support the development of technology transition strategies, integrated risk assessments, and tailored acquisition strategies, acknowledging the unique aspects of medical product development.<br />\\n- Develop and improve processes for acquisition planning, milestone and documentation preparation, and reporting.<br />\\n- Assist project management offices in development of tailored acquisition strategies, preparation of milestone documentation, and briefings.<br />\\n- Support development of templates and checklists for acquisition processes.<br />\\n- Bachelors&rsquo; Degree in related discipline, Masters preferred.<br />\\n<br />\\n- Over 15 years&rsquo; experience and in-depth knowledge of the DoD acquisition process, the DoD 5000.01-02, and extensive project management skills.<br />\\n- Expert level knowledge of Joint Capabilities Integration and Development System (JCIDS); Planning, Programming, Budgeting, and Execution (PPBE); and DoD 5000 processes<br />\\n- Public Trust required<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 1:51:27 PM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Program Analyst\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231156\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Frederick\",\n                        \"zip\": \"21703\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<p><strong>REQUIRED SKILLS:</strong>&nbsp;</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Minimum 2 years related work experience.</li>\\n    <li>Manage the development, implementation, maintenance and support of automated business systems. Establish priorities and coordinate the activities of assigned staff.&nbsp;</li>\\n    <li>Supervise, develop and evaluate the performance of assigned technical staff.&nbsp;</li>\\n    <li>Provide technical guidance, assistance and training to members of the technical staff.&nbsp;</li>\\n    <li>Act as consultant to the technical staff, Business Analysts and users in order to provide an understanding of the inter-relationship between business requirements and systems designs.&nbsp;</li>\\n    <li>Participate in application design sessions.&nbsp;</li>\\n    <li>Participate in the evaluation, selection and implementation of vendor packaged solutions.&nbsp;</li>\\n    <li>Participate in the evaluation of hardware and software alternatives for assigned&nbsp;</li>\\n    <li>Strong project management skills from a technical background&nbsp;</li>\\n    <li>Experience with automated reporting tools&nbsp;</li>\\n    <li>Experience with SQL in MS-SQL and DB2 environments&nbsp;</li>\\n    <li>Experience with packaged solution implementations, data integration, ETL processes and tools, structured QA methods and practices&nbsp;</li>\\n    <li>Experience with the SDLC&nbsp;</li>\\n    <li>Ability to accommodate changing priorities, work in fast paced environment, manage multiple concurrent projects&nbsp;</li>\\n    <li>Strong written and verbal communication skills&nbsp;</li>\\n    <li>Previous supervisory experience, demonstrated leadership abilities&nbsp;</li>\\n    <li>Bachelor's degree in Technology, Business Administration, engineering, Information Technology, or liberal arts.&nbsp;</li>\\n</ul>\\n<p><strong>DESIRED SKILLS:</strong>&nbsp;</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>5 years of related work experience.</li>\\n    <li>PMP preferred or SAFe Scrum Master.&nbsp;</li>\\n</ul>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 1:38:44 PM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231157\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"font-family: Arial; font-size: 13px;\\\"><span style=\\\"color: black;\\\">Full Stack (Angular/.NET) Software Engineer</span><br />\\nLocation: Quincy, MA<br />\\nDuration: 3 months contract to hire<br />\\n<br />\\nREQUIRED SKILLS / QUALIFICATIONS:&nbsp;<br />\\n2-4 years of experience within software development.<br />\\nExperience with AngularJS, Angular, Bootstrap<br />\\nExperience building web applications using HTML, CSS, or JavaScript<br />\\nExperience with consuming, extending, and designing JavaScript frameworks<br />\\nExcellent organizational, problem solving, coding, unit testing and debugging skills<br />\\nKnowledge of OOP Concepts and Component Design<br />\\nExperience in .NET Technologies<br />\\nUse of APIs and understanding of HTTP and REST architecture<br />\\n<br />\\nDuties and Responsibilities:&nbsp;<br />\\n&bull; Contribute to the architecture, design, and coding of our next generation web-based Enterprise solution.<br />\\n&bull; Our internal applications are used by 1700+ employees to manage our business and drive our success.<br />\\n&bull; The platform for this new initiative is ASP.NET backed by the power of C# and Microsoft SQL Server.<br />\\n&bull; Work with our development team and BA's as we implement Microsoft TFS and develop a full SDLC framework.<br />\\n&bull; Assist in the maintenance of our existing applications. *This work will diminish as we develop and implement our next-gen code*.<br />\\n&bull; Contribute to the maintenance of our back-end processing which is written in VB.NET and C#. These applications run on our servers and provide the backbone of our systems.<br />\\n&bull; Participate and contribute to ad-hoc development projects as they arise.</span></p>\",\n                    \"date_added\": \"1/2/2020 10:06:11 AM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Full Stack (Angular/.NET) Software Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231158\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Quincy\",\n                        \"zip\": \"02171\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: #f9f9fa;\\\"><strong><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">SR. ETL TESTER </span></strong></p>\\n<p style=\\\"background: #f9f9fa;\\\"><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">As a Sr. ETL tester, you will apply your expertise with Big Data Technologies to ensure data accuracy throughout our university&rsquo;s complex data architecture. You will be responsible for ensuring that data has been accurately loaded from a source to the destination after business transformation. This role also involves the verification of data various middle stages that are being used between source and destination.&nbsp;</span></p>\\n<p style=\\\"background: #f9f9fa;\\\"><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">REQUIRED SKILLS:</span></strong>&nbsp;</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">8+ years experience in Quality Assurance or comparable database testing.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Strong data analytical skills: familiarity with data flows, data objects, and data transformation logic.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Advanced SQL scripting capabilities for Oracle Enterprise.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Experience in testing data warehouse applications is highly desired.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Having some level test automation experience is highly desired.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Excellent communication skills and ability to articulate the approach.</span></li>\\n</ul>\\n<p style=\\\"background: #f9f9fa;\\\"><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">DESIRED SKILLS:</span></strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">&nbsp;(</span><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Nice to Haves, preferred but not required):&nbsp;</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Experience in testing data warehouse applications is highly desired.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Having some level test automation experience is highly desired.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Experience with Informatica (Preferred)</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Experience with Informatica DVO, Query Surge, or comparable data validation tools (Preferred)</span></li>\\n</ul>\\n<p style=\\\"background: #f9f9fa;\\\"><span style=\\\"font-family: Arial, sans-serif; color: #32363a;\\\"><br />\\n<strong><span style=\\\"background: white;\\\">RESPONSIBILITIES AND DUTIES:</span></strong></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Analyze business requirements and transformation rules for conversion into data validation test scripts.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Design and create test strategies that leverage reusable and scalable ETL testing scripts and/or templates.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Code and execute complex SQL queries that validate the accuracy of big data content from source to target tables.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Execute testing of data analytics and data integration.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Track defects and report results.</span></li>\\n    <li><span style=\\\"background: white; font-family: Arial, sans-serif; color: #32363a;\\\">Partner and collaborate with Database Architect and Database peers.</span></li>\\n</ul>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 1:54:57 PM\",\n                    \"reply_to\": \"sdwyer@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. ETL Tester\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231159\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02138\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">Intelligence, Information and Services (IIS) is currently seeking a Cyber Engineer that is a key contributor in the implementation of cyber engineering. This engineer will be involved throughout the full lifecycle of the development program including CONOPs development, requirements development, architecture, design, integration, test, and certification of products. Travel may be required to support certification at remote sites as well as various activities during the development phase (short durations; less than 30% of time). This engineer will support the ongoing business process activities such as metrics collection and analysis, program tailoring, and process documentation updates and deployment.</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\"><br />\\n</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">Required Skills:</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Minimum 4 years&rsquo; prior relevant experience required</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Working knowledge of SOC or supporting environments such as a cyber range</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Technical Writing including development of Use Cases, SOPs, or WIs related to Range operational roles and tools/applications</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Working knowledge of Cyber Range training and related Scenarios</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Experience configuring, integrating, and/or testing any of the following applications or similar solutions:</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o VMWare (vSphere, Horizon, ESXi)</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Cisco CGR1000</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Netscout TestStream Management/nGenius</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Ixia BreakingPoint/PerfectStorm</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Defining and implementing security requirements based on industry standards</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Self-starter, thrives in a small team environment</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Demonstrated ability to communicate verbally and in writing</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\"><br />\\n</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">Desired Skills:</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Experience with MagicDraw</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Experience with SysML modeling</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Willingness to travel to the Middle East/North Africa (MENA) region</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Experience with DevOps/DevSecOps; Automation (Puppet, Ansible, Chef); Infrastructure-as-Code</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Operator or analyst functions such as Forensics, Malware, Penetration Testing, or Threat Hunting</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">Incident response and recovery experience</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">&bull; Experience configuring, integrating, and/or testing any of the following applications or similar solutions:</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o IBM SIEM (Qradar),</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o ForcePoint (CDS,SureView Insider Threat, DLP),</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Cloudera (HortonWorks),</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o NetScout (Infinistream, Ngenius),</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o ThreatQuotient (ThreatQ),</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Airwatch,</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">o Gemalto (SafeNet)</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\"><br />\\n</span></div>\\n<div class=\\\"app__top___277yO\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\"><span style=\\\"background-color: #ffffff; font-size: 12px; font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;\\\">Education Requirements: Requires a degree in Science, Technology, Engineering or Mathematics (STEM) and minimum of 4 years prior relevant experience or 12 years of experience in lieu of education</span></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 2:52:48 PM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cyber Security Engineer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231140\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling\",\n                        \"zip\": \"20166\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title\\n    {\\n    font-weight: bold;\\n    }\\n</style>\\n<p><strong>PURPOSE of POSITION:</strong> <br />\\n<br />\\nThe Process Analyst works in conjunction with the business units to understand,\\nmap, elicit, document and maintain the processes for that group. The Process\\nAnalyst is responsible for process mapping from an end-to-end process\\nperspective to ensure CMMI, ISO, ITIL, and other industry best practices are\\ndeveloped and maintained. The Process Analyst promotes a continuous improvement\\nenvironment to ensure the process is consistently enhanced and streamlined. The\\nProcess Analyst performs product and process quality assurance reviews and\\nreports on compliance and provides recommendations for improvements to the business\\nunits, and the process and quality program as a whole. In addition, analyzes\\ncurrent business processes and identify potential or existing problems. The\\nProcess Analyst performs data management activities of the process asset\\nlibrary to include promoting artifacts through the document lifecycle, quality\\nreviews, and maintaining a master artifact library. The Process Analyst uses\\nquantitative analysis methodology to perform data, cost and benefit, and/or\\nprocess measurement analysis. The Process Analyst researches industry trends\\nfor application of process improvement techniques and best practices. The\\nProcess Analyst may train key users on new processes. <br />\\n<br />\\nMAJOR RESPONSIBILITIES/ESSENTIAL FUNCTIONS: <br />\\n<br />\\n1. 50%: Works with business units to understand, map, elicit, document, and\\nmaintain business processes. Ensures process mapping from an end-to-end process\\nperspective is achieved to ensure CMMI, ISO, ITIL, and industry best practices\\nare achieved and maintained. In addition, works with business units to enhance\\nand promote a continuous improvement and a process streamline environment. <br />\\n2. 20%: Performs quality assurance of work products and processes to ensure\\ncompliance.<br />\\n3. 20%: Develops and maintains a customer-focused relationship with business\\nstakeholders by exhibiting a high level of collaboration, timely communication\\nand responsiveness.<br />\\n4. 10%: Maintains the process asset library and ensures that the document\\nmanagement lifecycle is being maintained.<br />\\n<br />\\nESSENTIAL QUALIFICATIONS<br />\\n<br />\\nBachelor&rsquo;s Degree<br />\\nRelated Work Experience: 4-6 years<br />\\n<br />\\n<strong><span style=\\\"font-family: Calibri, sans-serif;\\\">Must have comprehensive\\nworking knowledge in ITIL and ITSM</span></strong></p>\\n<br />\\n<p>\\n</p>\",\n                    \"date_added\": \"12/16/2019 2:08:29 PM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Process Analyst\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231166\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"text-decoration: underline; font-size: 12pt; font-family: 'Times New Roman', serif;\\\">DevOps/Cloud Engineer</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">DevOps/Cloud Engineer is required for a contract position\\n    in Windsor Mills, MD.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Developing better and more efficient ways of delivering\\n    solutions that meet business objectives.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Automating management and orchestration tasks.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Building CI/CD pipelines for applications and\\n    deployment to containers and server environments.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Automating Linux /CentOS administration activities and\\n    collaborate with the development and test teams on continually improving\\n    our processes</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Working with Scrum/Kanban teams to build and support\\n    software releases and infrastructure improvements through improved CI/CD\\n    processes.</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Required Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience with DevSecOps and IaC tools such as Jenkins,\\n    Ansible, Chef, Puppet, or SaltStack (Jenkins, and Ansible preferred)</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience and understanding of scripting programming\\n    such as Python</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Should include versions and environment sizes for\\n    software systems if applicable.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience with AWS and/or Azure.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Ability to obtain a Public Trust</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Desired Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Knowledge of DevSecOps processes and experience\\n    building and supporting CI/CD pipelines using DevSecOps tools</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Knowledge of containers and hands-on experience with\\n    container technologies such as Docker, Kubernetes, AWS ECS and AWS EKS</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience working with JIRA, Confluence, ServiceNow,\\n    and SharePoint</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience supporting and managing CI/CD engines such\\n    as CloudBees Jenkins and CircleCI</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-left: 0.5in; line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">&nbsp;</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Duration: </span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">6 months</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">PLEASE NOTE: 3RD\\nPARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION.\\n&nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\\n<p class=\\\"MsoNormal\\\">&nbsp;</p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"12/16/2019 4:23:34 PM\",\n                    \"reply_to\": \"gbishop@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"DevOps Cloud Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231170\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Windsor Mill\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"text-decoration: underline;\\\">Systems Engineer</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Systems Engineer is required for a 6-month contract to hire in Washington, D.C. </li>\\n    <li>Provides technical application support, integration, and VMWare.</li>\\n    <li>Good chance of perm hire. </li>\\n    <li>Must be U.S. citizen and ability to obtain a Public Trust Clearance. </li>\\n</ul>\\n<p><strong>Responsibilities:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Install and configure application servers.</li>\\n    <li>Monitor, troubleshoot, and fix the application environment.</li>\\n    <li>Support application migrations and deployments.</li>\\n    <li>Support of Client/Serverand n-tierWeb applications</li>\\n    <li>Perform VM provisioning, management, and configuration.</li>\\n    <li>Implement infrastructure for high availability environments.</li>\\n    <li>Work closely with database and system administrators, as well as server/storage and network teams, to deliver a stable environment for hosted applications.</li>\\n    <li>Perform application upgrades.</li>\\n    <li>Install and maintain SSL certificates.</li>\\n    <li>Administer user accounts.</li>\\n    <li>Maintain SDS laptops with updates and anti-virus protection.</li>\\n</ul>\\n<p><strong>Required Skills:</strong></p>\\n<p>Must be able to support some or all of the following:</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Java/JEE</li>\\n    <li>.Net</li>\\n    <li>Windows 2008, 2012, 2016 OS</li>\\n    <li>Apache/Tomcat</li>\\n    <li>IIS</li>\\n    <li>Vulnerabilities scan tools such as Nessus, Guardium, Splunk</li>\\n    <li>Sharepoint, MOSS</li>\\n    <li>MoveIt</li>\\n    <li>SSL Certs</li>\\n    <li>Active Directory FS- single sign on configuration </li>\\n</ul>\\n<p><strong>Duration:&nbsp;</strong>6-month contact to hire</p>\\n<p>PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</p>\",\n                    \"date_added\": \"12/17/2019 12:32:26 PM\",\n                    \"reply_to\": \"gserra@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231171\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20002\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<br />\\n<strong>Job Description:</strong><br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Under limited supervision, handles feature enhancement of a React based UI that provides document access and upload functionality for internal and external users.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;React experience is required.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The essence of the project is that these two workers are going to create a new React UI.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;This team currently manages the application that is a document viewer for LM employees and 3rd party agents.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The current document view UI is a combo on 3-4 UIs.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;They are looking to bring onboard 2 contractors to build out a new comprehensive UI that combines all current UIs.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;This will be built in React.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Overall tech stack- React expert, strong CSS, HTML and other UI skills. Full stack skills in JSON/Rest<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The current team is very light in UI and mostly works in APIs.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;These two developers need to be able to hit the ground running and be React experts.<br />\\n<br />\\n&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The plan is to have the new UI stood up by mid-summer so the team can retire the legacy current document viewer UI and other apps through the end of 2020.\",\n                    \"date_added\": \"12/16/2019 11:19:04 AM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Full Stack Developer \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231173\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dover\",\n                        \"zip\": \"03820\",\n                        \"state\": \"NH\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"text-decoration: underline; font-size: 12pt; font-family: 'Times New Roman', serif;\\\">IT Project Manager</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">An IT Project Manager is required for a contract position\\n    in Cambridge MA.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">The Project Manager will use various project management\\n    disciplines to guide and plan the development of Cloud Services&nbsp;and\\n    Identity Access Management&nbsp;across the ecosystem</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Required Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Bachelor&rsquo;s\\n    degree in a related field and/or 2-3 years related experience.</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Experience\\n    with technical project management discipline and practices.</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Experience\\n    with and Cloud integrations, and security cloud service providers such as\\n    Azure, AWS, GCP&nbsp;</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Knowledge\\n    of information security principles&nbsp;</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Ability\\n    to prioritize tasks and hold team members accountable</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Desired Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">PMI\\n    certification is a plus.</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Knowledge\\n    or Experience managing Enterprise Identity and Access Management projects\\n    with a basic understanding of IAM principals and technologies such as the\\n    Microsoft identity stack (Enterprise Active Directory, IAM in the Cloud,\\n    Azure AD, AD Connect, Azure Identity Services) a plus.&nbsp;</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif; color: black; background: white none repeat scroll 0% 0%;\\\">Agile,\\n    Lean and/or Facilitation certification is a plus.</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-left: 0.5in; line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">&nbsp;</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Duration: </span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">3 month contract <br />\\nPLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE\\nFOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"12/16/2019 4:45:19 PM\",\n                    \"reply_to\": \"gbishop@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"IT Project Manager\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231174\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02138\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Project Manager</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>A Project Manager is needed for a 12-month contract in Riverwoods, IL.</li>\\n    <li>The Project Manager will be responsible for day-to-day project management of software development projects. This role will include project planning, tracking, and reporting</li>\\n    <li>Work for a global information services company</li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Required Skills</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Minimum 3 plus years overall experience working in software development projects</li>\\n    <li>Minimum of 2 years experience in project management roles.</li>\\n    <li>Strong experience with Agile software development practices required</li>\\n    <li>Strong experience with Excel; Power Point; Jira or other requirements management and Scrum</li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Desired Skills</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Experience with formal software estimation techniques and/or metrics collection and reporting a plus</li>\\n    <li>Experience with requirements backlog development and elaboration a strong plus</li>\\n    <li>Experience with Scaled Agile Framework and or Lean Project Management a strong plus</li>\\n    <li>Agile or Scrum Master Certification a plus</li>\\n    <li>Bachelor&rsquo;s degree in Computer Science or equivalent degree strongly preferred.</li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;<span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"12/16/2019 5:40:25 PM\",\n                    \"reply_to\": \"mmonroe@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231175\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Riverwoods\",\n                        \"zip\": \"60015\",\n                        \"state\": \"IL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Associate Degree or equivalent in related field Knowledge of manufacturing processes and equipment.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Ability to work in a team environment and to interface with other groups and functions.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Experience with MS Office Suite especially Word, Excel and PowerPoint.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Strong oral and written communication skills. Familiarity with or ability to learn Electro/Mechanical assembly and processes.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Familiarity with electrical and mechanical engineering drawings and bill of materials. Some experience or knowledge of manufacturing industry.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Demonstrated knowledge of lean manufacturing techniques and principles.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Ability to generate and update Manufacturing Work Instructions</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>AutoCAD knowledge. Ability to be hands on in order to prove out assembly build processes.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Desired:</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>SAP experience</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Degree</p>\",\n                    \"date_added\": \"12/17/2019 12:24:56 PM\",\n                    \"reply_to\": \"jarno@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Manufacturing Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231185\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Archbald\",\n                        \"zip\": \"18403\",\n                        \"state\": \"PA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<strong>Field Service Engineer - Medical Lasers<br />\\nBillerica, MA<br />\\nPermanent</strong><br />\\n<br />\\n<strong>\\nResponsibilities:<br />\\n</strong>\\nAct as an expert in the field, developing resolution to critical issues; resolve complex issues in creative and effective ways.<br />\\nManipulate and manage schedule (s) to best serve customer needs and gaps.<br />\\nPro-active in finding methods to improve reliability/ manufacturing/engineering and share with Management and the department.<br />\\nWork closely with ASM and RSM to identify customers for upgrades, new purchases, and additional customer training. CC Manager on all leads.<br />\\nIdentify error codes and re-occurring problems, or odd troubleshooting solutions to direct supervisor and R&amp;D to solve problems and directly contain department material expenses and company costs. Send e-mails with detailed photos identifying problems.<br />\\nProvide professional, courteous, prompt and skilled technical service to customers.<br />\\nResponsible for schedule board maintenance and proactive scheduling.<br />\\nUse communication and technical skills to make the customer interaction a pleasant and memorable experience.<br />\\nResponsible for service repairs and maintenance of aesthetic laser equipment, as well as participating in software validation &amp; verification.<br />\\nResponsible for the operational quality of the system and instructing customers on the operation and maintenance of the system. (Service sheet)<br />\\nAct as company liaison with customers on administrative and technical matters with in- house dispatch group and manufacturing personnel.<br />\\nReceives extensive technical training on overall theory of operation, optimization, maintenance and troubleshooting of Lasers from manufacture.<br />\\nResponsible for documenting all service activities in compliance with FDA requirements.<br />\\nContinually promote service contract revenue, new products.<br />\\nTimely submission of RMAs, closing calls, and expense reports (meeting company guidelines). Minimum supervision required here.<br />\\n<br />\",\n                    \"date_added\": \"12/16/2019 1:38:16 PM\",\n                    \"reply_to\": \"rwells@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Field Service Engineer - Medical Lasers\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231176\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title\\n    {\\n    font-weight: bold;\\n    }\\n</style>\\n<p style=\\\"font-weight: normal; font-size: 10pt;\\\"><strong><span class=\\\"bd_title\\\" style=\\\"background-color: #ffffcc;\\\"></span></strong></p>\\n<p style=\\\"font-weight: normal; font-size: 10pt;\\\"><strong><span class=\\\"bd_title\\\" style=\\\"background-color: #ffffcc;\\\">JOB DESCRIPTION:</span></strong></p>\\n<p style=\\\"font-size: 10pt; font-weight: normal;\\\"><strong>&nbsp;<br style=\\\"background-color: #ffffcc;\\\" />\\n<br style=\\\"background-color: #ffffcc;\\\" />\\n<span style=\\\"background-color: #ffffcc;\\\">Softworld&rsquo;s client is looking for a Customer Service Representative who is passionate about giving superior customer service.</span><br style=\\\"background-color: #ffffcc;\\\" />\\n<br style=\\\"background-color: #ffffcc;\\\" />\\n<strong style=\\\"background-color: #ffffcc;\\\">Key Responsibilities:</strong><br style=\\\"background-color: #ffffcc;\\\" />\\n</strong></p>\\n<ul style=\\\"background-color: #ffffcc;\\\">\\n    <li><strong>Strong knowledge and experience with business or ERP applications. Peoplesoft is a plus</strong></li>\\n    <li><strong>Receive 50-60 inbound calls from internal or external customers daily</strong></li>\\n    <li><strong>Gather customer information, determine the technical nature of the issue, and triage issues to appropriate IT professional for resolution</strong></li>\\n    <li><strong>Provide support for our clients in a timely manner to ensure customer satisfaction</strong></li>\\n    <li><strong>Ability to prioritize during significant outage</strong></li>\\n    <li><strong>Drive to meet or exceed daily performance metrics related to key performance indicators</strong></li>\\n    <li><strong>Be personable and maintain upbeat, positive attitude while communicating with the customers</strong></li>\\n</ul>\\n<strong><strong style=\\\"background-color: #ffffcc;\\\">Required Skills:</strong><br style=\\\"background-color: #ffffcc;\\\" />\\n<ul style=\\\"background-color: #ffffcc;\\\">\\n    <li>2+ years of customer service experience</li>\\n    <li>Strong verbal and written communication skills</li>\\n    <li>Office 365 experience including Outlook, OneDrive, MS Office Suite</li>\\n    <li>Detail-oriented</li>\\n    <li>Time management</li>\\n    <li>Ability to adapt and work in a team environment</li>\\n</ul>\\n<br />\\nTop 3 Technical Skills (confirmed):</strong>\\n<p>&nbsp;</p>\\n<ul style=\\\"font-size: 13.3333px; font-weight: normal;\\\">\\n    <li>2+ years of customer service experience</li>\\n    <li><span style=\\\"font-size: 13px;\\\">Office 365 experience including Outlook, OneDrive, MS Office Suite (Word &amp; Excel, don't need PowerPoint)</span></li>\\n    <li>Detail-oriented and good time management</li>\\n</ul>\\n<ul style=\\\"font-weight: normal; font-size: 13.3333px;\\\">\\n    <li></li>\\n</ul>\\n<div></div>\\n<div><br />\\n</div>\",\n                    \"date_added\": \"12/17/2019 3:26:31 PM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Customer Care Representative \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231189\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"11590\",\n                        \"state\": \"NY\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Senior Recruiter</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Senior Recruiter needed for a Contract role in Framingham, MA</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Will manage full recruitment cycle </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Influence, consult, collaborate and be a thought leader to Hiring Managers, Human Resources Business Partners and Talent Acquisition leaders and peers </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Develop actionable strategies and staffing plans to support hiring needs, leverage internal and external resources to meet plans </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Source, engage and assess talent </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Build robust talent pipelines </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Deliver best in class hiring experience to all stakeholders including candidates, Hiring Managers and other business partners </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Communicate plans and activities proactively </span>\\n    <p><strong>Required Skills:</strong></p>\\n    </li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">5+ years proven, strong Full Recruitment Lifecycle experience, corporate experience strongly preferred, recruitment agency experience a plus </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience recruiting within the IT space is a must, within the security space is a major bonus</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Demonstrated sourcing experience to include internet, research and cold calling</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Must have &ldquo;hunter&rdquo; mindset </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Must have a strong ability to influence stakeholders</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Superior assessment and influencing skills </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Developed business acumen and intellectual curiosity </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Strong communication skills, both verbal and written </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Proven experience communicating with all levels of leadership; exhibits recognizable, confident executive presence </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Strong organizational and follow through skills, with focus on attention to detail </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Ability to manage multiple searches/projects while remaining flexible to changing priorities </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Bachelor&rsquo;s Degree or equivalent experience</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Duration: 12 Month+ Contract</span></strong></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"color: black; font-family: Arial, sans-serif;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span><strong></strong></p>\\n<p><strong>&nbsp;</strong></p>\",\n                    \"date_added\": \"12/18/2019 4:12:23 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Recruiter\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231196\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Framingham\",\n                        \"zip\": \"01701\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"\",\n                    \"date_added\": \"12/30/2019 2:01:13 PM\",\n                    \"reply_to\": \"sstalcup@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Information Assurance Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231202\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dedham\",\n                        \"zip\": \"02026\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><strong><span style=\\\"font-family: Arial;\\\">Technical Systems Analyst (Java &amp; COBOL)<br />\\n<br />\\nSan Antonio, TX</span></strong></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><strong><span style=\\\"font-family: Arial;\\\">12+ Month Contract</span></strong></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\"><strong>Overview:</strong>&nbsp; Looking for a lead Tech System Analyst for San Antonio Downtown office for Bank Operations Department&nbsp;</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\"><strong>Experience</strong>:</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Understanding of Bank backend systems like Fidelity, FDR, MPTS (MasterCard Payment Transaction Services)</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Experience resolving Bank Regulation and Compliance Gaps</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Experience with Vendor selection</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Experience with Bank wide servicing functions like Disputes, Debt Collection, Military Benefits...etc</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-High level understanding of Bank Products like Credit Card, Deposits, Consumer Lending</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Previous Development Experience</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Exposure to Bank Middle tier infrastructure</span></p>\\n<p style=\\\"font-size: 13.3333px; font-family: Arial, Verdana;\\\"><span style=\\\"font-family: Arial;\\\">-Strong Experience with Banking infrastructure systems</span></p>\\n<div><span style=\\\"font-family: Arial;\\\"><br />\\n</span></div>\",\n                    \"date_added\": \"12/19/2019 4:46:12 PM\",\n                    \"reply_to\": \"bcarnes@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Technical Systems Analyst (Java & Cobol) \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231203\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \" San Antonio\",\n                        \"zip\": \"78288\",\n                        \"state\": \"TX\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>\\n<p><strong>Full-Stack .NET Developer</strong></p>\\n<p><strong>Location:</strong> Marlborough, MA</p>\\n<p>Multiple Openings:</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>1 Senior Opening</li>\\n    <li>3 Mid-level Openings</li>\\n    <li>1 Associate/Support Opening</li>\\n</ul>\\n<p><strong>Key Tech Skills:</strong></p>\\n<p>1) .Net, (ASP, VB, C# are the most important)</p>\\n<p>2) SQL Server - be able to troubleshoot and perform database work&nbsp;</p>\\n<p>3) Experience with at least 1 JavaScript framework. Preferably Angular</p>\\n<p>Pluses: .NET Core, ASP.NET Core, DevOps understanding, CI/CD, Jenkins, Octopus for deployment</p>\\n<p><strong>Essential Functions:</strong></p>\\n<p>Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions.&nbsp;</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Design, develop and test program functionality for new and existing application or programmed solutions assigned by IS management</li>\\n    <li>Builds user interface applications and back-end databases using various programming and scripting languages</li>\\n    <li>Lead in the development of functional specifications, which articulate clear and concise project deliverables consistent with the user expectations.</li>\\n    <li>Creates functional specifications for Internet and web-based projects.</li>\\n    <li>Assist in performing technical services necessary to support the continuous delivery of service including; applications use auditing, project tracking, database administration, data dictionary generation, development of software utilities, and application development procedures</li>\\n    <li>Devising possible solutions to anticipate problems</li>\\n    <li>Writing detailed documentation for the operations of program by operations group and development support.</li>\\n    <li>Perform other job-related duties as assigned by Managers(s).</li>\\n</ul>\\n<br />\\n</div>\",\n                    \"date_added\": \"12/23/2019 9:06:47 AM\",\n                    \"reply_to\": \"cdamore@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \".Net Developer (Various experience levels)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231204\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"01752\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<strong>Python/Django Developer - Direct-Hire or Contract-to-Hire - Boston, MA&nbsp;<br />\\n</strong><br />\\n<strong>Job Description:&nbsp;</strong><br />\\nThe Full Stack Software Engineer will deliver on key technology initiatives in direct alignment with the business strategies of the Private Investment teams, covering Private Equity, Real Estate and Natural Resources. This candidate is primarily focused on designing, developing and maintaining tools, systems, and analytics for our business partners while working within a scrum team.&nbsp;<br />\\n<ul>\\n    <li>Work with Scrum Masters, Product Owners, and peer developers to interactively create technical solutions that meet business and technical requirements</li>\\n    <li>Handle end-to-end development, including coding, testing, and debugging during each cycle, which adheres to the acceptance criteria</li>\\n    <li>Create and maintain technical documentation</li>\\n    <li>Participates in code reviews; identifies defects and resolves collaboratively with development team via Bitbucket.</li>\\n    <li>Estimate size and implementation of backlog items, translate into engineering design and logical units of work (tasks)</li>\\n    <li>Develops domain knowledge (Private Investment data and processes) and applies to development of solutions.</li>\\n    <li>Builds positive relationships with key investments business partners and users to understand, gather, and develop products to meet their needs.</li>\\n</ul>\\n<div><strong>Top Technical Skills:&nbsp;</strong><br />\\n<ul>\\n    <li>Python/Django&nbsp;</li>\\n    <li>Angular 2+&nbsp;</li>\\n    <li>SQL&nbsp;</li>\\n    <li>Power BI&nbsp;</li>\\n</ul>\\n</div>\\n<strong>Required Skills:</strong><br />\\n<ul>\\n    <li>Bachelor's degree in technical or business discipline or equivalent experience</li>\\n    <li>3-5 years of professional development experience&nbsp;&nbsp;</li>\\n    <li>Full stack development experience using technologies like Python, Django, Flask, Node.js, RESTful services, Angular/React, JavaScript, Pandas, Conda, Matlab, R, SQL, RDBMS, Power BI</li>\\n    <li>Experience with Git/Bitbucket.</li>\\n    <li>Experience working with Agile methodologies (Scrum, Lean Startup, XP) and cross-functional teams (Engineers, Product Owners, and Scrum Masters)</li>\\n    <li>The ideal candidate will be dedicated, demonstrate initiative and be a logical thinker</li>\\n</ul>\\n<strong>Preferred Skills:</strong><br />\\n<ul>\\n    <li>Exposure to asset management or experience in a financial service firm</li>\\n    <li>Familiarity with business intelligence tools and reporting solution (PowerBI, Tableau etc.).</li>\\n    <li>Knowledge of Cloud platform technologies (AWS, Azure).</li>\\n    <li>Experience with CI/CD pipeline, and DevOps.</li>\\n    <li>Familiar with Design Thinking, Behavior and Test-Driven Development&nbsp;</li>\\n</ul>\\n<div><br />\\n</div>\",\n                    \"date_added\": \"12/30/2019 11:29:14 AM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Python/Django Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231205\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>DESCRIPTION</strong></p>\\n<p>The successful candidate will be responsible for ensuring the accuracy and timely closing of the general ledger and assist in the financial reporting efforts of the accounting team. Coordinate the month and year end reporting to Division as well as interim and year end audits. Ensure all revenue, cost of sales and G&amp;A related activity is accurately reported and communicated to management. Ensure financial accounts are reconciled; issues investigated and resolved timely enabling accurate financial reporting. This position is critical to the overall control environment.</p>\\n<p><strong>ESSENTIAL DUTIES AND RESPONSIBILITIES</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Demonstrated ability to meet assigned deadlines and deliver on goals and objectives</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Demonstrated ability to analyze, record and report all cost of sales, and General &amp; Administrative transactions in a timely, complete and accurate manner</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Demonstrated ability to analyze, record and report as necessary, accounts receivable and revenue related transactions in a timely, complete and accurate manner</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ensure timely and accurate reconciliation of general ledger accounts. Follow up on reconciling items to ensure they are being addressed in a timely fashion</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Actively participate in the month end reporting and review and analysis of financial reports; initiate actions resulting from such reviews</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proactively conduct independent analysis to identify trend changes or opportunities for process improvements and make recommendations based on analysis and status of reserves, assets and liabilities</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Develop strong relationships with the business through solid business acumen; respectfully challenge the business and offers solutions to resolve issues in an effective, cost efficient manner</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proactively develop analysis and reporting tools in support of the monthly closing and review process</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proactivity and independently identify any risk or opportunities to the balance sheet and income statements along with recommendations to resolve or reduce risk exposure</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assist in the formulation and preparation of monthly and annual reporting requirements</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assist in the coordination on internal and external audits</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Participate/coordinate accounting or cross-business unit finance projects to identify and implement process improvements and process streamlining</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assists in ensuring the internal control documentation is in place and is being followed</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Demonstrated ability to challenge the status quo to improve processes, reduce manual work efforts and improve timeliness of reporting</p>\\n<p><strong>Education: Bachelor&rsquo;s degree in Accounting required</strong></p>\\n<p><strong>JOB QUALIFICATIONS</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2 to 4 years previous accounting/audit experience in public or private accounting preferred</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CPA/Working towards the license preferred</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience with complex cost and revenue transactions with multi-national company.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong reporting and data querying capabilities&nbsp;&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience with JD Edwards E1 is preferred</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thorough knowledge of MS Office Suite (Word, Excel, PowerPoint, Access)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong analytical skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Demonstrated effective ability to respectfully challenge business unit partners to ensure accounting for affected transactions is correct and done in accordance with company standards.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Detail oriented approach to work, confidentiality, good problem solving skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to work independently and in a team environment</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to handle multiple tasks in a fast paced environment</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Willingness to take initiative and to follow through on projects</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Must be proactive and recommend solutions when discussing problems and issues Other Knowledge, Skills, Abilities or Certifications: (First list requirements, followed by preferences.)</p>\",\n                    \"date_added\": \"12/18/2019 3:14:20 PM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Accountant\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231206\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10005\",\n                        \"state\": \"NY\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p>Softworld is seeking a self-motivated <strong>Senior .NET Developer</strong> for our client located in Franklin, TN. In this role you will need a proven track record building high quality, scalable web applications and APIs. Skills needed include C#, ASP.NET MVC, jQuery, JavaScript, CSS, and HTML. Mature work environment, no micro management.&nbsp;</p>\\n<p><strong>Required Skills:</strong>&nbsp;</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Bachelor&rsquo;s degree in computer science/related field or equivalent experience</li>\\n    <li>7+ years developing web applications utilizing C#, ASP.NET MVC, jQuery, JavaScript, CSS, HTML</li>\\n    <li>5+ years hands on experience with Microsoft SQL Server and SQL</li>\\n    <li>2+ years hands on experience with Entity Framework or other ORM technologies</li>\\n    <li>Experience with REST based API development with XML/JSON</li>\\n    <li>Experience with Knockout or Angular</li>\\n    <li>Ability to determine root cause analysis and resolution of complex performance/stability related issues</li>\\n    <li>Ability to work with peers in a highly collaborative, fast-paced environment</li>\\n    <li>Strong ability to learn quickly and adapt to change</li>\\n    <li>Strong listening, detail-oriented thinking, and creative problem-solving</li>\\n</ul>\",\n                    \"date_added\": \"12/20/2019 5:04:00 PM\",\n                    \"reply_to\": \"jbelmas@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Software Engineer (.NET)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231208\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Franklin\",\n                        \"zip\": \"37069\",\n                        \"state\": \"TN\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title\\n    {\\n    font-weight: bold;\\n    }\\n</style>\\n<p style=\\\"font-family: Arial, Verdana; font-size: 10pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal;\\\">&nbsp;</p>\\n<br />\\n<p style=\\\"font-family: Arial, Verdana; font-size: 10pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: bold;\\\">Job Description:</p>\\n<p style=\\\"font-family: Arial, Verdana; font-size: 10pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: bold;\\\">&nbsp;</p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>Title: Program Cost Schedule and Control Administrator</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>Responsibilities:</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>POSITION SUMMARY</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>The candidate will be working as part of the Strategic Systems program management team in a dynamic, high volume department. The candidate will be involved in preparation of proposals, financial reports, baseline budgets, schedules and variance analysis.&nbsp; Successful completion of assignments will require interfacing with internal and external contacts regarding various aspects of the assigned program. The ideal candidate is a self starter who works well independently and in groups.&nbsp; He or she must display strong analytical and problem solving skills with a high level of accuracy and productivity.</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>ESSENTIAL FUNCTIONS</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>Supports program office in pursuit and management of business opportunities by:</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Preparing cost volumes for proposal submission (which includes but is not limited to understanding WBS&nbsp; &nbsp; structures, cost elements, preparation of basis of estimate and the ability to review a solicitation for compliance requirements)</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Supporting active contracts by providing financial data and administrative support in fulfilling Contract Data Requirements List(s)</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Using information systems (PeopleSoft ERP and Data Warehouse) to create and manage budget plans for programs and subtasks on a weekly/monthly basis and to respond proactively to address potential problems/anomalies</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Ensuring adequate funding availability by maintaining accurate records of expenditures, directing preparation of expenditure projections, and proactively submitting timely requests for additional funding and/or senior management risk authorization when applicable.&nbsp; Communicating with customer and subcontractor financial staff as required to track and report financial progress</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Monitoring the completion of project deliverables and ensure compliance with the internal quality management system requirements</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Supporting program teams in procurement management and tracking</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Interfacing with Contracts Administration and other relevant departments to facilitate program management</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Forecasting new business and resource management requirements based on available information</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>&iquest;&nbsp; Proactively establishing priorities, executing responsibilities with minimal supervision, and meeting deadlines in a high-pressured environment</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>Qualifications:</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong><br />\\n</strong></span></p>\\n<p><span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\"><strong>Bachelors degree and 2-5 years of related experience in defense, high tech or government contracting sector.&nbsp; Familiarity with spreadsheets, principles of financial tracking, scheduling and other program management tools including an intermediate to advanced skill level in Excel.&nbsp; Experience with Microsoft Office including Microsoft Project is preferred.&nbsp; Must demonstrate a high level of attention to detail and ability to think critically and independently in a fast paced environment.&nbsp; Excellent written and oral communication skills required.&nbsp; The exceptional candidate will have a working knowledge of Earned Value Management concepts and the principles of program management.&nbsp; Candidates must be US Citizens, are subject to a government security investigation and must meet eligibility requirements for access to classified information.</strong></span></p>\",\n                    \"date_added\": \"12/19/2019 5:31:27 PM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Program Cost Schedule and Control Admin\",\n                    \"category\": \"Creative\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231216\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02139\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"157\",\n                        \"SubCategoryName\": \"Creative\",\n                        \"CategoryID\": \"30\",\n                        \"FolderGroupID\": \"168\",\n                        \"CategoryName\": \"Creative\",\n                        \"FolderGroup\": \"Creative\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Senior Analog Design Engineer</strong></p>\\n<p>In this position you will work closely with multi-disciplinary teams designing, developing, and verifying electronics for state-of-the-art sensors and actuators used in a wide array of applications.&nbsp; These projects are executed with a heavy emphasis on high performance, low size, weight, and power consumption.&nbsp; As a senior member of the Instrumentation, Analog, &amp; Power Electronics Group you will help shape hardware architectures and lead electronics development activities by applying sound engineering and project management principles.</p>\\n<p><strong>Required Qualifications:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>BSEE and 7+ years of experience or MSEE degree and 5+ years of experience in the design and development of analog and mixed signal circuitry and systems.</li>\\n    <li>Schematic capture and printed circuit board layout experience.</li>\\n    <li>Ability to perform circuit simulation using Spice or variants.</li>\\n    <li>System modeling and analysis experience using MATLAB, Simulink, or other comparable tools.</li>\\n    <li>Preferred Qualifications: </li>\\n    <li>Expertise in one or more of the following areas: low-noise electronics, analog-digital conversion, methods of synchronous detection, analog and digital signal processing, phase-locked loops, motor control and drive circuits.</li>\\n    <li>Experience in integration and debugging of complex sensor systems.</li>\\n    <li>Experience in design for harsh environments as embodied in common commercial and military standards (e.g. RTCA/DO-160, MIL-STD-810, etc.)</li>\\n    <li>Knowledge of system grounding/shielding and EMI mitigation techniques</li>\\n    <li>Experience working with discrete semiconductor devices, such as: MOSFETs, IGBTs, BJTs, JFETs, diodes, etc.</li>\\n    <li>Experience working with inertial instruments.</li>\\n</ul>\\n<p><strong>Security Clearance Required:&nbsp;</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Applicants selected for this position are required to have an active government security clearance.</li>\\n</ul>\",\n                    \"date_added\": \"12/19/2019 10:10:02 AM\",\n                    \"reply_to\": \"creilly@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Analog Design Engineer \",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231217\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02139\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background-color: #ffffff;\\\"><strong style=\\\"font-size: 10pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Title: UI/UX Designer</span></strong></p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Location: Windsor Mill, MD</span></strong></p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Position Type: 9+ Month Contract</span></strong></p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Overview:</span></strong><strong></strong></p>\\n<p style=\\\"background-color: #ffffff;\\\">The User Interface (UI) /User Experience (UX) Designer supporting the Provider Enrollment and Chain of Ownership System (PECOS) 2.0 Redesign program will be responsible for the user interface design of our customer-facing applications and websites. Will have business knowledge that provides the ability to translate business objectives and requirements into a cohesive and usable end product.</p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong>Note:</strong>&nbsp;This position is not a Web Designer or Web Developer. Candidate must have hands-on experience with Axure, Balsamiq, and/or Sketch and be willing to be onsite in order to be considered.</p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong>Responsibilities</strong></p>\\n<p style=\\\"background-color: #ffffff;\\\">Responsible for a full lifecycle of Responsive design, including: content-first design, logic flows, storyboards, personas, wireframes, low fidelity mock-ups, sitemaps, high fidelity prototypes, and UI specifications, to provide end-to-end dynamic, database driven design flows</p>\\n<p style=\\\"background-color: #ffffff;\\\">Construct page design using prototyping tools such as Axure, Balsamiq and/or Sketch.</p>\\n<p style=\\\"background-color: #ffffff;\\\">Working in an Agile Software Development environment, team with product owners, business analysts, and product development to clarify and define business requirements as they apply to the UI.</p>\\n<p style=\\\"background-color: #ffffff;\\\">Craft UX engagements, particularly in a graphical user interface (GUI) environment, that exceed customer expectations by partnering with key product stakeholders to understand and support product business goals, advocating human-centered design (HCD) industry best practices</p>\\n<p style=\\\"background-color: #ffffff;\\\">Analyze available usage metrics for trends, patterns, issues, and opportunities for UX optimization</p>\\n<p style=\\\"background-color: #ffffff;\\\">Bachelor&rsquo;s degree in Computer Science, Information Systems, or Computer Engineering, or other related field or 6 years of equivalent experience</p>\\n<p style=\\\"background-color: #ffffff;\\\"><strong>Skills:</strong></p>\\n<p style=\\\"background-color: #ffffff;\\\">6 years of experience User Experience (UX) and User Interface (UI) Design for dynamic, database or bootstrap driven web sites and Content Management Systems</p>\\n<p style=\\\"background-color: #ffffff;\\\">Hands-on experience with Axure, Balsamiq, and/or Sketch</p>\\n<p style=\\\"background-color: #ffffff;\\\">Thorough knowledge of human-centered design (HCD) patterns and best practices</p>\\n<p style=\\\"background-color: #ffffff;\\\">Experience with tools like Jenkins, GitHub, Jira, Confluence and SharePoint</p>\\n<p style=\\\"background-color: #ffffff;\\\">Experience incorporating reliable unit and end-to-end testing to UI frameworks</p>\",\n                    \"date_added\": \"12/19/2019 4:36:27 PM\",\n                    \"reply_to\": \"bcarnes@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"UI/UX Designer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231218\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Windsor Mill\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Overview:</span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Looking for an Embedded Software Engineer to develop and maintain real-time embedded software applications.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Typical applications are software products related to image processing, target detection and tracking, missile guidance/ navigation/ control algorithms, missile launchers, system control, built-in test, and system communication.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Development will be in C and C++ hosted on either a PC or Unix environment and targeted for an embedded processor running either VxWorks or Integrity as the real-time operating system.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Familiarity with standard communication busses and protocols including RS-232, RS-422, MIL-STD-1553 and Ethernet is helpful but not required. The candidate will have experience throughout the entire software development lifecycle including architecture, design, code implementation, and integration and test.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">The candidate will have a strong background in real-time embedded software development along with demonstrated technical leadership. The candidate will be familiar with using source code control and issue tracking tools along with using modern test tools to do unit test and static analysis.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">An ideal candidate will be able to configure and manage a continuous test environment. Bonus skills would be familiarity with Agile development, Cyber Security, Department of Defense products, board support package and device driver development.</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Domestic travel to customer or vendor site may be required on occasion</span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\"><br />\\nMandatory:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Bachelor's Degree in Computer Engineering or Computer Science, Electrical Engineering or equivalent.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience with embedded real-time development in C and C++</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience in software architecture (for level 4&rsquo;s only), design, coding, unit test, integration, and verification RTOS experience with VxWorks, Integrity, or Linux</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience with Hardware-Software integration</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Excellent communication skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">MUST have active DOD Secret clearance or greater.</span></li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Desired:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience generating and maintaining program software documentation such as SRS, ICD, Test Plans, Test Procedures</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience with software configuration management tools such as Git, JIRA, SVN</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Familiarity with Visual Studio (i.e., Visual C++).</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Familiarity with Atlassian tool suite and Jenkins test tool.</span></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 3:17:47 PM\",\n                    \"reply_to\": \"bmurphy@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Embedded Software Engineer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231220\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32819 \",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"background-color: #33ff33; font-size: 10pt; font-weight: bold;\\\">Projected Description/Purpose of Role:</span></p>\\n<p><span style=\\\"font-size: 10pt; line-height: 15.3333px;\\\">My client has an exciting career opportunity for a Proposal /Technical Writer position within the Operations Group. The primary responsibility of the Proposal /Technical Writer will be to work with the Proposal Manager, Business Development and Operations Personnel to plan and deliver major proposals and other deliverables to a wide range of Government clients at locations worldwide. This position is a highly visible role that works closely with senior leadership, capture personnel, and operations management to write, edit, review, and produce winning proposals typically valued between $2 Million $1 Billion.</span></p>\\n<p><strong style=\\\"background-color: #33ff33;\\\">Job Description:</strong><span style=\\\"font-size: 10pt; line-height: 15.3333px; font-family: Calibri, sans-serif;\\\"><br />\\n<br />\\n<strong style=\\\"background-color: #33ff33;\\\">Key Responsibilities</strong></span></p>\\n<p class=\\\"MsoListBulletCxSpFirst\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;</span></span>Write responses to Requests for Proposals, Requests for Information, and other federal, state or international government requests</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Create compliant, compelling responses for assigned proposal sections/topics and create associated graphics, charts, tables, appendices and other information in support of proposal development</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ensure win strategy, technical solution, win themes, discriminators, compliance, and clear understanding of the requirement are well-articulated and consistent throughout final proposal documents</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Analyzes government solicitations, identifies response requirements, and prepares unique, tailored, and detailed proposal responses in compliance with government agency requirements</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Write Management, Past Performance, Resumes and Plan RFP volumes</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Review and edit proposal responses for consistency, compliance, win theme incorporation, solution accuracy, and other elements during regular and core team review cycles in order to create the final proposal submission.</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Research relevant corporate, project, client and industry statistics and data in support of creating proposal responses for all lines of business, segments and international entities.</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manages activities of two or more sections.</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Works on issues where analysis of situations or data requires an in-depth knowledge of organizational objectives.<br />\\nRemains current on all solicitation modifications/Q&amp;A and communicates them to the team; revises schedule, outline, and compliance matrix as necessary throughout proposal life cycle</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Coordinates with graphic designers to conceptualize, develop, and integrate compelling proposal graphics that convey concepts and proposed solutions to enhance proposal documents</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Collaborate with Capture Manager, Technical Lead/PM, SMEs as required</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Coordinates with creative services staff to conceptualize, develop, and integrate compelling proposal graphics that convey concepts and proposed solutions to enhance proposal documents</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Uses automated proposal collaboration and document management tools, including Sharepoint</p>\\n<p><span style=\\\"font-size: 10pt; line-height: 15.3333px;\\\"></span></p>\\n<p class=\\\"MsoListBulletCxSpLast\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Support other Proposal Operations activities as needed&nbsp;<br />\\n<br />\\n<span style=\\\"background-color: #33ff33;\\\"><strong>Skills/Qualifications:</strong></span></p>\\n<p class=\\\"MsoListBulletCxSpFirst\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>High School degree or GED required and 7 years of relevant experience or;</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Bachelor&rsquo;s Degree with at least 5 years&rsquo; proposal management experience with at least 3 years&rsquo; Federal Government proposal management, support, and/or writing experience</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to prioritize and write several projects simultaneously; able to be hands-on as well as strategic</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Experience implementing standard proposal processes or procedures</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Excellent writing, organizational, and communication skills</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to guide and effectively influence with and without authority; strong interpersonal skills and the ability to interface with all levels of management, proposal teams, SMEs, peers, and teaming partners</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to work to meet deadlines (work overtime as needed)</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to develop compelling themes, discriminators, and messaging to communicate value proposition</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to work well both in a team and independently</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to work with geographically disparate teams</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Ability to create original content using interview and research techniques</p>\\n<p class=\\\"MsoListBulletCxSpLast\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Fluency with Microsoft Office (Word, Excel, PowerPoint, Outlook) and SharePoint&nbsp;<br />\\n<br />\\n<span style=\\\"background-color: #33ff33;\\\"><strong>Preferred Qualifications:</strong></span></p>\\n<p class=\\\"MsoListBulletCxSpFirst\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Experience writing large competitive strategic proposals in $10 to $500M range in an IDIQ contracts</p>\\n<p class=\\\"MsoListBulletCxSpMiddle\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Formal proposal training and/or certifications (e.g., APMP) preferred</p>\\n<p class=\\\"MsoListBulletCxSpLast\\\"><span style=\\\"font-family: Symbol;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Technical writing experience in the public sector&nbsp;</p>\\n<p class=\\\"MsoListBulletCxSpLast\\\"></p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 9:53:49 AM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Proposal Writer/Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231229\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Chantilly\",\n                        \"zip\": \"20151\",\n                        \"state\": \"\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"text-decoration: underline;\\\">Cyber Security Engineer</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Cyber Security Engineer is required for a 12+ month contract in Sterling, VA.</li>\\n    <li>Good chance of extension <strong></strong></li>\\n</ul>\\n<p><strong>Responsibilities:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>This engineer will be involved throughout the full lifecycle of the development program including CONOPs development, requirements development, architecture, design, integration, test, and certification of products.</li>\\n    <li>Acts as a key contributor on implementation projects.</li>\\n    <li>Travel will be required to support certification at remote sites as well as various activities during the development phase (short durations; less than 30% of time).</li>\\n    <li><span style=\\\"background: white; font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">General understanding of storage technologies, memory management, disk arrays, NAS/SAN, networking.</span></li>\\n    <li>This engineer will support the ongoing business process activities such as metrics collection and analysis, program tailoring, and process documentation updates and deployment.</li>\\n</ul>\\n<p><strong>Required Skills:</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Working knowledge of SOC or Cyber Range Operations</li>\\n    <li>Technical Writing including development of Use Cases, SOPs, or WIs related to SOC operational roles and tools/applications. </li>\\n    <li>Experience designing, configuring, or integrating any of the following applications or similar solutions: </li>\\n    <ul style=\\\"margin-top: 0in; list-style-type: circle;\\\">\\n        <li>Forensic (EnCase)</li>\\n        <li>&nbsp;Malware (FireEye)</li>\\n        <li>ThreatQuotient (ThreatQ),</li>\\n        <li>Airwatch (by VMWare)</li>\\n    </ul>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>DOORs and requirements management experience</li>\\n</ul>\\n<p><strong>Desired Skills:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Experience with DevOps/DevSecOps; Automation (Puppet, Ansible, Chef); Infrastructure-as-Code</li>\\n    <li>Willingness to travel to the Middle East/North Africa (MENA) region</li>\\n</ul>\\n<p><strong>Duration:&nbsp;</strong>12+ month contact</p>\\n<p>PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</p>\",\n                    \"date_added\": \"1/9/2020 10:36:12 AM\",\n                    \"reply_to\": \"gserra@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cyber Security Engineer - ENG04 - UNCLEARED - (VA)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231231\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling\",\n                        \"zip\": \"20166\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<strong>JOB DESCRIPTION:</strong><br />\\n<br />\\nWork with Mechanical Engineering Lead to assist in the mechanical design, engineering documentation, trade studies, and drawing release for the System. Perform weights and tolerance analysis on system components.<br />\\n<br />\\nWork concepts and detail designs to fit Platform Requirements. Designer will work the design layout, and follow-up working with mechanical analyst to ensure the design meets all requirements including Safety of Flight (SOF).<br />\\n<br />\\nAdditionally, the designer will work with the supplier during the design and manufacturing process to mitigate and production issues. Work closely with Mechanical Engineering to support all program objectives.<br />\\n<strong><br />\\nSKILLS:</strong><br />\\n<br />\\n- BS degree in Mechanical Engineering, or equivalent related education and experience.<br />\\n<br />\\n- Experience with all aspects of mechanical design, including layout and design documentation.<br />\\n<br />\\n- 5 to years of 10 experience creating PRO E/CATIA drawings and drawing release.<br />\\n<br />\\n- Proficiency with PRO E/CATIA and Intralink is require.<br />\\n<br />\\n- Knowledge of LMC drawing release procedures is desire.<br />\\n<br />\\n- Good knowledge of all aspects of Mechanical engineering is essential.<br />\\n<br />\\n- Previous LMC experience is a plus.<br />\\n<br />\\nMUST BE US CITIZEN\",\n                    \"date_added\": \"12/23/2019 12:26:25 PM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Engineer Design Check Level 2 \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231232\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32819\",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Description:<br />\\n</strong><br />\\nThis job opportunity is for a System Administrator position supporting multiple program labs at our client&rsquo;s Dulles, VA facility. The System Administrator is responsible for administering Windows and Linux hardware supporting DoD programs and ensuring it is fully compliant with company policy and USG Information Assurance requirements. The selected candidate will be responsible to multiple program managers and will have to prioritize work across labs for each of those programs. Day to day operation and sustainment of these systems will include (but not limited to):<br />\\n<br />\\n&bull; Configure servers, workstations and ensure products are in use with the latest version and supported<br />\\n&bull; Ensure anti-virus software is up to date and have the latest virus definition files<br />\\n&bull; Provide software patching for all servers and workstations (RedHat, Microsoft, Java, Adobe, etc.)<br />\\n&bull; Hardening of servers and workstations IAW DFARS 252.204-7012 standards<br />\\n&bull; Support the maintenance of System Security Plans<br />\\n&bull; Provide IT expertise for configuration changes affecting the systems and bring before CCB for oversight before implantation<br />\\n&bull; Remediate any findings associated with scans of servers and workstations. Coordinate with IT Security to update POA&amp;M and reflect open vulnerabilities associated with servers and workstations, develop remediation plans to include milestone completion dates and status updates, and include mitigation process for closed vulnerabilities<br />\\n&bull; Participate in CCBs<br />\\n&bull; Immediately notify program leadership of any irregularities in system operations and/or attacks/compromises<br />\\n&bull; Create and/or modify accounts after notification by program leadership (Account paperwork is complete)<br />\\n<br />\\nThe ideal candidate possesses strong written and oral communications skills, technical knowledge, exemplary customer service skills, strong time management skills, the ability to find creative solutions to complex challenges, and the ability to multi-task and thrive in a fast paced environment.<br />\\n<br />\\nThis position will report directly to the IIS IT DCS-CSI Program Execution Manager.<br />\\n<br />\\n<strong>Required Skills:</strong><br />\\n&bull; US Citizen with ability to obtain a Secret Security Clearance<br />\\n&bull; 4+ years relevant and recent experience with Windows and Linux System Administration<br />\\n&bull; Experience with server and workstation assessment and hardening using various information system security assessment/hardening tools - DISA STIGs, SCAP, ACAS, Retina, Nessus etc.<br />\\n&bull; Experience with VMware virtualization<br />\\n&bull; Experience successfully and effectively interacting with internal and external customers (Program Engineers, Program Managers, IA, etc.)<br />\\n&bull; Professional demeanor, good interpersonal skills, and ability to excel in a high-paced multi- tasked environment<br />\\n&bull; Ability to act independently, prioritize tasks, and manage to schedule<br />\\n&bull; Strong communication skills with the ability to communicate effectively in both oral and written modes, and be able to author and present subject specific presentations. Comfortable with public speaking.<br />\\n&bull; DoD 8570.01 IAT Level 2 (requires one or more of the following Professional Certifications: CCNA Security, GICSP, GSEC, Security+ CE, SSCP)<br />\\n<br />\\n<strong>Desired Skills:</strong><br />\\n&bull; System Administrator experience with Microsoft Domain Controllers, Active Directory, RedHat Directory and openLDAP<br />\\n&bull; DoD 8570.01 IAM Level 2 (requires one or more of the following Professional Certifications: CAP, CASP CE, CISM, CISSP, GSLC)<br />\\n&bull; Computing Environment certifications to include Windows and or Linux<br />\\n&bull; In-depth knowledge of NIST special publications, CNSS policies and instructions, and other requirements documents associated with DFARS 252.204-7012 and the Risk Management Framework (RMF).</p>\",\n                    \"date_added\": \"12/23/2019 12:17:45 PM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Administrator - Secret - (VA)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231233\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Sterling\",\n                        \"zip\": \"20166\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"Role: Principal Data Integration Engineer<br />\\nLocation: Boston, MA<br />\\nDuration: Direct-Hire<br />\\n<br />\\nSoftworld, Inc is seeking a Principal Data Integration Engineer to sit on-site at our client in Boston, MA. This is a direct-hire position with salary, benefits, PTO and a yearly bonus. This individual will architect and build technology to enable back office investment functions (trade flows, accounting, reconciliation, reporting and automated batch scheduling workflows) for integrations. Knowledge of investment financial data to serve application integration to trading platform and reporting is strongly desired.&nbsp;<br />\\n<br />\\nTechnical Requirements:<br />\\n- Bachelor's Degree in technical discipline<br />\\n- 6-9 Years of experience with Data Integration<br />\\n- 2+ years of experience as a Lead<br />\\n- Expertise in MS SQL Server&nbsp;<br />\\n- Expertise in Python<br />\\n- Experience with Microsoft SQL Server BI Technology stack (SSRS, SSIS)<br />\\n- Experience with Data Warehousing, Dimensional Modeling, and Data extraction<br />\\n- Experience with Financial Systems and reporting<br />\\n- Experience in Agile Software practices<br />\\n<br />\\nPreferred Skills:<br />\\n- REST APIs<br />\\n- Git/Bitbucket<br />\\n- AWS/Azure/Cloud<br />\\n<br />\",\n                    \"date_added\": \"1/2/2020 10:04:43 AM\",\n                    \"reply_to\": \"andrew.jones@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Principal Data Integration Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231235\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"02112\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Oracle EBS Developer</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Oracle EBS Developer needed for a Contract role in Marlborough, MA</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Software design and development. Actual core implementation (programming which is often the most important portion of software development) </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Other required implementations (e.g. configuration, customization, integration, data migration) </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Participation in software product definition, including business case or gap analysis </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Authoring of documentation needed by users and implementation partners etc. </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Testing, including Unit testing, defining/supporting acceptance testing and gathering feedback from pre-release testers </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Participation in software release and post-release activities, including support for product launch evangelism (e.g. developing demonstrations and/or samples) and competitive analysis for subsequent product build/release cycles </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Perform analysis, design enhancements and modifications </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Write and debug complex programs and subroutines using PL/SQL, OAF and Java for Oracle EBS platform </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Analyze and recommend alternative solutions for system enhancement and problem resolution projects </span>\\n    <p><strong>Required Skills:</strong></p>\\n    </li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">3-5 years&rsquo; experience with Oracle EBS HR modules (HR, Self-service, Comp, Benefits) </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">5-7+ years of total related work experience</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Ability to write and debug complex programs and subroutines using PL/SQL, OAF and Java for Oracle EBS platform </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience with Fast Formulas and workflows</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience developing and maintaining data integrations between EBS and vendor systems</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Ability to analyze and recommend alternative solutions for system enhancement and problem resolution projects </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Bachelor's Degree CIS or related field </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience in software product definition, including business case or gap analysis</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Duration: 7-8 Month+ Contract</span></strong></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"color: black; font-family: Arial, sans-serif;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\",\n                    \"date_added\": \"12/27/2019 2:33:19 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Oracle EBS Developer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231239\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"background: white; font-family: Arial, sans-serif;\\\">Junior Access Control Administrator</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Junior Access Control Administrator is required for a 12 Month+ Contract position.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Monitor the queue and respond to ServiceNow tickets related to security access requests.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Complete Terms and Transfers processing for all key financial applications.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Responsible for working with the business and other IT resources to create ITIM roles.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Contribute to the development and implementation of new security request processes.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Documents all aspects of access provisioning in order to satisfy internal and external audit.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Collaborate with others to properly configure security values using least privilege.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Provides valuable input to improvement of process surrounding day to day operations and security control execution.</span></li>\\n    <li><span style=\\\"background: white; font-size: 11pt; font-family: Arial, sans-serif;\\\">Provide Tier III support to end users of varying technical ability.</span></li>\\n</ul>\\n<div><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Required Skills:</span></strong><br />\\n</div>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Basic understanding of computer security concepts including access management, application security, incident management, and risk &amp; compliance.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Basic understanding of information technology industry trends and emerging technologies and an ability to relate them to the company and its objectives.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Academic course work or beginner experience within IT Security.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge with MS Office.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge of Identity and Access Management.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Desired Skills:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge of helpdesk/Service/ticketing tools along with knowledge of Active Directory, Windows, AIX or Linux highly preferred.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Any actual workplace experience with Active Directory, Centrify, IBM Tivoli Identity Manager, Service Now, Mainframe ACF2, Windows, AIX or Linux is a plus.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Beginner experience working in a high-volume ticket queue in a user support group with a focus on Security a plus.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge of Identity and Access Management.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge of SOX and PCI audits are a plus.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Basic experience with programming is a plus.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Duration: 12 Months+</span></strong></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\",\n                    \"date_added\": \"12/30/2019 5:51:03 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Junior Access Control Administrator\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231240\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>\\n<p style=\\\"background-color: #ffffcc; margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\"></span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Top Skills:</span></strong></p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Proposal writing &ndash; ability to write persuasively and articulately.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience in drafting and/or contributing to proposals (RFPs, RFIs, RFQs etc.) responses.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to identify problems and/or inefficiencies and independently offer/implement practical solutions. Creativity and initiative.&nbsp;</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Home Run Skill:</span></strong></p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Cradle-to-grave Proposal Writing experience, EIS / Federal experience.&nbsp;</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">REQUIRED SKILLS:</span></strong></p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience in proposal writing &ndash; ability to write persuasively and articulately.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience in drafting and/or contributing to proposals (RFPs, RFIs, RFQs etc.) responses.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to identify problems and/or inefficiencies and independently offer/implement practical solutions. Creativity and initiative.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Excellent research skills and the ability to write persuasively and articulately.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to work independently, prioritize workload, and meet deadlines.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience working in a fast-paced environment with proven ability to prioritize and multi-task.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Exceptional organizational skills and attention to detail.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Strong coordination and planning skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Must be technologically savvy in order to navigate and organize electronic submissions and online bids.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Must be able to thrive in a high pressure, fast paced work environment with strict deadlines.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Excellent internal and external negotiation skills. &nbsp;Must interface effectively with internal management, and customer representatives including contracting officers and specialists.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Computer skills, including advanced proficiency in Microsoft Office Suite (Excel, PowerPoint, MS Office, MS Word).</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">US Citizenship Required.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">DESIRED SKILLS:</span></strong></p>\\n<p style=\\\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<ul>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Bachelor&rsquo;s degree (required for conversion)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Prior representation of telecommunication clients or employment within the telecommunications industry.&nbsp;</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Prior experience with telecom or government contracting requirements, including Federal acquisition vehicles and statewide contracts.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Working knowledge of government contracting concepts, including Federal Acquisition Regulations, federal supply schedules, multiple award schedules, firm fixed price contracts, and IDIQ contracts.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Professional certifications such as CPCM, CFCM, or CCCM</span></li>\\n</ul>\\n<br />\\n</div>\",\n                    \"date_added\": \"1/10/2020 11:21:45 AM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Proposal Specialist\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231241\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Tyson's Corner\",\n                        \"zip\": \"22102\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Contract Support Admin</span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Quincy, MA OR Tyson's Corner, VA&nbsp;</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">3-month contract-to-hire </span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">The Contracts Support Analyst will assist in the organization and maintenance of government contracts at the federal, state, and local level. Duties will include supporting the team during bid/proposal efforts, managing the organization of contracts files, and various administrative support tasks. The position requires a team player with good analytical skills in addition to good written and verbal communication skills.</span></p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Duties and Responsibilities:</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Prepare metrics and manage reporting for the Government team</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Monitor bid portals such as FedBizOpps for upcoming opportunities</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Facilitate and provide support to internal management including sales, finance, and program management.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Perform contract administration duties for small orders and contracts.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Manage government business opportunity pipeline and tracks the status of proposal development with internal teams to ensure submittal deadlines are met.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Create and keep current databases supporting RFP/proposal development.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Assist in identification, development and implementation of new contract/subcontract policies and processes.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Collect and analyze data for proposal losses, identify trends and provide reports to the team to assist with bid strategy.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Assist in proposal preparation activities such as white-glove reviews and hard-copy proposal assembly.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Provide administrative support as necessary, including drafting correspondence, online research, and file organization to the Government business team</span></li>\\n</ul>\\n<p style=\\\"margin-left: 0.5in;\\\">&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Required Qualifications:</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Bachelor&rsquo;s degree or higher, preferably in business, marketing, or related field.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Basic knowledge of government contracting concepts.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Excellent organizational skills and attention to detail.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Ability to work independently, multitask and coordinate activities across a range of functional areas.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Must be able to thrive in a high pressure, fast paced work environment with strict deadlines.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Strong analytical and verbal communication skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Must have the ability to obtain a security clearance.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Ability to identify problems or inefficiencies and independently offer/implement practical solutions.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Proficient in all MS Office Applications, advanced Excel knowledge a plus.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Ability to work with confidential information exercise judgment and discretion.</span>&nbsp;</li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Preferred Qualifications:</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Minimum 1-3 years direct experiences with government contracting.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Working knowledge of government contracting concepts, including Federal Acquisition Regulations, particularly FAR part 8.4, Federal Supply Schedules.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Prior experience with statewide acquisition contracts.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Prior experience in the telecommunications industry.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Experience with and General Services Administration schedules program and multiÂ\\u00ad-award schedule regulations.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Calibri, sans-serif;\\\">Prior experience in a business support role.</span></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 11:35:49 AM\",\n                    \"reply_to\": \"achesley@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Contract Support Admin\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231242\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Quincy\",\n                        \"zip\": \"02171\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Title:</span></strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Project Manager, Alliance Partnerships-Technical Operations</span></p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Duration:</span></strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 months<br />\\n<strong><span style=\\\"font-family: Arial, sans-serif;\\\">Location:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></strong><span class=\\\"apple-tab-span\\\">Waltham, Massachusetts&nbsp;</span></span></p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Top Technical Skills:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Excellent communication skills</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Technical experience to enable effective communication between internal associates and with alliance partner</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Excellent organizational skills</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Natural ability to led and work through others in matrix environment</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Agility to work in a fast paced environment and deliver upon alliance partnership and internal pipeline goals</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to successfully balance multiple tasks at a time&nbsp;</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">The Alliance Partnerships Project Manager, Technical Operations will manage the development programs associated with external ventures and partnerships for licensed assets.&nbsp; This role will facilitate and maintain a vital conduit between subject matter experts and partners to ensure all program goals are successfully achieved. S/he will be responsible to build and execute CMC partnership strategies integrated with the overall program objectives and timelines. The individual will be responsible for setting CMC objectives, budgets, and timelines in alignment with the CMC partnership strategy. </span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">In addition to the role outlined above, the individual will be required to facilitate internal deliverables associated with internal pipeline by assisting or leading CMC Project Management efforts. S/he will work with the Sr. Director, Portfolio Management, Technical Operations and the CMC team to set CMC objectives, budgets, and timelines in alignment with program strategies. S/he may facilitate knowledge transfer of newly licensed assets.</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Requirements:</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Requires a BS degree and minimum of 8 years of relevant experience, which includes experience as a project manager and pharmaceutical functional area scientist; or a MS degree and minimum 5 years of relevant experience.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Proven leadership and cross-functional management of CMC projects.&nbsp; Demonstrated leadership in more than one CMC specialty.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Extensive experience with partnership and/or vendor management.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Ability to translate complex concepts into actionable and measurable tasks.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Excellent people management skills with the ability to develop effective relationships, motivate others and influence in a cross-functional environment.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Exhibits high initiative, strong drive and follow-through.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Competency in MS Office, MS Project.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Requires flexible work schedule to accommodate program priorities and international activities.</span></li>\\n    <li style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Travel (some international) may be required.</span></li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 9:29:56 AM\",\n                    \"reply_to\": \"cpentikis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Manager, Alliance Partnerships-Technical Operations\",\n                    \"category\": \"Life Sciences\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231247\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Waltham\",\n                        \"zip\": \"02451\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"155\",\n                        \"SubCategoryName\": \"Life Sciences\",\n                        \"CategoryID\": \"25\",\n                        \"FolderGroupID\": \"159\",\n                        \"CategoryName\": \"Life Sciences\",\n                        \"FolderGroup\": \"Life Sciences\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Senior FPGA Design Engineer </strong></p>\\n<p><strong>JOB DESCRIPTION:</strong>&nbsp;</p>\\n<p>Bachelor's degree in Electrical or Computer Engineering, a related specialized area or field is required (or equivalent experience) plus a minimum of 8 years of relevant experience; or master&rsquo;s degree plus a minimum of 6 years of relevant experience.</p>\\n<p>Softworld Inc Client has an immediate opening for a Senior FPGA Engineer in Dedham, MA.&nbsp; This position provides an opportunity to work collaboratively with engineers of differing backgrounds to provide innovative technical solutions for our nation&rsquo;s most advanced secure communications and control systems.&nbsp;&nbsp;</p>\\n<p><strong>Key Responsibilities</strong></p>\\n<p>A Senior FPGA Design Engineer and/or Design Verification Engineer is being sought to develop high speed secure communications and control products. The position requires familiarity with all phases of FPGA development, starting with translating customer requirements into well-defined elements that formulate highly reliable, cost sensitive products. Experience with some of the following would be required:</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>VHDL and Verilog</li>\\n    <li>Xilinx and Altera FPGA tools and processes</li>\\n    <li>SystemVerilog/UVM based design verification</li>\\n    <li>PWA design</li>\\n    <li>ChipScope or equivalent</li>\\n    <li>Designing, building, testing/debugging, and producing low to high volume embedded products</li>\\n    <li>The candidate must be an effective communicator, multitask, and work well with others</li>\\n</ul>\\n<p><strong>Specific responsibilities:</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Based on experience and career goals, the successful candidate will be part of a small team that develops complex FPGA-based solutions from concept, though design, synthesis, timing analysis, UVM base verification, lab integration, formal test, and production support through product life cycle.</li>\\n</ul>\",\n                    \"date_added\": \"1/6/2020 11:29:19 AM\",\n                    \"reply_to\": \"creilly@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior FPGA Engineer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231249\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Dedham\",\n                        \"zip\": \"02026\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 18px;\\\"><strong>Security Consultant - Cylance&nbsp;<br />\\n</strong></span><span style=\\\"background-color: #ffffff; font-size: 13px; font-family: 'Segoe UI', Arial, sans-serif;\\\">Fayetteville, NC<br />\\n</span><br />\\n<strong>WHAT YOU WILL DO</strong>\\n<ul>\\n    <li>Work with customers to implement and tune all aspects of CylancePROTECT following a proven process (no Cylance experience required, 6 week paid training is included).</li>\\n    <li>Train customers on solution best practices</li>\\n    <li>Assist customers in dealing with threats and other findings like malware and potentially unwanted programs</li>\\n    <li>Bachelor&rsquo;s degree preferred</li>\\n</ul>\\n<br />\\n<strong>WHO WE ARE LOOKING FOR</strong><br />\\n<ul>\\n    <li>Active TS/SCI Security Clerance</li>\\n    <li>4+ years of previous experience as a security consultant, security engineer or endpoint security admin</li>\\n    <li>Must be able to demonstrate your experience</li>\\n    <li>Solid understanding of endpoint security, network/general security and AV/malware industry</li>\\n    <li>Ability to plan, develop and execute solution deployments</li>\\n    <li>Demonstrate excellent communications skills, both oral and written</li>\\n    <li>Experience working with diverse professional clientele with varying skill levels and technical experience/competency</li>\\n    <li>Ability to partner with internal resources outside of department in a collaborative and beneficial manner</li>\\n    <li>Ability to research highly technical topics, pull together various sources into one concise document and explain technical details clearly and concisely</li>\\n    <li>Excellent time management skills</li>\\n    <li>Flexible and adaptable self-starter with strong relationship-building skills</li>\\n    <li>Must have a passion for your work and an ability to apply that passion to both daily tasks and larger projects</li>\\n    <li>Collaborative and team-oriented attitude</li>\\n    <li>Effective problem-solving capabilities</li>\\n    <li>Takes initiative and approaches all tasks and projects proactively</li>\\n    <li>Ability to prioritize and complete multiple tasks with little to no supervision</li>\\n    <li>Intellectual curiosity, humility, accountability and positive approach</li>\\n    <li>Requires the ability to work independently with substantial latitude for action and decision while maintaining focus on achieving optimal outcomes as part of a collaborative development effort</li>\\n</ul>\\n<br />\\n<div id=\\\"radePasteHelper\\\" style=\\\"position: absolute; left: -10000px; border: 0px solid red; top: 0px; width: 1px; height: 1px; overflow: hidden;\\\">\\n<p dir=\\\"LTR\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\"><span style=\\\"margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 700; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline; font-family: inherit;\\\">WHAT YOU WILL DO</span></p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; min-height: 16.08px; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff; text-align: inherit;\\\">&nbsp;</p>\\n<ul style=\\\"margin: 12px 0px 0px; padding: 0px 40px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; list-style-position: outside; list-style-image: initial; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\">\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Work with customers to implement and tune all aspects of CylancePROTECT following a proven process</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Train customers on solution best practices</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Assist customers in dealing with threats and other findings like malware and potentially unwanted programs</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Bachelor&rsquo;s degree preferred</li>\\n</ul>\\n<p dir=\\\"DEFAULT\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; min-height: 16.08px; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"LTR\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\"><span style=\\\"margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 700; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline; font-family: inherit;\\\">WHO WE ARE LOOKING FOR</span></p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; min-height: 16.08px; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff; text-align: inherit;\\\">&nbsp;</p>\\n<ul style=\\\"margin: 12px 0px 0px; padding: 0px 40px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; list-style-position: outside; list-style-image: initial; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\">\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Active TS/SCI Security Clerance</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">4+ years of previous experience as a security consultant, security engineer or endpoint security admin</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Must be able to demonstrate your experience</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Solid understanding of endpoint security, network/general security and AV/malware industry</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Ability to plan, develop and execute solution deployments</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Demonstrate excellent communications skills, both oral and written</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Experience working with diverse professional clientele with varying skill levels and technical <span class=\\\"WK41\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-all; overflow-wrap: break-word; display: inline; text-decoration: inherit;\\\">experience/competency</span></li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Ability to partner with internal resources outside of department in a collaborative and beneficial manner</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Ability to research highly technical topics, pull together various sources into one concise document and explain technical details clearly and concisely</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Excellent time management skills</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Flexible and adaptable self-starter with strong <span class=\\\"WK41\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; word-break: break-all; overflow-wrap: break-word; display: inline; text-decoration: inherit;\\\">relationship-building</span> skills</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Must have a passion for your work and an ability to apply that passion to both daily tasks and larger projects</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Collaborative and team-oriented attitude</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Effective problem-solving capabilities</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Takes initiative and approaches all tasks and projects proactively</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Ability to prioritize and complete multiple tasks with little to no supervision</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Intellectual curiosity, humility, accountability and positive approach</li>\\n    <li style=\\\"margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline;\\\">Requires the ability to work independently with substantial latitude for action and decision while maintaining focus on achieving optimal outcomes as part of a collaborative development effort</li>\\n</ul>\\n<p dir=\\\"DEFAULT\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; min-height: 16.08px; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"LTR\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\"><span style=\\\"margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: 700; font-stretch: inherit; font-size: inherit; line-height: inherit; vertical-align: baseline; font-family: inherit;\\\">ABOVE AND BEYOND</span></p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; min-height: 16.08px; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"LTR\\\" style=\\\"margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Roboto, Arial, Helvetica, sans-serif; vertical-align: baseline; color: #4a4a4a; white-space: pre-wrap; background-color: #ffffff;\\\">Python and PowerShell scripting</p>\\n</div>\",\n                    \"date_added\": \"1/2/2020 5:52:10 PM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Security Endpoint Consultant - Cylance\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231248\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fort Bragg\",\n                        \"zip\": \"28303\",\n                        \"state\": \"NC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Job Description:</span></p>\\n<p><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Experience required</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">15+ years of IT experience is required</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Experience or Certifications with the following technology: Motorola WAVE devices and Radio over IP consoles, Cisco network and VTC devices, Juniper network devices, Planar displays, Microsoft OS/Office, VIPER and STE phones, Microsoft SCCM, SolarWinds, Netcool, Netbrain, and other technologies</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Experience in mission critical, 24&times;7 operational environments</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Preferred experience in military, intelligence, law enforcement, or other similar mission critical environments</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">An active Top Secret SCI Clearance is required</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Bachelor&rsquo;s Degree in Computer Science or a related technical discipline, or the equivalent combination of education, professional training or work experience</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Position Responsibilities</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">This position supports mission operations in support of one of the most dynamic and vital mission environments supporting our nation&rsquo;s critical assets</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Perform daily system checks on voice, video display server, video teleconferencing, information technology, and the radio communications systems</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Operate, administer, troubleshoot and resolve technical issues relating to outages or system operation to include:</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Radio equipment, secure telephones, video communications systems, video-wall display units, desktop computers and printers, and other ancillary technical equipment and components</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Systems administration and provisioning of Microsoft Operating Systems, Microsoft Office applications, third-party COTS products (e.g., Adobe, Internet Explorer, JAVA, etc.), Active Directory administration, and other Tier I and II systems administration functions</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Performing end-user and desk-side support to mission operations staff, executives, and other operations center staff</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Tracking and managing all problems and issues from identification through resolution, including pro-active inquiries, ticket management, and interfacing and collaborating with Tier II and Tier III technical experts, both Government and Contractor staff, to troubleshoot and resolve any technical issues</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Maintaining certifications and continually learning about new technologies, techniques, and procedures to stay abreast of leading technologies and aligning with enterprise-level modernization efforts</span></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 5:49:05 PM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Service Desk Analyst\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231252\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington DC\",\n                        \"zip\": \"20223\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"background-color: #ffffcc;\\\">\\n<div class=\\\"bd_title\\\" style=\\\"font-size: medium; font-family: 'Times New Roman';\\\">\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\"><strong>Senior Splunk Engineer</strong></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Senior Splunk Engineer needed for a Contract to Hire role in Atlanta, GA</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Strong Linux background</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Thorough understanding of Splunk peering</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience onboarding various network and security devices into Splunk</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Working knowledge of syslogNG and other logging concepts</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Understanding of REGEX</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Ability to demonstrate knowledge of Splunk SPL as well as dashboard/visualization creation and modification</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledgeable and experience with scripting languages (JavaScript, batch and bash)</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledgeable with programming languages such as python</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Intermediate to senior experience with web application development</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Intermediate to senior experience with web application penetration testing</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience with Cross Site Scripting and SQL Injection (OWASP Top 10 Vulnerabilities and Attacks)</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Intermediate experience with network penetration testing</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience writing penetration testing reports</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Basic foundational knowledge of TCP/IP networking</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Understanding of Microsoft Windows Active Directory</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience with vulnerability management</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience with Database management and performing offensive security on databases in order to find vulnerabilities that need to be remediated</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Will be a bonus to have experience with testing Access Control Lists and Firewall configuration testing</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience with External and Internal penetration testing</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledgeable with Social Engineering</span>\\n    <p><strong>Required Skills:</strong></p>\\n    </li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Bachelor&rsquo;s degree in Information Security or related field</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">8+ years of IT experience</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">5+ years of direct experience with area of expertise</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">3 years in IT infrastructure, networking, architecture, administration, or security</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">2+ years administering Splunk in an Enterprise Level Environment (app administration, performance monitoring, troubleshooting)</span></li>\\n</ul>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><strong>Duration: 6 Month Contract to Hire</strong></span></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\\n<p>&nbsp;</p>\\n<br />\\n</div>\\n</span>\",\n                    \"date_added\": \"1/3/2020 4:28:24 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior Splunk Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231257\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Atlanta\",\n                        \"zip\": \"30333\",\n                        \"state\": \"GA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p style=\\\"font-weight: normal;\\\"><strong>Top 3 Technical Skills (confirmed):</strong></p>\\n<li style=\\\"font-weight: normal;\\\">Experience in IT recruiting with DoD, Intelligence and Space programs</li>\\n<li style=\\\"font-weight: normal;\\\">Experience managing other recrutiers</li>\\n<li style=\\\"font-weight: normal;\\\">Positive, can do, whatever-it-takes attitude</li>\\n<li style=\\\"font-weight: normal;\\\">Must be a \\\"Champion of Change\\\" because this is a dynamic environment due to a change in company structure and a new COO that is joining the company.</li>\\n<strong style=\\\"font-weight: normal;\\\">\\n<p>&nbsp;</p>\\n</strong>    <strong>\\n<p>Projected Description/Purpose of Role:</p>\\n</strong><strong>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal; text-align: left;\\\"><span style=\\\"background-color: white; font-size: 10pt; font-family: Arial, sans-serif; color: #2d2d2d;\\\">Our client is a high-profile small business working on DoD, Intelligence, DISA, Homeland Security, Space Programs for the United States Government. They have been in business 20 years with an exceptional record for performance and delivery as a &ldquo;specialized engineering services&rdquo; company with the world&rsquo;s Top Government Primes: Lockheed Martin, Northrop Grumman, Leidos, CACI, Raytheon, Boeing, Aerojet, NASA and more.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"font-size: 10pt;\\\">Our client is looking for a Technical Recruiting Manager who embraces change, has a positive &ldquo;can-do&rdquo; personality, can thrive in a company that is restructuring and growing all at the same time and serve as a solid Team Leader as the Technical Talent Acquisition Manager.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal; background: white;\\\"><strong><span style=\\\"font-size: 10pt;\\\">ESSENTIAL RESPONSIBILITIES</span></strong><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Manage and mentor a team of recruiters and a call center; recruiting low-mid engineering positions within the Department of Defense, Space Systems and Intelligence Programs</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Develop and implement strategic and creative recruiting processes nationally and around the globe</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-left: 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Provides leadership in the establishment of the employment brand and develops supporting materials in order to communicate the company&rsquo;s value proposition and consistent business image through employment advertisements, career sites, job descriptions, and other employment materials.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Screen candidates, schedule interviews and manage the candidate selection process</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Communicate with hiring managers to determine current and future staffing needs</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-left: 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Assesses external labor market conditions in order to develop the most effective, economical and appropriate recruiting channels and methods.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Work with customers utilizing tools/software for onboarding/deboarding candidates and employees</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Manage recruiting activities and advertisements; utilize social media and other resources to attract talent</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Develop effective processes for interviewing, selection and pre-employment screening</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Establish networking relationships and affiliated industry groups to enhance recruiting</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Attend job fairs, recruiting and professional events</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Ensure accurate job descriptions for all positions and employees, accurate and timely reporting and communication of staffing initiatives and metrics</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Ensure compliance with applicable federal, state and local employment law</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Manage hard to close candidates, including the negotiation and offer process</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Provide insights on current hiring progress to stakeholders using data, while also using data to inform future hiring strategies</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-left: 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Ability to handle multiple tasks and adapt to changing priorities.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal; background: white;\\\"><strong><span style=\\\"font-size: 10pt;\\\">EDUCATION, SKILLS &amp; REQUIREMENTS</span></strong><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Bachelor&rsquo;s or Masters&rsquo; Degree Preferred. Experience Equivalent Accepted</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">PROFICIENT verbal and written communication skills, Indeed, job boards, Linked-In recruiting, social media recruiting </span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">PROFICIENT MS Office Suite, HRM/CRM recruiting software tools (Bamboo HR Preferred)</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">EXPERT demonstrated organizational skills with ability to prioritize and multi-task job duties</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">EXPERT meeting deadlines and professionally represent company</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">SOLID understanding of DoD engineering services on a global scale</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal; background: white;\\\"><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal; background: white;\\\"><strong><span style=\\\"font-size: 10pt;\\\">HIGHLY DESIRED</span></strong><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">8+ years professional recruiting experience working with DoD, Intelligence and Space Programs</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">5+ years of leading, mentoring and building recruiting teams.</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Secret, Top-secret, Poly Cleared or ability to obtain clearance</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Ambitious, positive, &ldquo;can-do&rdquo; personality, enjoys working autonomously where you have the flexibility and freedom to propose and implement what you see fit in order to scale an engineering org with high-quality talent</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin: 0in 0in 0.0001pt 0.25in; line-height: normal; background: white;\\\"><span style=\\\"font-size: 10pt;\\\"></span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"font-weight: normal; margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 10pt;\\\">POSITION BENEFITS:</span></strong></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #2d2d2d;\\\">Competitive compensation</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Flexible time off policy for a healthy work life balance</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">Excellent medical, dental, and vision coverage for you and your dependents</span></p>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><!--[if !supportLists]--><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;<span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><!--[endif]--><span style=\\\"font-size: 10pt;\\\">401(k), life and disability insurance plans</span></p>\\n</strong><strong>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin: 0in 0in 0.0001pt 0.25in; text-indent: -0.25in; line-height: normal; background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Symbol; color: #2d2d2d;\\\">&middot;</span><span style=\\\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\\\">&nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\\\"font-size: 10pt; text-indent: -0.25in; font-family: Arial, sans-serif; color: #2d2d2d;\\\">Collaborative, transparent, and fun-loving office culture</span></p>\\n<p style=\\\"font-weight: normal;\\\">&nbsp;</p>\\n</strong>\",\n                    \"date_added\": \"1/6/2020 3:17:43 PM\",\n                    \"reply_to\": \"sbryan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Technical Talent Acquisition Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231259\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"80905\",\n                        \"state\": \"CO\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>JOB DESCRIPTION: </strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Familiarity with RPA tools like: UiPath, Automation Anywhere, Blue Prism</li>\\n    <li>Degree in Computer Science or Engineering or any Engineering degree</li>\\n    <li>Minimum 7 years&rsquo; experience in a professional senior technical role (e.g team lead), ideally for a system integrator</li>\\n    <li>Excellent communication skills with the ability to explain technical concepts to lay audiences</li>\\n    <li>Self-starter with the ability to prioritize and plan complex work in a rapidly changing environment</li>\\n    <li>Results oriented with ability to produce products/solutions that deliver organizational benefit</li>\\n    <li>Strong critical thinker with problem solving attitude</li>\\n    <li>Team player with experience leading and collaborating cross-team to ensure successful delivery of solutions</li>\\n    <li>Strong conceptual and analytical skills with demonstrated outside-the-box problem solving skills</li>\\n    <li>Strategic business acumen and understanding of organization strategy with ability to design IT solutions to deliver that strategy</li>\\n    <li>Ability to develop solution architecture designs</li>\\n    <li>Exposure to a wide variety of technology problems and their solutions</li>\\n    <li>Experience in assessing a broad range of IT solutions particularly in infrastructure design</li>\\n    <li>Part of the solution development team, you will be responsible for translating the functional requirements and provide solutions. Your process involves selecting the most appropriate technologies and options based on the requirements.</li>\\n</ul>\",\n                    \"date_added\": \"1/10/2020 11:39:23 AM\",\n                    \"reply_to\": \"jmishara@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior Lead Analyst-RPA\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231245\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cerritos\",\n                        \"zip\": \"90703\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>SOA Integration Engineer &ndash; Java/Oracle SOA</strong><br />\\n<br />\\n<strong>Los Angeles, CA &ndash; 6+ months Contract</strong></p>\\n<p><strong>REQUIRED SKILLS:</strong>&nbsp;</p>\\n<p>Preferred Degree: Master&rsquo;s Degree</p>\\n<p>Required Major: Bachelor&rsquo;s Degree in Computer Science, Business Adm. or related field</p>\\n<p>Major: Bachelor&rsquo;s Degree in Business I.T. or related field</p>\\n<p>Years of Direct/Relevant Experience Required: 7 to 10 years of experience</p>\\n<p>Describe the types of previous job experience required:</p>\\n<p>&bull; 10 years of experience in design and implementation of ORACLE/PL/SQL and/or SQL Server Batch processes.</p>\\n<p>&bull; 7 years of experience writing JAVA applications.</p>\\n<p>&bull; 5 years of experience designing and building solutions with ORACLE SOA suite 12c (ESB/BPEL/SOA/BAM).</p>\\n<p>&bull; Strong experience of leading advanced technical resources.</p>\\n<p>&bull; Strong understanding of process and queuing design patterns.</p>\\n<p>&bull; Excellent writing skills.</p>\\n<p>&bull; Demonstrated experience designing and building enterprise level canonical models.</p>\\n<p>&bull; Experience in multiple database platforms, including NoSQL, SQL Server and Oracle.</p>\\n<p>&bull; Experience working with end users to understand requirements, high level designs and build technical solutions from concept to implementation.</p>\\n<p>&bull; Previous healthcare experience is preferred.</p>\\n<p>&bull; Strong problem-solving and analytical ability.</p>\",\n                    \"date_added\": \"12/23/2019 2:19:42 PM\",\n                    \"reply_to\": \"mbuckley@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"SOA Integration Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231227\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Los Angeles \",\n                        \"zip\": \"90017\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 12px;\\\"><strong>Job Description&nbsp;</strong><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Under direct supervision, processes and researches less complex invoices, returns, and credits.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Maintains records and analyzes collections.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Updates and summarizes receivables.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Assists collections, customers, and sales/marketing department in requests for invoices.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Must have experience managing high payment processing volume and calls, must be able to adapt quickly to changes and a fast pace work environment.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><span style=\\\"font-size: 12px;\\\"><strong>Must Be:</strong></span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Detail Oriented</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Exceptional Follow-up and follow-thru</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Takes Initiative</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Ability to multitask</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Exceptional Customer Service Resource must have experience managing high volume of payment processing and calls.&nbsp;</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\">&middot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Tax Season experience managing payments/customer service is a big plus!</span>\",\n                    \"date_added\": \"1/6/2020 12:09:52 PM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Accounts Receivable Clerk \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231263\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kennesaw\",\n                        \"zip\": \"30144\",\n                        \"state\": \"GA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Supporting senior administrators in implementing, deploying, and maintaining Linux (Red Hat, CentOS, Ubuntu) and Windows operating systems in traditional and virtualized environments across a variety of hardware solutions</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Professionally support senior administrators, Information System Security Managers (ISSM), Information System Security Officers (ISSO), senior management, researchers and others team members supporting the customers&rsquo; requirements</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Be part of the team managing requests in the ticketing system for Desktop Support Services.</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Including laptops, scanners, copies, printers, phones and phone service</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Maintain an accurate inventory of hardware and software licenses</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Perform hands-on diagnostics at the desktop level, including installing and upgrading software, implementing file backups, and configuring systems and applications</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Create and/or maintain end-user documentation for operating procedures</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Configure and maintain NAS Storage, Networking, Firewall, and Directory Services such as MS Active Directory management and Group Policy administration</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Perform performance monitoring, results analysis and enhancement, as well as process automation using PowerShell scripting and other available technologies</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Provide daily lab support, systems maintenance, problem resolution, tracing and project support</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Create and maintain installation and configuration Standard Operating Procedures (SOPs)</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Maintain current knowledge of DoD security, technical guidelines and organizational policies</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Provide support for production and development environments</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Provide ad-hoc travel and after-hours support for our Information Systems&rsquo; maintenance, patching and remediation<br />\\n    <br />\\n    </span></li>\\n</ul>\\n<p><strong><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Required Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Understand the basics of Linux (Red Hat, CentOS, Ubuntu) and Windows OS Administration</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Experience with business and engineering applications (ex. Microsoft Office, MATLAB, Visual Studio, VMWare and other scientific/engineering applications)</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Must hold active Top-Secret clearance</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Have current or ability to attain Sensitive Compartmented Information (SCI) and have or ability to pass a Counter-Intelligence (CI) Polygraph</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Occasional travel to Arlington, VA and/or Woburn, MA.</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Excellent problem solving, time management and organizational skills; ability to prioritize work and meet customer demands and deadlines</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Exceptional customer service, interpersonal skills, and desire to learn. Self-motivated with strong analytical, diagnostic, and troubleshooting skills<br />\\n    â\\u0080\\u008b</span></li>\\n</ul>\\n<p><strong><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Desired Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Microsoft and/or Linux technical certifications</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Active Directory including Group Policy, LDAP backend, and Replication</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Enterprise Virtualization Tools</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Multi-Factor Authentication and Public Key Infrastructure</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Web Server management</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Effective utilization of Security Technical Implementation Guidelines (STIGS) and Security Content Automation Protocol (SCAP) Content and Tools</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Host Based Security System (HBSS) implementation and maintenance</span></li>\\n    <li><span style=\\\"color: #626262; font-size: 12pt; font-family: Arial, sans-serif;\\\">Current knowledge of DoD Ports, Protocols, and Services (PPS)</span></li>\\n</ul>\\n<p style=\\\"margin-bottom: 2.25pt;\\\">&nbsp;</p>\",\n                    \"date_added\": \"1/6/2020 10:24:18 AM\",\n                    \"reply_to\": \"eellis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Admin (Top Secet)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231264\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Beaver Creek\",\n                        \"zip\": \"45301\",\n                        \"state\": \"OH\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"text-decoration: underline;\\\">Oracle Database Administrator</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Oracle Database Administrator is required for a 12 month contract in Marlborough, MA. </li>\\n    <li>Provides database support and maintenance for all enterprise applications (ex: I Procurement, I supplier, Inventory, Purchasing, Item database, etc&hellip;), including initial database design and technical support.</li>\\n    <li>Good chance of extension and/or perm hire. </li>\\n</ul>\\n<p><strong>Responsibilities:</strong></p>\\n<p>1. Transforming Access Control Management by onboarding application repositories to manage the access in sensible role groups </p>\\n<p>2. Governing Existing Access Controls in IAG &ndash; Ensuring repositories being managed by the IAG tool are compliant and detecting unauthorized changes to access.</p>\\n<p>&bull; Understand the tech stack the onboarding scope sits on.</p>\\n<p>&bull; Understand the access concepts are understood for the proposed Application/Databases &amp; Entitlement</p>\\n<p>repositories to ensure the connector that is developed is fit for purpose &amp; meets expectations.</p>\\n<p>&bull; Work with Application Team to establish best practise onboarding and script development to ensure all access &amp;</p>\\n<p>entitlements are captured making recommendations on whether a simple Account Discovery Collector is sufficient or</p>\\n<p>whether a full Entitlement Discovery Collector is required.</p>\\n<p>&bull; Ensure the IAG Onboarding work is prioritised both with the Business &amp; Technical Teams.</p>\\n<p>&bull; Ensure alerting is implemented for all connectors where failure occurs and implement appropriate business</p>\\n<p>processes &amp; technical solutions to ensure changes do not fail to implement.</p>\\n<p>&bull; Make connector data available both to Role Builders, Role Owners, Recertification Team &amp; Stakeholders</p>\\n<p>&bull; Where a connector cannot be implemented document provisioning path for Access, establish manual data feed &amp;</p>\\n<p>schedule from application owner.</p>\\n<p><strong>Required Skills:</strong></p>\\n<p style=\\\"margin-left: 0.25in; text-align: justify;\\\">&bull; Strong oracle Database Management and SQL skills.</p>\\n<p style=\\\"margin-left: 0.25in; text-align: justify;\\\">&bull; Ability to configure and manage a DR environment hosted in AWS using Data Guard.</p>\\n<p style=\\\"text-align: justify;\\\">&bull; General AWS skills such as EC2, S3, Lambda creation and Cloud formation deployment</p>\\n<p style=\\\"text-align: justify;\\\">&bull; Ability to contribute and collaborate with the IAG managers in establishing role requirements and integration patterns.</p>\\n<p style=\\\"text-align: justify;\\\">&bull; Basic Python 2.x/3.x programming</p>\\n<p style=\\\"text-align: justify;\\\">&bull; Familiarity with Identity Access and Governance processes and procedures including ABAC/RBAC</p>\\n<p style=\\\"text-align: justify;\\\">&bull; Ability to develop REST Based APIs and debug using standard tools.</p>\\n<p><strong>Duration:&nbsp;</strong>12 month contact</p>\\n<p>PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</p>\\n<br />\\n<div><br />\\n</div>\",\n                    \"date_added\": \"1/9/2020 11:43:36 AM\",\n                    \"reply_to\": \"akang@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Oracle DBA (IAM Experience)\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231265\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"01752\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background-color: #ffffcc;\\\">We&rsquo;re looking for a hyper organized, collaborative individual to join the Channel Engagement team and support our marketing processes and reporting.<br />\\n<br />\\nLiberty Mutual Insurance&rsquo;s Channel Engagement Team:</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>The Channel Engagement team is responsible for communications with insurance agents who sell our insurance</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>The team uses a wide variety of communication channels including print, email, site content, social media and trade publications</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>In addition to our regular communications, the team produces over 35 multi-channel campaigns per year</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Responsibilities:</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Ad coordination</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Maintain the site ad calendar- track all ad insertions and removals, escalate conflicts due to ads running at the same time, identify ads that need refreshing</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Analyze the size of audiences for various ad combinations</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Ensure the correct tracking codes are applied to ads and communicated to the web analytics team</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Web metrics reporting</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Analyze web traffic and results to help the Channel Engagement team understand how agents are using the site and the impact that we&rsquo;re having on the business.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Marketing coordination</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Create tracking codes for all communication materials, maintain documentation of the codes and supply the codes to the publishing and web analytics teams</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Regularly share project status, escalate issues, and develop mitigation plans</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Other</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Support team members as necessary with campaigns<br />\\n<br />\\n</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Qualifications:</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>2+ years of project management experience in a marketing or creative group</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Familiarity with web reporting and tracking code creation<br />\\nSalesforce/Marketing Cloud experience</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Experience with Microsoft Office suite including Excel- vlookups, pivot tables, and large data sets</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>High degree of adaptability and previous experience using influence/persuasion skills in a matrixed environment</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Ability to multitask and juggle multiple competing priorities simultaneously</p>\",\n                    \"date_added\": \"1/7/2020 2:25:59 PM\",\n                    \"reply_to\": \"jarno@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Coordinator\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231267\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"98154\",\n                        \"state\": \"WA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Job Description:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Develop an understanding of the current treaty and facultative reinsurance functions and process flows.</li>\\n    <li>Develop an understanding of the exception handling of complex facultative reinsurance agreements that require processing outside the standard reinsurance workflow.</li>\\n    <li>Develop a basic understanding of reinsurance systems (ReinsurancePro/URS, eReinsure) and integration points with underwriting systems (Salesforce, eReinsure, MEL).</li>\\n    <li>Contribute to the effort to develop and maintain a comprehensive project plan encompassing activity by all Project Team members (i.e., Business SME, internal Starr functions, &amp; 3rd party vendors).</li>\\n    <li>Facilitate requirement workshops with subject matter experts and project stakeholders to verify the current state of reinsurance process flows and their current issues.</li>\\n    <li>Write business requirements documents and facilitate user review and approval of said requirements documents.</li>\\n    <li>Collaborate with appropriate reinsurance department resources (i.e., Underwriting, Reinsurance, Accounting, Operations, IT, etc.) to report and provide resolution to issues with the business requirements documents.</li>\\n    <li>Assist with identifying new process improvement opportunities to reinsurance workflow and systems. Shepherd the business requirements document through the software development life cycle (i.e., Requirements, Design, Development, Test, &amp; Implementation).</li>\\n    <li>Document business requirements for recurring quality control reports to ensure that the future state treaty and facultative reinsurance tasks, data and documentation are compliant with Starr reinsurance guidelines, service level agreements, and the Reinsurance systems (i.e., eReinsure, URS, etc.) requirements.</li>\\n    <li>Assist in evaluating automated solutions (i.e., applications and 3rd party vendor products).</li>\\n    <li>Create use cases when feasible.</li>\\n    <li>Document and manage change requests.</li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Identify and escalate issues appropriately; creating/updating entries in Starr&rsquo;s project and production Help Desk ticketing systems while providing updates to management.</li>\\n    <li>Troubleshoot problems and document solutions.</li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Assist in the development of and participation in test scenarios, test execution and test results validation.</li>\\n    <li>Assist in the development of reinsurance process flow training materials.</li>\\n    <li>Coordinate activities/communications with business users, vendors and internal IT groups.</li>\\n    <li>Ensure business requirements issues are identified, tracked, reported on and resolved in a timely manner</li>\\n    <li>Monitor project progress by tracking activity; resolving problems.</li>\\n    <li>Apply lessons learned to each succeeding project/assignment.</li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Provide timely and accurate updates to senior management.</li>\\n    <li>Interact with compliance functions to ensure appropriate rates, rules and forms are implemented.</li>\\n    <li>Actively manage issues, risks and dependencies for assigned business requirements documentation in order to meet objectives/deliverables, escalate appropriately.</li>\\n    <li>Translate treaty &amp; facultative reinsurance processing activities and objectives in a manner appropriate for various audiences and stakeholders during 1-on-1 interactions, meetings and/or conference calls.</li>\\n    <li>Follow departmental workflow processes and work in a transparent manner.</li>\\n    <li>Completion of ad-hoc tasks and projects assigned by the Manager.</li>\\n</ul>\\n<p><strong>Qualifications to Perform the Job:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>2 &ndash; 5 Years of experience in the insurance &amp; reinsurance industry.</li>\\n    <li>2 &ndash; 5 Years of experience in business analysis.</li>\\n    <li>Experience in developing business requirements documentation.</li>\\n    <li>Strong knowledge and experience with reinsurance (i.e., Facultative, XOL, Q/S, etc.).</li>\\n    <li>Bachelor&rsquo;s degree preferably in business-related field of study.</li>\\n    <li>CPCU and / or ARe designations preferred.</li>\\n    <li>Strong interpersonal and collaborative skills.</li>\\n    <li>High level of self-management.</li>\\n    <li>Meticulous attention to detail.</li>\\n    <li>Independent worker with analytical skills that can contribute to multiple projects.</li>\\n    <li>Ability to work alone but also collaborate across groups &amp; functions in a fast-paced setting.</li>\\n    <li>Excellent communication skills; Strong verbal communications skills and strong writing ability. </li>\\n    <li>Effective presentation skills.</li>\\n    <li>Proficiency with Microsoft Office Suites (i.e., Microsoft Excel, PowerPoint, Word, Project, Visio).</li>\\n    <li>Experience in interacting with business partners at the line level and management position. </li>\\n    <li>Strong written and oral communication skills. </li>\\n    <li>Strong organizational and time management skills.</li>\\n    <li>Excellent problem-solving skills.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/7/2020 6:00:28 PM\",\n                    \"reply_to\": \"tina@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Reinsurance Business Analyst\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231271\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10022\",\n                        \"state\": \"NY\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Responsibilities:</span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">The successful candidate will provide technical leadership to deliver enterprise security architecture, engineering, and implementation of email solutions. This role is action and solution oriented with an emphasis on email protection.</span></p>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Bachelor's degree in an Information Technology or relevant field.</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">5+ years of engineering experience working with email security technologies; preferably in a large organization.</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Knowledge and experience working with Microsoft Office 365 and Azure based solutions.</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience with architecting, implementing and operating email protection services in large enterprises:&nbsp;</span><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif;\\\">Boundary messaging gateways, Security add-on tools for Microsoft Exchange, End-point solutions targeted specifically for email protection</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Provide guidance and leadership to determine, develop, plan, test, and implement email protection and security requirements for the enterprise</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Collaborate with business and IT staff to understand strategic and tactical business, application, or service requirements, then translate those into securely designed solutions</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to propose and implement creative solutions to eliminate malicious (e.g. phishing) and unwanted email (e.g. spam, \\\"graymail\\\")</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Provide complex technical guidance, oversight, and enforcement of security directives, policies, standards, plans, and procedures</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Cross-functional understanding of email operations, security practices and the user experience</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop project documentation including detailed security plans, security architecture designs, detailed security implementation and deployment plans, test plans, and security-focused operational procedures and training materials</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Prepare justifications and business cases for recommendations on Cybersecurity initiatives</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Good communication skills, both oral and written</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop and present program status / metrics to USPS management</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Identify roadblocks and propose effective solutions</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Provide guidance on integrating Presidential Executive Orders and governmentally mandated security controls into the strategic email security plan</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Proven experience improving enterprise messaging systems and reducing email threats and unwanted messages</span></li>\\n</ul>\",\n                    \"date_added\": \"1/6/2020 4:03:53 PM\",\n                    \"reply_to\": \"eellis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Security Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231272\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morrisville\",\n                        \"zip\": \"27560\",\n                        \"state\": \"NC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\"><span style=\\\"font-size: 18px;\\\"><strong>Insider Cyber Threat Analyst<br />\\n</strong></span><br />\\nSoftworld is currently seeking an Insider Threat Analyst to\\nsupport the cybersecurity team of a large federal agency. The candidate will\\nexperience an unparalleled enterprise environment with 100s of 1000s of\\npersonnel and 100s of IT systems.</p>\\n<p class=\\\"MsoNormal\\\"><strong>Responsibilities:</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">The\\n    Insider Threat Analyst will be responsible for conducting user activity\\n    monitoring (UAM) event analysis and/or related cybersecurity analysis of\\n    information supporting the Insider Threat mission.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Conduct\\n    investigations by analyzing and verifying information through various\\n    investigative techniques, internal resources, and conversations/interviews\\n    with persons of interest.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Execute,\\n    and maintain standard operating procedures (SOPs) for the Insider Threat\\n    Program</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Complete\\n    written reports in compliance with current reporting procedures and\\n    policies.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Manage\\n    high risk information security incidents by working in conjunction with\\n    response partners and other risk teams.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Utilize\\n    next generation tools and technology to conduct deep behavioral analytics\\n    assessments/ investigations with a focus on mitigating information\\n    security related insider threats</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Providing\\n    on-call duties and support which may include after-hours support and\\n    coordination among GIS response teams</li>\\n</ul>\\n<p class=\\\"MsoNormal\\\"><strong>Qualifications:</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Bachelor's\\n    degree in Information Security or a related field.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">3 5\\n    years of relevant industry experience.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Hands\\n    on experience with data analytics tools used for Insider Threat\\n    information collection or computer networks or knowledge of other Insider\\n    Threat risk scoring data analytics tools/programs.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Self-directed\\n    and self-motivated with ability to perform and complete tasks with minimal\\n    guidance.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Must\\n    have the ability to write detailed, concise, and accurate reports</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Strong\\n    knowledge of Microsoft Office Suite.</li>\\n</ul>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Familiarity\\n    with eDiscovery tools, processes, and procedures.</li>\\n</ul>\\n<span style=\\\"font-size: 11pt; line-height: 107%; font-family: 'Calibri', sans-serif;\\\"><br />\\n<br />\\nDuration:&nbsp;6 month Contract to Hire (they may accept candidates that do not want to\\nconvert)<br />\\n<br />\\n</span><!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"1/9/2020 1:59:12 PM\",\n                    \"reply_to\": \"sslavin@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Insider Threat Analyst \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231273\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morrisville \",\n                        \"zip\": \"27560\",\n                        \"state\": \"NC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Seeking a Business Continuity Specialist with 1 to 3 years of experience. </span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">The successful candidate will experience an unparalleled large-scale enterprise environment with over 800 Information Technology systems, supporting billions of dollars in annual revenue, supporting a diverse user base spread across the entire US. </span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">The Preparedness Planning, Business Continuity, and IT Disaster Recovery Team is responsible for developing CISO's capability to prepare for, respond to, and recover from any event that disrupts normal operations.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop and support Disaster Recovery (DR) and Continuity of Operations (COOP) plans for multiple enterprise programs and systems.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Maintain Functional Continuity Plans and location specific Business Continuity Plans in accordance with USPS standards.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Coordinate the review, maintenance and testing of products and department Business Continuity Plans, working with business owners to ensure these plans remain valid and fit for purpose.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Coordinate the review, maintenance and testing of technology Disaster Recovery Plans for core infrastructure services, working with IT technicians and Infrastructure management to ensure these plans remain valid.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop the emergency communications system used by CISO and ensure that all staff are appropriately covered by this system. Conduct regular testing to validate the effectiveness of this system.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Work with functional partners to manage incidents that affect or may affect business operations.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Promote awareness of Business Continuity policy, standards, plans, processes and arrangements.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Required Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">The ideal candidate will have a broad range of Business Continuity experience, ideally in the Information Technology or Information Security sector.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Strong technical writing experience.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to work well in a strong collaborative team-oriented environment.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to effectively present information to, and interact well with, different levels of the organization.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Very strong communication and in-person interaction skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Demonstrates attention to detail and strong organizational skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Cybersecurity domain expertise and experience</span></li>\\n</ul>\",\n                    \"date_added\": \"1/10/2020 11:31:58 AM\",\n                    \"reply_to\": \"jmishara@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Business Continuity Specialist\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231275\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Morrisville\",\n                        \"zip\": \"27560\",\n                        \"state\": \"NC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Systems Engineer </span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong>&nbsp;</strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline;\\\">DESCRIPTION</span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Our client in the York, PA area, is looking for a Systems Engineer responsible for the support of various combat vehicle programs. The ideal candidate will</span> <span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">provide systems engineering input to support program reviews and document concept design decisions and support generating system design concept descriptions and capability assessments.<span style=\\\"text-decoration: underline;\\\"></span></span></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">RESPONSIBILITIES:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Knowledge necessary to write requirements specification (subsystem and component). </span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Develop and manage system functions and requirements using DOORS. </span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Balance system design considering system usage CONOPS, performance, constraints, and logistics. Generate system design concept descriptions and capability assessments per the program Statement of Work (SOW).</span></li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"text-decoration: underline; font-size: 10pt; font-family: Arial, sans-serif;\\\">CLEARANCE </span></strong></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Applicants selected will be subject to a U.S. Government security investigation and must meet eligibility requirements for access to classified information. Due to the nature of work performed, U.S. citizenship is required. Active Security Clearance required at the time of hire.</span></p>\\n<br />\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/6/2020 4:37:49 PM\",\n                    \"reply_to\": \"Kchavez@Softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Engineer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231276\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"York\",\n                        \"zip\": \"17104\",\n                        \"state\": \"PA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\">&nbsp;</p>\\n<p><strong>Description:</strong></p>\\n<p>Looking for an Associate Project Manager who will support the Lead Project Manager in achieving company-wide goals through large-scale project initiatives and associated tasks. This position requires a highly motivated individual who is comfortable working with all kinds of people and in all types of cross-functional teams including but not limited to web technology, systems engineering, product managers and data engineers. Must be able to multitask in a fast-paced environment with rapid changes in requirements, communicate clearly and effectively in meetings both in-office and on the phone, take ownership of actions and follow through to completion. Most of all, the candidate should be eager and willing to learn as they go.</p>\\n<p><strong>Roles and Responsibilities:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Schedule, attend, and lead meetings while tracking and assigning action items.</li>\\n    <li>Create, organize, and maintain project documentation - like work plans, tasks, meeting agendas and notes, deliverables etc. - and revise as needed to meet changing requirements.</li>\\n    <li>Continually facilitate the exchange of information between stakeholders and evangelize project goals and timeline.</li>\\n    <li>Help identify project problems, next steps and key stakeholders and work with the team to find and implement solutions.</li>\\n    <li>Provide suggestions to improve project processes to maximize efficiencies. Update agile tracking systems to provide transparency on tasks, actions, priorities and timeline. Agile tracking systems include but are not limited to Jira, Confluence, G Suite, etc.)</li>\\n    <li>Assist in day to day task tracking and sprint planning for multiple teams.</li>\\n    <li>Hold stakeholders accountable for their deliverables.</li>\\n</ul>\\n<p> <strong>Required Skills:</strong>&nbsp;</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Must have some experience providing support for projects for a full product lifecycle - from inception to launch - including task planning and progress reporting. Internet, tech or media company preferred.</li>\\n    <li>Must have excellent computer skills and be internet savvy and able to work in an online, cloud, virtual environment throughout the day.</li>\\n    <li>Must have excellent communication skills both written and verbal.</li>\\n    <li>Must be a team player with a positive attitude with strong leadership skills who can be diplomatic when addressing difficult situations.</li>\\n    <li>Passion for and basic knowledge of interactive technology and platforms required. Experience working with web and mobile technologies and data tools (XML, HTML, mobile development, APIs, AWS) a plus.</li>\\n    <li>Experience working with both Agile and Waterfall development methodologies highly preferred. Certified ScrumMaster certification is a plus.</li>\\n</ul>\\n<span style=\\\"font-size: 11pt; font-family: 'Times New Roman';\\\">Certified Project manager or currently pursuing Project Management Certification</span><br />\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/6/2020 5:08:22 PM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Associate Project Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231278\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Ft. Lauderdale\",\n                        \"zip\": \"33309\",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background-color: #ffffcc;\\\">Seeking a proactive Marketing Operations Specialist responsible for developing, coordinating, executing and tracking marketing programs in Marketo.</p>\\n<p style=\\\"background-color: #ffffcc;\\\">This role will be tasked with developing scalable programs and processes to support our marketing automation, demand generation campaigns and cross-sell/upsell efforts.</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><strong>Key Responsibilities:</strong></p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Collaborate with key stakeholders to execute and monitor campaigns via Marketo and Salesforce to engage prospective and existing customers</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Complete marketing operations responsibilities including but not limited to: data segmenting/collection, list segmentation, email campaign execution, landing page creation, optimization, testing and deployment</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Supports changes to the email production schedule to make sure all deliverables are completed on time</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Build HTML emails, nurture and drip campaigns, and registration forms from templates while maintaining best practice and brand compliance</p>\\n<p style=\\\"background-color: #ffffcc;\\\"><span style=\\\"font-family: Symbol;\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>Upload leads collected from offline channels</p>\\n<p style=\\\"background-color: #ffffcc;\\\">Minimum Education Experience: Bachelor&rsquo;s Degree in Marketing, OR equivalent experience</p>\\n<p style=\\\"background-color: #ffffcc;\\\">Minimum Experience: 1-3 years of related experience</p>\",\n                    \"date_added\": \"1/7/2020 2:18:02 PM\",\n                    \"reply_to\": \"jarno@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Marketing Associate- Email Campaigning\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231279\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Philadelphia\",\n                        \"zip\": \"19103\",\n                        \"state\": \"PA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: #ffffcc;\\\"><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Basic requirements</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of payroll cycle activities including financial aspects and statutory responsibilities</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Project Management experience in payroll migrations</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Experience in managing project costs</span></li>\\n</ul>\\n<p style=\\\"background: #ffffcc;\\\"><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Nice To Have</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of ADP Streamline migrations</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Payroll migrations for global organizations</span></li>\\n</ul>\\n<p style=\\\"background: #ffffcc;\\\"><strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Skills</span></strong><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\"><br />\\nProject Management:</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of the tasks required to migrate payroll from one platform to another</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Compiling tasks from a myriad of sources into a cohesive plan</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Ability to report project status to a variety of interested parties, including senior management</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of resource allocation</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of Microsoft Project</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Knowledge of Microsoft PowerPoint</span></li>\\n</ul>\\n<p style=\\\"background: #ffffcc;\\\"><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Cross-organizational competency</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Ability to effectively communicate with individuals across all levels of organization and across global regions</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Ability to lead extended team members outside of the HR organization</span></li>\\n</ul>\\n<p style=\\\"background: #ffffcc;\\\"><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Finance Analysis Skills</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Understanding of finance activities in relation to payroll in order to direct the financial aspects of the project</span>\\n    <p>Project costs oversite</p>\\n    </li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Ability to track, review and facilitate individual project costs</span></li>\\n</ul>\",\n                    \"date_added\": \"1/7/2020 1:26:15 PM\",\n                    \"reply_to\": \"sdwyer@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Manager - Payroll Migration \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231280\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10005\",\n                        \"state\": \"NY\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Sr. Network Engineer</strong><br />\\n<br />\\n<strong>ESSENTIAL DUTIES AND RESPONSIBILITIES:</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Build, maintain, upgrade network systems and infrastructure in field offices and datacenters (including LAN/WAN devices, firewalls, load balancers, IPS / IDS, VPN, QoS, switches, wireless solutions and VOIP throughout the organization&rsquo;s global network).</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manage network equipment and services refresh program to ensure current supported technology is utilized by coordinating with supplier and business Units.<br />\\nSelect and implement security tools, policies, and procedures in conjunction with the company&rsquo;s security team.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manage VPN, WebSSLVPN, and VPN site to site tunnels on ASA firewalls.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Perform network maintenance and system upgrades including service packs, patches, hot fixes and security configurations.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Monitor performance and ensure system availability and reliability.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Monitor metrics around utilization and capacity and recommend changes for improvement.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Provide Level &ndash; 2/3 support and troubleshooting to resolve network issues and requests.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Work within established configuration and change management policies to ensure awareness, approval and success of changes made to the network infrastructure.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determine network hardware requirements based on system requirements.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Liaise with vendors and other IT personnel for problem resolution.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Develop technical transformation plans and business cases as needed to foster adoption of new network technologies.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Develop new network transport services to support emerging application requirements such as IP Video implementation, Connectivity to Cloud hosting providers, Unified Communications Integration, QoS, etc.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ensure global standards are met and that global projects are designed, implemented and supported consistently.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface with other Vendor Infrastructure domain experts and project managers to develop and deliver solutions that cross multiple technical domains.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to participate in on-call rotation.</p>\\n<p><strong>JOB QUALIFICATIONS:</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10 or more years of experience in a technical network position</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proven hands-on network engineering experience</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5 or more years of experience in a large, global environment is preferred</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bachelor&rsquo;s degree in Computer Science or extensive relevant experience will be considered</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Cisco Certification preferred (CCNP or higher)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong working knowledge of TCP/IP protocols, concepts and application in production environments (DNS, DHCP, FTP, NTP, etc.)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong working knowledge of LAN / WAN protocols and technologies (EIGRP, OSPF, BGP, MPLS, VPLS, IPsec, VPN/DMVPN/GETVPN, QOS, etc.)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong working knowledge of the following hardware, software, and protocol includes but is not limited to; Cisco Nexus Series, Cisco Routers, Cisco Catalyst switches, Cisco ASA firewalls, Cisco WLC controllers, Cisco Access Points, Cisco ACS, WCS</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hands-on experience with monitoring, network diagnostic and network analytics tools</p>\\n<p><strong>Critical Knowledge, Skills, and Abilities:</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A highly self-motivated individual who can work independently as well as in a team environment</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to handle multiple tasks while prioritizing and delivering results on time</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Excellent verbal and written communication skills Ability to think strategically with technical vision</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Proven project management and leadership skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Attention to detail and strong organizational skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to work in high-pressure and fast paced environment</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;High degree of integrity, constant vigilance, sound judgment and the ability to appropriately handle exposure to highly confidential and sensitive company information</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;High level of internal customer responsiveness</p>\",\n                    \"date_added\": \"1/7/2020 12:06:57 PM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Network Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231282\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Waltham\",\n                        \"zip\": \"02451\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"color: black; font-size: 10pt; font-family: Arial, sans-serif;\\\">Softworld is currently seeking a driven and talented Cloud Security Engineer to join our clients thriving Cloud Services business unit and work with some of the best Cloud Architects and Cloud Engineers in the market.&nbsp; This individual will bring a passion for technology, a strong technical skill set, and proven experience developing security capabilities on large projects</span></p>\\n<p><strong><span style=\\\"color: black; font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience (one or more of the below should suffice):</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience deploying and configuring Palo Alto devices or similar Next-Generation Firewalls</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience working with Centrify Identity Platform for IAM/PAM or similar</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience working with Splunk Enterprise Security for SIEM or similar</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Experience working with Imperva SecureSphere for Database Activity Monitoring or similar</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Hands-on experience working on migration projects</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Basic knowledge of Terraform, Ansible and AWS CloudFormation</span></li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"color: black; font-size: 10pt; font-family: Arial, sans-serif;\\\">Qualifications:&nbsp;</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Bachelors degree in a technical discipline</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">5+ years of experience working with networking and security technologies</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Broad experience working on technical security architectures</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Depth of knowledge of cloud platform networking, connectivity and security constructs</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Knowledge around cloud infrastructure in general and related components (e.g.: DNS, NTP, authentication, storage, logging tools, logging services, proxies)</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Depth of knowledge around encryption and certification management</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Willingness to learn, collaborate, contribute and improve</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Ability to train other team members on key products and areas of subject matter expertise</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Strong written and verbal communication skills</span></li>\\n</ul>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif;\\\">Strong analytic, organization, presentation, customer service and facilitation skills</span></li>\\n</ul>\",\n                    \"date_added\": \"1/7/2020 2:12:16 PM\",\n                    \"reply_to\": \"eellis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cloud Security Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231283\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"02114\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<strong style=\\\"background-color: #f8f8ff;\\\">\\n<p><span style=\\\"font-size: 24px;\\\">FSO<br />\\n<span style=\\\"background-color: #f8f8ff; font-size: 13px;\\\">Woburn, MA, Beavercreek, OH &amp; Arlington, VA</span><br />\\n</span></p>\\n<div class=\\\"paragraph\\\" style=\\\"color: #626262; margin: 0px 0px 2em; padding: 0px; font-size: 16px; font-weight: 300;\\\">The FSO/CPSO is a multidisciplinary security position requiring a qualified security professional in support of Collateral Programs, as well as supporting Special Access Program (SAP). The FSO/CPSO is responsible for the management, direction, administration and development of security programs and procedures for those programs that have contractually imposed security requirements in excess of normal National Industrial Security Program Operating Manual (NISPOM) requirements. The FSO/CPSO is the primary interface with government agencies regarding assigned program security matters and requirements. The FSO/CPSO will complete the PAR process, prepare for inspections, process visit requests, conduct security briefings, refreshers and debriefings, maintain access rosters, classified shipments, and IDS/access management systems and perform other duties as assigned.<br />\\n<br />\\n<strong>Job Description:</strong>\\n<ul style=\\\"margin: 5px 0px; padding: 0px 0px 0px 2em; list-style-image: none;\\\">\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Perform program security administrative tasks and duties i.e. filing, updating logs/lists, supplies, coordination with internal and external customers</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Interpret and implement security classification guidance</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Assist in the development of Program Protection Plans (PPPs)</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Investigate and document security violations/incidents, providing recommendations for corrective actions to program personnel/management</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Develop and maintain the program's Standard Operating Procedure (SOP)</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Responsible for daily security operations and NISP/NISPOM compliance for the facility</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Prepare and participate in yearly DSS Security Vulnerability Assessment</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Maintain personnel security records for Collateral, SAP, and SCI related programs to include the use of SIMS, JPAS, and Scattered Castles</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Submit employees for clearances and periodic reinvestigations through JPAS as required</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Perform initial access eligibility determinations and create PARs and SCI nominations</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Conduct internal self-inspections and assist with Staff Assistance Visits and Customer Security Assessments</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Train and orient employees in security policies and procedures to ensure compliance with government and customer regulations</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Conduct secure equipment (e.g. secure telephone and encryption devices) and classified keying material inventories, inspections and other COMSEC related support and oversight functions</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Maintain classified material accountability records to include inventory lists, receipt and transmittal records and final disposition documentation</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Working knowledge in the preparation and maintenance of prime and subcontract DD254s</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Ensure all classified materials are marked and controlled in accordance with contractual requirement</li>\\n</ul>\\n&nbsp;<br />\\nPOSITION REQUIREMENTS<br />\\n<strong>Required Qualifications:</strong>\\n<ul style=\\\"margin: 5px 0px; padding: 0px 0px 0px 2em; list-style-image: none;\\\">\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">4+ Years' experience as an FSO/CPSO</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Active Top Secret security clearance</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Experience and ability to effectively use JPAS, Scattered Castles, NISS, DISS, e-QIP and DIAS</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Proficient in the use of MS Office Suite - specifically Word, Excel, Access and PowerPoint</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Detail oriented and well organized; able to multi-task and handle competing priorities and deadlines</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Experience in reviewing DD254's at all levels (from proposal to close out) to identify security requirements and then assure compliance</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Experience reviewing all security documents to include E-QIPs for accuracy and completeness</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Excellent communications skills (written &amp; oral)</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Customer focused and has excellent time management skills.</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Willing to travel on company business (approximately 10%)<br />\\n    <br />\\n    </li>\\n</ul>\\n<strong>Desired Skills:</strong>\\n<ul style=\\\"margin: 5px 0px; padding: 0px 0px 0px 2em; list-style-image: none;\\\">\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Basic understanding of Cyber Security, specifically Risk Management Framework (RMF)</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Ability to perform COMSEC duties including inventory and disposition</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Knowledgeable of the DoD SAP Manuals Vol 1-4</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Previous security experience working in a DoD/SAP environment</li>\\n    <li style=\\\"margin: 0px; padding: 0px; list-style-type: disc; list-style-image: none;\\\">Experience and working knowledge of ICD 705-1, Physical/Technical Security Standards for SCIFs</li>\\n</ul>\\n</div>\\n</strong>\",\n                    \"date_added\": \"1/7/2020 6:38:15 PM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"FSO\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231287\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Woburn\",\n                        \"zip\": \"01801\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-family: Arial; font-size: 13px;\\\">Senior ServiceNow Developer - CSM<br />\\nLocation: remote with travel<br />\\nDuration: 6 months contract to hire<br />\\n<br />\\n</span>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\"><span style=\\\"background: white; color: #515151;\\\">PURPOSE of POSITION:</span><span style=\\\"color: #515151;\\\"><br />\\n<br />\\n<span style=\\\"background: white;\\\">The ServiceNow Developer, Senior - Customer Service Management (CSM) is a technical resource that possesses advanced administration capability and is able to design, build, and customize ServiceNow applications and services. The Developer works across applications, delivers new functionality and innovative solutions, and supports the entire development lifecycle as well as operational enhancements, maintenance, and production support of all modules and applications deployed on the platform. The Developer works with Solution Architects, Scrum Masters, Business Analysts, other Developers, and Administrators on an as needed basis to ensure that design and code meets customer requirements and is in line with industry standards and best practices. The Developer conducts tasks and assignments as directed and works under minimal supervision with some latitude for independent judgment.</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">MAJOR RESPONSIBILITIES/ESSENTIAL FUNCTIONS:</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">1. 50%: Designs and develops new ServiceNow applications and services. Works with Solution Architects to ensure appropriate platform design, utilizing out of the box functionality when available and minimal custom code. Completes development activities in accordance with best practices, effectively and efficiently meeting documented story requirements. Executes all required development lifecycle process steps.</span><br />\\n<span style=\\\"background: white;\\\">2. 30%: Provides mentoring and guidance for ServiceNow Developers. Provides growth opportunities for System Administrators by conducting technical reviews and assessments of work, sharing knowledge and experience, and ensuring adherence to best practices.</span><br />\\n<span style=\\\"background: white;\\\">3. 10%: Assists ServiceNow System Administrators with incident resolution, as needed. Provides troubleshooting and technical support for complex operational issues.</span><br />\\n<span style=\\\"background: white;\\\">4. 10%: Assists ServiceNow Business Analyst in estimating story level of effort. Provides effort estimates for work to be completed on approved stories.</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">ESSENTIAL QUALIFICATIONS:</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">Bachelor&rsquo;s Degree</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">Type of Credentials/Licenses: ServiceNow Developer or Implementation Specialist Certification required, ITIL Foundations preferred</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">Related Work Experience: 4-6 years</span><br />\\n<br />\\n<span style=\\\"background: white;\\\">&bull; 4-6 years&rsquo; experience working with ServiceNow as a System Administrator and at least 2 years as a Developer</span><br />\\n<span style=\\\"background: white;\\\">&bull; 2 years&rsquo; experience with applications/modules beyond the core ITSM platform</span><br />\\n<span style=\\\"background: white;\\\">&bull; Strong knowledge of ServiceNow Best Practices and ongoing knowledge of latest ServiceNow features</span><br />\\n<span style=\\\"background: white;\\\">&bull; A minimum of 4 years recent experience with the following technologies:</span><br />\\n<span style=\\\"background: white;\\\">&bull; Development of scoped applications</span><br />\\n<span style=\\\"background: white;\\\">&bull; Knowledge of team development and update set best practices</span><br />\\n<span style=\\\"background: white;\\\">&bull; Data source configuration, transform maps, scheduled jobs, and</span><br />\\n<span style=\\\"background: white;\\\">import sets</span><br />\\n<span style=\\\"background: white;\\\">&bull; LDAP integrations, including SSO (AD, Azure AD, Okta, etc.)</span><br />\\n<span style=\\\"background: white;\\\">&bull; MID servers, to include performance tuning</span><br />\\n<span style=\\\"background: white;\\\">&bull; Extensive knowledge of the Glide class</span><br />\\n<span style=\\\"background: white;\\\">&bull; JavaScript and XML</span><br />\\n<span style=\\\"background: white;\\\">&bull; Web Services integrations including REST, SOAP, and JSON</span><br />\\n<span style=\\\"background: white;\\\">&bull; Bootstrap and AngularJS frameworks, AJAX</span><br />\\n<span style=\\\"background: white;\\\">&bull; Reports, dashboards and homepages</span><br />\\n<span style=\\\"background: white;\\\">&bull; HTML, CSS, Jelly</span><br />\\n<span style=\\\"background: white;\\\">&bull; Strong knowledge of ServiceNow Best Practices and ongoing knowledge of latest ServiceNow features</span><br />\\n<span style=\\\"background: white;\\\">&bull; Knowledge of Service Management best practices (ITIL, ISO, CObIT, etc.), certification preferred</span><br />\\n<span style=\\\"background: white;\\\">&bull; Experience with Agile/Scrum methodology, with participation in the software development life cycle</span><br />\\n<span style=\\\"background: white;\\\">&bull; Excellent analytical and problem-solving skills</span><br />\\n<br />\\n<strong><span style=\\\"background: white;\\\">DESIRED:</span></strong><strong><span style=\\\"background: white;\\\"><br />\\n</span></strong><span style=\\\"background: white;\\\">Specialized ServiceNow Customer Service Management (CSM)</span></span></span></p>\",\n                    \"date_added\": \"1/8/2020 9:56:28 AM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior ServiceNow Developer - CSM (Remote)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231289\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Manassas \",\n                        \"zip\": \"20109\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: white; margin-bottom: 11.25pt;\\\"><strong><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">PURPOSE of POSITION:</span></strong><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">&nbsp;<br />\\n<br />\\nThe Cloud/DevOps Engineer, Senior is a hands-on engineering and implementation role leveraging AWS and other cloud technologies in a large multi-customer AWS environment. The Cloud/DevOps Engineer works within a Hybrid Cloud (AWS and On-Prem) to effectively harness the power and versatility of Cloud technologies to achieve operational efficiencies and cost savings. This position provides cloud solutions support, solution design, and implementation with an emphasis on leveraging AWS services and best practices. The position implements and reviews AWS solutions using a wide range of AWS services with emphasis on Infrastructure as Code, Python and Ansible implementations.<br />\\n<br />\\n<strong>MAJOR RESPONSIBILITIES/ESSENTIAL FUNCTIONS:&nbsp;</strong><br />\\n<br />\\n1. 40%: Design and implement AWS cloud solutions with emphasis on adapting AWS services to our customers&rsquo; needs.<br />\\n2. 40%: Troubleshoot and resolve issues with AWS Cloud and related trouble tickets.&nbsp;<br />\\n3. 10%: Gather technical requirements, assess client capabilities and analyze findings to provide appropriate Cloud solution recommendations and adoption strategy.&nbsp;<br />\\n4. 10%: Provides mentoring to aide in the development and growth of fellow team members.&nbsp;<br />\\n<br />\\n<strong>ESSENTIAL QUALIFICATIONS:</strong>&nbsp;<br />\\nType of Credentials/Licenses: AWS Industry Certifications<br />\\nRelated Work Experience: 3-6 years&nbsp;<br />\\n<br />\\n<strong>KNOWLEDGE/SKILLS/ABILITIES:</strong></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience working as part of an Agile/Kanban Team</span>\\n    <ul style=\\\"list-style-type: circle;\\\">\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Ability to self-start and successfully contribute in an environment while working seamlessly in a distributed team via collaboration tools</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Willingness to adapt and change and take on new challenges</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Self-starter with the ability to work independently or as part of a project team</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Strong analytical problem-solving ability</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Strong written and verbal communication skills</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Positive attitude and a strong commitment to delivering quality work</span></li>\\n    </ul>\\n    </li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with DevOps concepts, methodologies, and tools.</span>\\n    <ul style=\\\"list-style-type: circle;\\\">\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with Git is a must.</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with Jenkins and Ansible highly preferred.</span></li>\\n    </ul>\\n    </li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with ServiceNow (or similar ITSM tool) to self-select AWS and related trouble tickets from a queue and successfully resolve them to meet or exceed documented SLAs</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Thorough understanding of AWS infrastructure and services including but not limited to EC2, EBS, S3, CloudWatch, Cloud Trail, IAM, AWS Config, etc.</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Automation experience with Ansible and AWS automation services</span>\\n    <ul style=\\\"list-style-type: circle;\\\">\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experienced in authoring and updating Python scripts</span></li>\\n        <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Strong automation experience with Python ideally or other solid scripting language</span></li>\\n    </ul>\\n    </li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Strong abilities with designing and implementing IAM policies</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Strong understanding of Linux/Windows administration and network administration concepts</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with Active Directory, Active Directory Federation Services (ADFS), SAML, web Single Sign-on (SSO), OAuth and related authentication technologies</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">High availability and Disaster Recovery principles, patterns and usage</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Experience with networking principles and technologies (DNS, Load Balancers, Reverse Proxies)</span></li>\\n    <li><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Practical experience sizing hardware and storage needs</span></li>\\n</ul>\\n<p style=\\\"background: white; margin: 15.75pt 0in 0.0001pt;\\\"><span style=\\\"color: #535353; font-size: 22.5pt; font-family: Arial, sans-serif;\\\">Qualifications</span></p>\\n<p style=\\\"background: white; margin: 15.75pt 0in 7.9pt;\\\"><span style=\\\"color: #515151; font-size: 18pt; font-family: Arial, sans-serif;\\\">Education</span></p>\\n<p style=\\\"background: white; margin-bottom: 11.25pt;\\\"><strong><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Required</span></strong></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"color: #515151; font-size: 11.5pt; font-family: Arial, sans-serif;\\\">Bachelors or better in Information Technology.</span></p>\",\n                    \"date_added\": \"1/8/2020 9:53:14 AM\",\n                    \"reply_to\": \"eellis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cloud/DevOps Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231290\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Cloud Architect</span></strong></p>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\"><strong><span style=\\\"font-family: Arial, sans-serif;\\\">*Must be US Citizen*</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Cloud Architect needed for a Contract to Hire role in Windsor Mill or Columbia, MD or Manassas or Richmond, VA</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">35%: Designs Cloud environments with a focus on AWS. Responsible for the design of production, staging, QA and development Cloud Infrastructure running in 24x7 environments</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">25%: Delivers customer Cloud strategies, aligned with business and security objectives.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">20%: Provides hands-on AWS implementation and peer review of IAM, Infrastructure as Code, Lambda, AWS Config rules, etc..</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">10%: Cultivates innovation allowing for process improvements across the program. </span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">10%: Provides mentoring to aide in the development and growth of team members</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Required Skills:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Bachelor&rsquo;s Degree</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">AWS Industry Certifications</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Related Work Experience: 6 to 8 years</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Extensive AWS based Cloud Architecture experience leveraging the multidisciplinary skills of information security, automation, AWS infrastructure and DevOps in AWS environment</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Thorough understanding of AWS infrastructure and services including but not limited to EC2, EBS, S3, CloudWatch, Cloud Trail, IAM, AWS Config, etc.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Strong abilities with designing and implementing IAM policies</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Experience using services such as Route 53 and VPC to design and implement cloud networking using public and private subnets, internet access and VPC peering</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Knowledge of the Risk Management Framework, FedRAMP, and industry best practices related to cloud security</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Act as a driver for integrating new technologies, methodologies, to facilitate agility and flexibility while improving capability</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Be able to write technical feasibility assessments for cloud components and/or solutions</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Be able to develop and execute on proof of concept solutions for leadership and client buy-in</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Comfortable talking about technical things with business people and business things with technical people. Able to express complex concepts in plain language to reach broader audiences.</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Ability to craft a compelling message and tailor it for a given audience. Ability to mix deep technical expertise with simple, everyday language to deliver a story that is memorable and useful</span></li>\\n    <li><span style=\\\"font-size: 11pt; font-family: Arial, sans-serif;\\\">Strong verbal and written communication skills, including an ability to effectively lead and influence interactions with both business and technical teams.</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif;\\\">Duration: 6 Month Contract to Hire</span></strong></p>\\n<p><span style=\\\"font-family: Arial, sans-serif;\\\"><br />\\n</span><span style=\\\"color: black; font-family: Arial, sans-serif;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\",\n                    \"date_added\": \"1/8/2020 1:59:13 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cloud Architect\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231291\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"\",\n                    \"date_added\": \"1/8/2020 1:37:50 PM\",\n                    \"reply_to\": \"sstalcup@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Security Operations Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231294\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Purpose of Position</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>The Systems Architect designs, implements, and maintains the organization's security applications, systems and/or infrastructure. </li>\\n    <li>The Systems Architect provides an architectural framework for security information system development, maintenance, and enhancement efforts, understands user and process requirements and ensures those requirements can be achieved through high quality deliverables. </li>\\n    <li>The Systems Architect works closely with developers and engineers to develop road maps for applications, align development plans, and to ensure effective integration among information systems and the IT security infrastructure. </li>\\n    <li>The Systems Architect monitors technological advancements to ensure that solutions are continuously improved, supported, and aligned with industry and company standards as well as emerging business requirements. </li>\\n    <li>The Systems Architect understands the interactions between systems, applications, and services within the environment, and evaluate the impact of changes or additions. </li>\\n    <li>The Systems Architect analyzes systems and performs usability testing to ensure performance and reliability, enhance scalability, and meet security requirements. </li>\\n    <li>The Systems Architect is considered highly skilled and proficient in discipline and conducts complex work important to the organization. </li>\\n    <li>The Systems Architect works under minimal supervision with some latitude for independent judgment.</li>\\n</ul>\\n<p><strong>Major Responsibilities/Essential Functions</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Participate in the planning, architecture, and design of customer security projects that are in adherence to CMS policies and procedures such as the TRA and ARS Responsible for updating all current security policies, procedures, and documents housed within the program's document repository.</li>\\n    <li>Develop and maintain the strategic IT security solutions to address the future needs and plans for enterprise architecture, platforms, technologies, and tools required to sustain a high level of application performance and security.</li>\\n    <li>Builds strong customer relationships and delivers customer-centric solutions.</li>\\n    <li>Cultivates innovation allowing for new and better ways for the company to be successful.</li>\\n    <li>Collaborates well with cross functional peers; able to drive decisions when consensus is lacking.</li>\\n</ul>\\n<p><strong>Essential Qualifications</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Bachelor&rsquo;s degree with a minimum of 4 years relevant experience or equivalent combination of experience and education.</li>\\n    <li>ANSI 17024 preferred; required within 90 days of hire.</li>\\n    <li>Previous Architectural Experience of Advanced IT Infrastructures required.</li>\\n    <li>Demonstrated with application and/or infrastructure architectural experience with progressive responsibilities.</li>\\n    <li>Hands-on knowledge of current technology standards/trends coupled with a desire to continually expand personal knowledge/skills.</li>\\n    <li>Ability and interest in mentoring technical staff and raising collective technical competencies.</li>\\n    <li>Ability to manage change and cope with complex and ambiguous situations.</li>\\n    <li>Ability to establish and maintain relationships with other business and technology leaders.</li>\\n    <li>Strong written and verbal communication skills coupled with the ability to tailor communication to all levels of an organization.</li>\\n    <li>Open-minded with proven ability to work collaboratively with others in team environment.</li>\\n    <li>Experience identifying, defining and implementing technical design/coding standards.</li>\\n    <li>Desired Technical Skills &ndash; Sitecore, SalesForce, Xamarin, Responsive Web Design (AngularJS), Azure, API Management, CI/CD (Jenkins/GitHub/Artifactory/Ansible), Spring Boot, Emerging Database Technologies (Hadoop, NoSQL), Identity Access Management (OKTA, Saviynt, etc.) , Application Performance Management (New Relic, SteelCentral), AWS, VMware, RHEL, SAN Storage Technologies, Contanerization Technologies (Docker, Kubernetes, Lambda, etc.).</li>\\n    <li>Experience with Security-related architecture and design.</li>\\n    <li>Experience creating logical and physical system designs with Visio.</li>\\n    <li>Solid understanding of SDLC, Release Engineering, and Automated deployment processes.</li>\\n    <li>Experience with tiered architectures &ndash; e.g. presentation, application, data.</li>\\n    <li>Familiar with ITSM/ITIL management concept.</li>\\n</ul>\\n<p><strong>Scope of Position</strong></p>\\n<p><strong>Individual Contributor</strong></p>\\n<p>This position is an individual contributor and has no supervisory responsibilities. Provides functional expertise through day-to-day work tasks.&nbsp; Works under supervision of management.</p>\",\n                    \"date_added\": \"1/8/2020 11:25:23 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Systems Architect\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231295\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Baltimore\",\n                        \"zip\": \"21244\",\n                        \"state\": \"MD\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"Required Skills:<br />\\n<br />\\n2D Drafting and detail drawing<br />\\nAutoCAD 2D experience<br />\\nElectrical background<br />\\n<br />\\nDesired Skills:&nbsp;<br />\\n2D Drafting with marine, shipyard, and shipbuilding experience<br />\\n<br />\\nJob Description:<br />\\n<br />\\nWe are looking for a 2-D Drafter with a minimum of 2 years AutoCad experience.&nbsp;<br />\\n<br />\\nThere is an emphasis on electrical, hardware, schematics and diagrams.\",\n                    \"date_added\": \"1/8/2020 1:02:19 PM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"2D AutoCAD Drafter\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231296\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"N. Kingstown\",\n                        \"zip\": \"02852\",\n                        \"state\": \"RI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\"><strong><span style=\\\"font-size: 12pt; line-height: 107%;\\\">Change\\nManager</span></strong></p>\\n<p class=\\\"MsoNormal\\\"><em>PURPOSE of POSITION:</em> <br />\\n<br />\\nThe Change Manager performs activities related to Change Management and the day\\nto day administration and maintenance of the Change Records according to the\\nChange Process. The Change Manager evaluates and implements technical changes\\nwithin the organization by overseeing modifications to IT infrastructure\\ninvolving hardware, software, and system applications. The Change Manager\\nensures procedures and methodologies are consistent and that the impact to business\\noperations are kept minimal. <br />\\n<br />\\n<em>MAJOR RESPONSIBILITIES/ESSENTIAL FUNCTIONS:</em> <br />\\n<br />\\n1. 40%: Responsible for review and approval of Change Records following the\\nadherence to ITIL and ITSM best practices. This includes open communications\\nfor requests of status and assisting with supplying direction and gaining\\napprovals. <br />\\n2. 20%: Works with change requestors and change owners, answering questions and\\ngiving guidance within the Change Process and Change lifecycle. <br />\\n3. 20%: Maintains Change records, including follow-up of closure code and\\noverdue changes, assistance with rescheduling and the approval process for\\nrescheduling of changes. <br />\\n4. 10%: Responsible for setting up and running the Change calls. This includes\\nemergency calls and advisement under the direction of the IT Change Management\\nSpecialist, Senior. <br />\\n5. 10%: Participates in continuous improvement efforts in enhancing performance\\nand providing increased value to the Change process, using the technologies\\nmade available.<br />\\n<br />\\n<em>ESSENTIAL QUALIFICATIONS:</em> <br />\\n<br />\\n-Computer Science or related technical discipline, or the equivalent combination\\nof education, technical certifications or training, or work experience. <br />\\n<br />\\n-ITIL Foundations v3<br />\\n<br />\\n-Related Work Experience: 4-6 years<br />\\n<br />\\n&bull; Excellent communication skills, both verbal and written.<br />\\n&bull; Proven experience with public speaking and professional dealings with adverse\\nor reluctant participants in <br />\\nan IT or Change setting. Prior experience defusing argumentative situations.<br />\\n&bull; Hands-on, working knowledge of IT environments, in one or more IT roles as a\\nProgram Manager, Release <br />\\nCoordinator or a team lead in IT Operations/Support/Development.<br />\\n&bull; Experience and knowledge of one or more ITSM roles of responsibility.<br />\\n&bull; Experience with ITSM tools such as ServiceNow and/or Remedy</p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"1/10/2020 11:18:55 AM\",\n                    \"reply_to\": \"sslavin@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Change Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231300\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Manassas\",\n                        \"zip\": \"20109\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>MAJOR RESPONSIBILITIES/ESSENTIAL FUNCTIONS:</strong><br />\\n<br />\\n1. 5%: Participates in meetings as part of the team&rsquo;s governance professionals.<br />\\n2. 75%: Monitors the environment and ensures proper baseline identification and update of Configuration Items (CIs), performs periodic audits and provides verification of version release configuration items. Ensure changes to the process methods and processes are properly approved, communicated and managed throughout the Configuration Management process. Daily monitoring of ServiceNow discovery process.<br />\\n3. 10%: Provides advice and guidance on methods, procedures, and requirements to individuals responsible for the creation of documentation. Facilitates periodic meetings with staff to ensure effective communication of Configuration Management policies and procedures to new and current employees.<br />\\n4. 5%: Prepares reports and presentations, both scheduled and adhoc. Ensures correctness of and uploads all project deliverable, reports and other artifacts to designated collaboration website.<br />\\n5. 5%: Develops and maintains Configuration Management process standards, plans, and procedures based on ITIL best practices<br />\\n<br />\\n<strong>ESSENTIAL QUALIFICATIONS:</strong><br />\\n<br />\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Bachelor&rsquo;s Degree</li>\\n    <li>Course of Study/Major: technology-related field, or equivalent work and/or education related experience.\\n    <p>Related Work Experience: 4-6 years</p>\\n    </li>\\n    <li>Direct experience with ServiceNow, CMDB, change and discovery</li>\\n</ul>\\n<span style=\\\"font-size: 11pt; font-family: 'Times New Roman';\\\">Ability to work with core Microsoft tools (Word, PowerPoint, EXCEL and Outlook),</span><br />\\nMS Project and Visio.<br />\\n&bull; Strong verbal and written communication skills.<br />\\n&bull; Demonstrated experience with ITIL/ISO/CMMI level configuration control.<br />\\n&bull; Demonstrated experience with end-user engagement, communication, and<br />\\ntraining.<br />\\n&bull; Demonstrated successful experience influencing diverse teams towards<br />\\nexecution of common engineering/operations objectives.<br />\\n&bull; High level of personal integrity, ability to professionally handle confidential<br />\\nmatters.<br />\\n&bull; Prior working knowledge of Software Development Life Cycle (SDLC), project management processes, industry security standards and governance, identity and access management, network security, cloud security, data security.<br />\\n<br />\",\n                    \"date_added\": \"1/9/2020 10:53:08 AM\",\n                    \"reply_to\": \"eellis@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Configuration Management Analyst\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231302\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Manassas \",\n                        \"zip\": \"20109\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>PHP Developer&nbsp;</strong></p>\\n<ul>\\n    <li>Develop new business-led features with an emphasis on performance and user experience</li>\\n    <li>Write PHP and JavaScript code to extend and enhance the live streaming video pages</li>\\n    <li>Build interactive UX using html and css based on designs provided by design team</li>\\n    <li>Deploy periodic site updates to QA, stage, and production environments</li>\\n    <li>Provide engineering support to stakeholders, ensuring a high level of application availability and stability</li>\\n</ul>\\n<p><strong>Key Projects:</strong></p>\\n<ul>\\n    <li>Build from the ground up or and/or support existing applications for HQ 24/7 online network</li>\\n    <li>Build a set of tools and APIs to support various video production needs</li>\\n    <li>Adapt and optimize current systems for deployment on cloud-based infrastructure</li>\\n    <li>Refactor various parts of the site to be more efficient and build sharable components</li>\\n</ul>\\n<p><strong>Required Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>Bachelor's in Computer Science or equivalent</li>\\n    <li>Minimum 3 years of PHP development experience and familiarity with Symfony framework, composer package management and Twig templating engine.</li>\\n    <li>Minimum of 2 years of core JavaScript NodeJS experience, 1 year of React.js experience</li>\\n    <li>Minimum of 2 years of experience building UI/UX from the ground up based on designs provided</li>\\n    <li>Ability to design and debug complex systems.</li>\\n    <li>Proven experience using and writing content-driven REST APIs</li>\\n    <li>You possess strong initiative and the ability for creative thinking with product development staff plus the ability to work in a collaborative, innovative, flexible and team-oriented environment</li>\\n    <li>You have excellent understanding of Object Oriented Programming and Design</li>\\n    <li>Worked with agile processes</li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/9/2020 12:00:16 PM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"PHP Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231304\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Brentwood\",\n                        \"zip\": \"37027\",\n                        \"state\": \"TN\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\"><strong><em><span style=\\\"font-size: 13pt; line-height: 107%;\\\">Credit\\nand Collections Representative</span></em></strong></p>\\n<p class=\\\"MsoNormal\\\"><strong><em><span style=\\\"font-size: 13pt; line-height: 107%;\\\">&nbsp;</span></em></strong></p>\\n<p class=\\\"MsoNormal\\\"><strong>Job Description</strong><br />\\n<br />\\nIn the premium analyst role, you will be responsible for delivering first-class\\ncustomer service to our clients. You will interact frequently with internal and\\nexternal customers and/or business partners as it correlates to account\\nreconciliation, aging reports, payment history/application, and collection\\nanalysis. The role requires analyzing complex data to reconcile and resolve\\ndiscrepancies.<br />\\n<br />\\n<strong>Responsibilities</strong></p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Engage\\nwith Underwriting, Operations and brokers to resolve premium booking and payment\\ndiscrepancies in support of the timely collection of premium receivables.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Manage,\\nmonitor and purse collections of unpaid receivables to ensure adherence to\\ncollection guidelines, credit terms and designated installment plans.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Perform\\npremium collection activities for selected group of OBU's.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Review old\\nreceivable balances for accuracy and collectability. Initiate premium\\ncorrections, cash applications, commission disbursements, return premium\\ndisbursements and write-offs as warranted.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Investigate\\nand resolve disputed items and reconcile balances as required.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Act as a\\nliaison between brokers, underwriting and other XL departments to resolve\\nbilling issues.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Build and\\nmaintain effective relationships with internal and external clients.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Update\\ncollections policies and procedures to ensure Sarbanes-Oxley (SOX) Compliance.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Serve as a\\nsubject matter expert and mentor/trainer to the premium analyst team.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Provide\\nmonthly status report to Management, Finance and Underwriting.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Facilitate\\nconference calls or meetings with internal and external parties to ensure\\ntimely resolve.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Analyze\\nclient data utilizing various reports and resources.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Handle\\nad-hoc reporting requests and special projects.</p>\\n<p class=\\\"MsoNormal\\\"><strong>Qualifications</strong></p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Previous\\nwork experience in a financial or insurance environment is preferred.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 to 3\\nyears of accounts receivable and/or collections experience a plus.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Internal\\ncandidates should have WINS and/or Genius systems experience.</p>\\n<p class=\\\"MsoNormal\\\">&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Microsoft\\nOffice with strong Excel knowledge (pivot table, VLOOKUP, etc.) Access\\nknowledge is a plus.</p>\\n<p class=\\\"MsoNormal\\\"><strong>Education</strong></p>\\n<p class=\\\"MsoNormal\\\">Successful completion of college level curriculum or 2-3\\nyear business experience</p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"1/10/2020 11:29:23 AM\",\n                    \"reply_to\": \"sslavin@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Credit and Collections Representative\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231305\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Exton\",\n                        \"zip\": \"19341\",\n                        \"state\": \"PA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: white;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Technical Lead Software Architect</span></strong></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Our client is looking for a&nbsp;<strong><span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">Technical Lead</span></strong>&nbsp;<strong><span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">Software Architect</span></strong>&nbsp;or <strong>Lead Developer</strong> with a strong customer facing background as well as hands on software development and systems integration skills, with experience in object-oriented methodologies, and proven abilities to design, develop, test and implement complex technical solutions.</span></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">As the&nbsp;<strong><span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">Technical Lead&nbsp;Software Architect/Developer,</span></strong>&nbsp;you will lead a custom application development team to architect, design, develop and support various software products for the Federal Government. Primary responsibilities include the design, implementation, delivery, and documentation of software solutions, meeting the requirements and expectations for our customers.&nbsp; As a member of a highly skilled agile software development team, you will be responsible for developing technology strategies,&nbsp;<span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">architecting/designing</span>solutions, and leading a team through the full software development lifecycle.&nbsp;This will include ensuring the team adheres to sound development practices and principles, working with management to understand the business context informing technical decisions, and mentoring technical staff.</span></p>\\n<p style=\\\"background: white;\\\"><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">The&nbsp;<strong><span style=\\\"padding: 0in; border: 1pt none windowtext;\\\">Technical Architect/Developer</span></strong>&nbsp;will possess the following characteristics:</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Significant experience building solutions utilizing the concepts of loose coupling, object-oriented decomposition, separation of concerns, and domain driven design.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Complete comprehension of software design principles/patterns and software development processes and best practices.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Possess excellent written and verbal communication skills.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">A proven track record of leading engineering teams to adopt and successfully implement new emerging technologies.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience with DevSecOps and AWS Cloud a plus.</span>\\n    <p>Essential Functions/Responsibilities</p>\\n    </li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Mentor and guide our team in applying industry best practices to build reusable software components with API, data-driven, and modular development.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Set the standard for engineering excellence and work closely with our team to inspire and deliver their best work.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Execute against project plans and delivery commitments and oversee technical reviews of code produced by the engineering team.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Work with Senior Product Managers and Business Owners to define technical paths to success, provide transparent direction for the team, and ensure technology decisions support Government and corporate strategies.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Work with analysts, testers, and developers to synthesize requirements and design questions, and act as technical point person with clients throughout the project lifecycle.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Evangelize and strategize the continuous improvement of our software engineering platforms and technologies, application architecture, software products, and SDLC standards, methodologies and controls.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Contribute to team deliverables through hands-on software development, code reviews, and testing.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Produce technical documentation, requirements, specifications and systems operations guides to support our business needs.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Adhere to operating standards for such items as change control, source code control, issue tracking, time reporting, etc.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Hold both yourself and the development team accountable for high standards for code quality and automated test coverage.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Support and enhance a software web application architecture that includes Oracle/MySQL database backend data store, RESTful web service APIs, a variety of user interface frameworks (Struts, APEX, Angular, Knockout, HTML/CSS), and systems and security integration</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Provide key input into software designs, effort and cost estimates, and planning activities as needed.</span></li>\\n</ul>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 10pt; border: 1pt none windowtext; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Qualifications:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">At least 10 years of experience delivering technology-based solutions, with experience in the role of a technical team lead.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience with application development planning and estimation, with proven ability to estimate development tasks and identify associated risks and dependencies.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience executing projects using agile software development principles, and the scaled agile framework.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Skills to evaluate requirements and their impact on performance, user benefit, project timeline, and budget, and make recommendations to the client.</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Skills to write detailed and accurate technical and design specifications.</span></li>\\n</ul>\\n<p style=\\\"background: white;\\\"><strong><span style=\\\"padding: 0in; font-size: 10pt; border: 1pt none windowtext; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Technical Experience:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">10+ years of overall information technology and software development experience (technical architecture, custom application development, systems integration)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">8+ years&rsquo; experience with a variety of development languages and standards, such as Java, J2EE, JavaScript, HTML, JSP, SQL, XML, UML, Web Services</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of software development with specific experience working as a key collaborator on an agile software development team</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years web-based application development (HTML, Javascript, XML)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">5+ years of developing Java-based web applications using technologies such as Spring/Hibernate</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">3+ years of experience designing and developing APIs using RESTful web services</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">3+ years J2EE Application Servers (IBM WebSphere, BEA WebLogic, JBoss)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience with JavaScript-based single page application frameworks (i.e. Angular, Knockout)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Experience designing web application using microservices architectures</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">3+ years&rsquo; experience with multiple Web servers (Apache, Sun, IIS, IHS)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Strong database and SQL knowledge (Oracle, DB2, SQL Server, MySQL)</span></li>\\n    <li><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: #4a4a4a;\\\">Excellent communication skills (effective oral and written skills)</span></li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/10/2020 11:50:52 AM\",\n                    \"reply_to\": \"jobs@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Technical Lead Software Architect/Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231306\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Alexandria \",\n                        \"zip\": \"22202\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"text-decoration: underline;\\\">IT Customer Support Analyst </span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>IT Customer Support Analyst is required for a 12-month contract in Springfield, MA. </li>\\n    <li>Looking for a Level 2 Application Support to CRC location of Springfield MA. This person will provide support to CRC agents. </li>\\n    <li>Must have excellent customer service skills, be English speaking, (Bilingual is a plus). Additionally an insurance background is a positive</li>\\n    <li>Not just reviewing scripts, must be able to dig for answers and collaborate with other IT groups.</li>\\n    <li>Good chance of extension and/or perm hire. </li>\\n</ul>\\n<p><strong>Required Skills:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Need to have heavy Application support for Microsoft Office Suite.</li>\\n</ul>\\n<p><strong>Duration:&nbsp;</strong>6+ month contact</p>\\n<p>PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</p>\",\n                    \"date_added\": \"1/8/2020 5:31:46 PM\",\n                    \"reply_to\": \"akang@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"IT Customer Support Analyst\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231307\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Springfield\",\n                        \"zip\": \"01105\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\">TITLE:&nbsp;AWS Developer&nbsp;<br />\\n<br />\\nJOB DESCRIPTION:&nbsp;</p>\\n<p class=\\\"MsoNormal\\\">The developer will work on bringing a sourced data set over\\ninto the EDW for data analysis purposes.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\">Responsible\\n    for creating an ingestion route for a sourced dataset into the EDW.</li>\\n    <li class=\\\"MsoNormal\\\">Creating\\n    star schema data models, performing ETLs and validating results with\\n    business representatives</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    in writing simple to complex queries</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    working in Data Migration and Data Movement efforts</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    extracting data from Tables, Flat Files in different formats, Queues like\\n    MQ</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    in populating data to Tables, writing data to Flat Files in different\\n    formats, and streaming data</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    working in both Batch and Real-Time Data</li>\\n    <li class=\\\"MsoNormal\\\">Data\\n    Analytics Knowledge and experience extracting data for Analytic Consumers</li>\\n    <li class=\\\"MsoNormal\\\">Strong\\n    AWS Work Experience</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    with creating and reading Parquet files using any programming language\\n    like Clojure, Scala, Java or Python</li>\\n    <li class=\\\"MsoNormal\\\">Experience\\n    with interacting with Hive and Impala tables to extract data</li>\\n    <li class=\\\"MsoNormal\\\">Strong\\n    Core Java experience in concepts like I/O, Multi-threading, Exceptions,\\n    RegEx, Collections, Data-structures and Serialization</li>\\n    <li class=\\\"MsoNormal\\\">At\\n    least 2 years of Experience in handling messaging services using Apache\\n    Kafka (Development of producers and consumers)</li>\\n    <li class=\\\"MsoNormal\\\">At\\n    least 2 years of experience in Kafka , Spark, Map reduce, HDFS, Hive, Hive\\n    UDF, Pig, Sqoop, Oozie and Hbase.</li>\\n    <li class=\\\"MsoNormal\\\">Good\\n    experience in working with cloud environment like Amazon Web Services (AWS)\\n    EC2 and S3.</li>\\n    <li class=\\\"MsoNormal\\\">Good\\n    understanding of Partitions and Bucketing concepts in Hive&nbsp; </li>\\n    <li class=\\\"MsoNormal\\\">AWS,\\n    Hadoop, Java, Python, Spark, Spark SQL, Scala, C++, Kafka, GIT, Maven</li>\\n</ul>\\n<p class=\\\"MsoNormal\\\">DURATION: 6+ months </p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\",\n                    \"date_added\": \"1/10/2020 11:40:20 AM\",\n                    \"reply_to\": \"sslavin@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"AWS Developer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231308\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Franklin\",\n                        \"zip\": \"37067\",\n                        \"state\": \"TN\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p>Softworld is seeking an inquisitive and talented Cloud Engineer and Cloud Systems Administrator, driven to understand how things work and how broken things can be fixed, to join our clients thriving&nbsp;<span style=\\\"text-decoration: underline;\\\">Cloud Assured Managed Services</span>&nbsp;business unit and work with some of the best Cloud Engineers and Senior Cloud Systems Administrators in the market.<br />\\n<br />\\n*This role requires an active clearance.&nbsp;</p>\\n<p><strong>Engineer description:</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Excellent customer facing skills and the calm professional demeanor necessary to bolster customer confidence when stress is highest.</li>\\n    <li>5 years&rsquo; experience infrastructure (cloud) operations; 2+ years of experience in DevOps / cloud engineering.</li>\\n    <li>Proficiency and Proven Hands-on experience AWS Services; EC2, CloudFormation, VPC, ELB, AWS Security, S3, RDS, EBS, ECS.</li>\\n    <li>Experience assessing, deploying, configuring, testing and operating AWS services</li>\\n    <li>Excellent knowledge in Operations Automation scripting, like PowerShell/Linux Shell</li>\\n    <li>Experience in deploying Java-based Web Applications, Tomcat, Apache HTTP, etc...</li>\\n    <li>Experience in rearchitecting on-premise highly available systems and migrate them to AWS infra.</li>\\n    <li>Strong analysis and troubleshooting skills and experience.</li>\\n    <li>Experience in monitoring, metrics collection, and reporting using open source tools.</li>\\n</ul>\\n<p><strong>&nbsp;Administrator description:&nbsp;</strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Excellent customer service skills and the calm professional demeanor necessary to bolster customer confidence when stress is highest.</li>\\n    <li>Seven+ years&rsquo; experience in a customer-centric technical support operations role.</li>\\n    <li>Extensive experience with Windows and UNIX/Linux system administration &ndash; administration within virtualized environments is preferred.</li>\\n    <li>Extensive experience with networking, and storage components (e.g. Operating systems / virtual machines, TCP-IP / DNS, Block / File / Object storage, etc.).</li>\\n    <li>Ability to digest and apply well-written technical documentation and procedures such as architectural diagrams, data flow mappings, operational run-books, IT Service Management processes, etc.</li>\\n    <li>Two+ years experience in cloud-centric environment, preferably AWS cloud</li>\\n</ul>\\n<p><strong>Hours of operation:</strong></p>\\n<p>Candidates will be required to work a planned 8 hour/day (40 hours per week) schedule during any of the below listed shift windows.</p>\\n<p>6am-6pm, 2pm-2am, or 10pm-10am</p>\",\n                    \"date_added\": \"1/9/2020 10:12:14 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Cloud Engineer/Systems Admin \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231310\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Herndon\",\n                        \"zip\": \"20170\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"margin-bottom: 0.0001pt;\\\">Dynamic 365 Development Functional Consultant</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>A Dynamic 365 Development Consultant is needed for a 12-month contract in Nashville, TN</li>\\n    <li>We are looking to leverage the wider Office 365 collaboration tools to create a platform for our sales, account managing and broking teams to work together on pitches and proposals.</li>\\n    <li>Embark on a new instance of Dynamics 365 CRM to support one of the world&rsquo;s leading global insurance brokers.</li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">Required Skills</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Minimum of 5 years of experience<strong></strong></li>\\n    <li>Experience with MS Dynamics 365 CRM<strong></strong></li>\\n    <li>Experience of Data Extracts and Migrations in MS Dynamics<strong></strong></li>\\n    <li>Experience in customization, configuration, workflows and entities with Dynamics 365 CRM.<strong></strong></li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">Desired Skills</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Experience working in a structured development environment, including source code management.</li>\\n    <li>Understanding of SharePoint, MS Flow and Power BI and how these interact with Dynamics 365 CRM.</li>\\n</ul>\\n<p style=\\\"margin-bottom: 0.0001pt;\\\">Duration: 12 months</p>\\n<span style=\\\"font-family: Arial, Verdana; font-size: 13px;\\\">PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span>\",\n                    \"date_added\": \"1/9/2020 11:44:31 AM\",\n                    \"reply_to\": \"mmonroe@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Dynamics 365 Development Functional Consultant\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231311\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Denver\",\n                        \"zip\": \"\",\n                        \"state\": \"CO\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Description:</strong></p>\\n<p>Test Engineering department designs and fabricates equipment to be used in the development and manufacture of tactical hardware.</p>\\n<p>We are seeking individuals who will be fabricating electronic, electro-mechanical assemblies (and sub-assemblies) to Engineering drawings.</p>\\n<p>&nbsp;Fabrication will include the ability to place and solder components on circuit cards and sub-assemblies.</p>\\n<p>&nbsp;The fabrication of wiring harnesses will require connector pinning and de-pinning, and applying mounting hardware.</p>\\n<p>In addition, these lower level assemblies are to be built-up into single, or multi-bay cabinet assemblies, for the delivery to Engineering or Manufacturing Production areas.</p>\\n<p>This position will provide the opportunity for the candidate to work as individual contributor, in a team environment.</p>\\n<p>This would include collaborating with Engineers, and other members of the Fabrication team including other Fabricators, Draftsmen, Procurement, and Quality Inspectors.</p>\\n<p>Daily activity would include not only a fast-paced fabrication environment, but it would also include using several computer based programs that will update job status, Quality Inspections, and Engineering changes.</p>\\n<p>&nbsp;</p>\\n<p><strong>Mandatory</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1-5 years of experience working with electronic equipment fabrication at the assembly and sub assembly level.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1-5 years of experience in wiring, surface mount, and soldering skills.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Must be able read and understand mechanical/electrical drawings in order to fabricate complex prototypes.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Able to build from a kit and using drawing requirements, prepares items for fabrication, test, and submittal to Quality and then Integration.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Able to verify own work thorough use of commercial test equipment. As an example: perform continuity check via the use of a Digital Multi-Meter.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Physically able to lift rack and stack instruments with assistance as required.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pass an eye-exam with, or without, corrective lenses.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;High School diploma, or equivalent experience/combined education, with additional specialized technical training equivalent to a technical Associate degree and/or demonstrated ability to perform assigned technical/para-engineering tasks and 1-5 Years of experience.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interpretation and application of ANSI and military specifications.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Experience with electrical fabrication.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong communication, interpersonal, Team Building, and Team Working Skills.</p>\",\n                    \"date_added\": \"1/9/2020 11:24:04 AM\",\n                    \"reply_to\": \"chenderson@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Technician Level 2\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231312\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32819\",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-size: 12px;\\\"><strong>Softworld is seeking a mid-level Full Stack Developer. The successful candidate will support our customer in the test, development and production of a software model inclusive of several indices and a dashboard.</strong></span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\"><strong>Frontend experience</strong> - JavaScript and experience with React or Node.js highly desired&nbsp;</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\"><em>Python is their desired programming language&nbsp;</em></span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\"><strong>Backend experience</strong> - Some knowledge/use of SQL, deployed multiple production web applications, writing automated tests. <em>Nginx experience is a huge plus, docker a huge plus as well</em></span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><br />\\n<span style=\\\"font-size: 12px;\\\"><strong>Job Responsibilities:</strong></span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\">Design/Create a visualization based on Customer Requirements using Javascript</span><br />\\n<span style=\\\"font-size: 12px;\\\">Develop data tables to be used as a source for the Tableau dashboards.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Follow SDLC processes in the design, development, test, and release</span><br />\\n<span style=\\\"font-size: 12px;\\\">Collaborates with the team members on requirements analysis, design, configuration, change and risk management, documentation, planning, accessibility remediation and compliance, and security and quality assurance</span><br />\\n<span style=\\\"font-size: 12px;\\\">Prepares documentation and provides end-user training and support as necessary;</span><br />\\n<span style=\\\"font-size: 12px;\\\">Establishes productive working relationships and maintains effective communications with teammates and end-users.</span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\"><strong>Requirements:</strong></span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\">Experience as a full stack developer, working on back end, front end, and API code as needed</span><br />\\n<span style=\\\"font-size: 12px;\\\">Strong understanding of performance analysis, tuning and optimization</span><br />\\n<span style=\\\"font-size: 12px;\\\">Demonstrated experience in working with other database and application developers to define application architecture/best practices.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Strong communication skills to interface with customers as well as collaborate in a cross-discipline team environment is required.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Good understanding of business process analysis and mapping.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Ability to work from high-level requirements through detailed specifications.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Strong attention to detail, well-organized, and ability to self-prioritize, manage and adjust multiple tasks as project evolves is required.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Strong in complex SQL and PL/pgSQL experience in Postgres 9.x/10 based environment.</span><br />\\n<span style=\\\"font-size: 12px;\\\">Familiar with GIT and Trello</span><br />\\n<span style=\\\"font-size: 12px;\\\">Familiar with ETL process preferably in a data warehouse</span><br />\\n<span style=\\\"font-size: 12px;\\\">Working experience with Tableau a plus</span><br />\\n<span style=\\\"font-size: 12px;\\\">Experience with Microsoft Word, Excel, and PowerPoint is required.</span><br />\\n<span style=\\\"font-size: 12px;\\\"><br />\\n</span><span style=\\\"font-size: 12px;\\\"><strong>Education:</strong></span><br />\\n<br />\\n<span style=\\\"font-size: 12px;\\\">Bachelor's Degree in Computer Science, Electrical Engineering or Information Systems or related field.</span>\",\n                    \"date_added\": \"1/9/2020 2:56:33 PM\",\n                    \"reply_to\": \"acrossland@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Full Stack Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231138\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20024\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><span style=\\\"text-decoration: underline; font-size: 13.5pt; font-family: 'Times New Roman', serif;\\\">Site Reliability Engineer</span><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Site Reliability Engineer is required for a permanent position\\n    in Boston, MA.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"><span>&nbsp;</span>A nationally recognized\\n    company in Boston is looking for a SRE to create self-provisioning infrastructure.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">The culture of the company is very laid back, with tons\\n    of perks within their new headquarters including an onsite barbershop and\\n    multiple kitchens.</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Required Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience with Docker, Chef and Terraform</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Understanding of scripting with Ruby, Python or\\n    Powershell</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Understanding of AWS </span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Desired Skills:</span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\"></span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">3 years of cloud environment experience.</span></li>\\n    <li class=\\\"MsoNormal\\\" style=\\\"line-height: normal;\\\"><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Experience with C# or Java</span></li>\\n</ul>\\n<p class=\\\"MsoNormal\\\" style=\\\"margin-bottom: 0.0001pt; line-height: normal;\\\"><strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Duration: </span></strong><span style=\\\"font-size: 12pt; font-family: 'Times New Roman', serif;\\\">Permanent.<br />\\nPLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE\\nFOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</span></p>\\n<!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]--><!--[if gte mso 9]><xml>\\n <o:OfficeDocumentSettings>\\n  <o:AllowPNG/>\\n </o:OfficeDocumentSettings>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:WordDocument>\\n  <w:View>Normal</w:View>\\n  <w:Zoom>0</w:Zoom>\\n  <w:TrackMoves/>\\n  <w:TrackFormatting/>\\n  <w:PunctuationKerning/>\\n  <w:ValidateAgainstSchemas/>\\n  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\\n  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\\n  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\\n  <w:DoNotPromoteQF/>\\n  <w:LidThemeOther>EN-US</w:LidThemeOther>\\n  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\\n  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\\n  <w:Compatibility>\\n   <w:BreakWrappedTables/>\\n   <w:SnapToGridInCell/>\\n   <w:WrapTextWithPunct/>\\n   <w:UseAsianBreakRules/>\\n   <w:DontGrowAutofit/>\\n   <w:SplitPgBreakAndParaMark/>\\n   <w:EnableOpenTypeKerning/>\\n   <w:DontFlipMirrorIndents/>\\n   <w:OverrideTableStyleHps/>\\n  </w:Compatibility>\\n  <m:mathPr>\\n   <m:mathFont m:val=\\\"Cambria Math\\\"/>\\n   <m:brkBin m:val=\\\"before\\\"/>\\n   <m:brkBinSub m:val=\\\"&#45;-\\\"/>\\n   <m:smallFrac m:val=\\\"off\\\"/>\\n   <m:dispDef/>\\n   <m:lMargin m:val=\\\"0\\\"/>\\n   <m:rMargin m:val=\\\"0\\\"/>\\n   <m:defJc m:val=\\\"centerGroup\\\"/>\\n   <m:wrapIndent m:val=\\\"1440\\\"/>\\n   <m:intLim m:val=\\\"subSup\\\"/>\\n   <m:naryLim m:val=\\\"undOvr\\\"/>\\n  </m:mathPr></w:WordDocument>\\n</xml><![endif]--><!--[if gte mso 9]><xml>\\n <w:LatentStyles DefLockedState=\\\"false\\\" DefUnhideWhenUsed=\\\"false\\\"\\n  DefSemiHidden=\\\"false\\\" DefQFormat=\\\"false\\\" DefPriority=\\\"99\\\"\\n  LatentStyleCount=\\\"376\\\">\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"0\\\" QFormat=\\\"true\\\" Name=\\\"Normal\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" QFormat=\\\"true\\\" Name=\\\"heading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"9\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"heading 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"toc 9\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footer\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"index heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"35\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"caption\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of figures\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"envelope return\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"footnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"line number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"page number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"endnote text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"table of authorities\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"macro\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"toa heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Bullet 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Number 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"10\\\" QFormat=\\\"true\\\" Name=\\\"Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Closing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Default Paragraph Font\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"List Continue 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Message Header\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"11\\\" QFormat=\\\"true\\\" Name=\\\"Subtitle\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Salutation\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Date\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text First Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Note Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Body Text Indent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Block Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"FollowedHyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"22\\\" QFormat=\\\"true\\\" Name=\\\"Strong\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"20\\\" QFormat=\\\"true\\\" Name=\\\"Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Document Map\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Plain Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"E-mail Signature\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Top of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Bottom of Form\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal (Web)\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Acronym\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Address\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Cite\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Code\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Definition\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Keyboard\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Preformatted\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Sample\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Typewriter\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"HTML Variable\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Normal Table\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"annotation subject\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"No List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Outline List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Simple 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Classic 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Colorful 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Columns 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Grid 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 7\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table List 8\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table 3D effects 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Contemporary\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Elegant\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Professional\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Subtle 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Web 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Balloon Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" Name=\\\"Table Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Table Theme\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Placeholder Text\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"1\\\" QFormat=\\\"true\\\" Name=\\\"No Spacing\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" Name=\\\"Revision\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"34\\\" QFormat=\\\"true\\\"\\n   Name=\\\"List Paragraph\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"29\\\" QFormat=\\\"true\\\" Name=\\\"Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"30\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Quote\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"60\\\" Name=\\\"Light Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"61\\\" Name=\\\"Light List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"62\\\" Name=\\\"Light Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"63\\\" Name=\\\"Medium Shading 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"64\\\" Name=\\\"Medium Shading 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"65\\\" Name=\\\"Medium List 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"66\\\" Name=\\\"Medium List 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"67\\\" Name=\\\"Medium Grid 1 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"68\\\" Name=\\\"Medium Grid 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"69\\\" Name=\\\"Medium Grid 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"70\\\" Name=\\\"Dark List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"71\\\" Name=\\\"Colorful Shading Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"72\\\" Name=\\\"Colorful List Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"73\\\" Name=\\\"Colorful Grid Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"19\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"21\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Emphasis\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"31\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Subtle Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"32\\\" QFormat=\\\"true\\\"\\n   Name=\\\"Intense Reference\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"33\\\" QFormat=\\\"true\\\" Name=\\\"Book Title\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"37\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" Name=\\\"Bibliography\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"39\\\" SemiHidden=\\\"true\\\"\\n   UnhideWhenUsed=\\\"true\\\" QFormat=\\\"true\\\" Name=\\\"TOC Heading\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"41\\\" Name=\\\"Plain Table 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"42\\\" Name=\\\"Plain Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"43\\\" Name=\\\"Plain Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"44\\\" Name=\\\"Plain Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"45\\\" Name=\\\"Plain Table 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"40\\\" Name=\\\"Grid Table Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"Grid Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"Grid Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"Grid Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"Grid Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"Grid Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"Grid Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"Grid Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"Grid Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"Grid Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"Grid Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\" Name=\\\"List Table 1 Light\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\" Name=\\\"List Table 6 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\" Name=\\\"List Table 7 Colorful\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 1\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 2\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 3\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 4\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 5\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"46\\\"\\n   Name=\\\"List Table 1 Light Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"47\\\" Name=\\\"List Table 2 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"48\\\" Name=\\\"List Table 3 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"49\\\" Name=\\\"List Table 4 Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"50\\\" Name=\\\"List Table 5 Dark Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"51\\\"\\n   Name=\\\"List Table 6 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" Priority=\\\"52\\\"\\n   Name=\\\"List Table 7 Colorful Accent 6\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Hyperlink\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Hashtag\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Unresolved Mention\\\"/>\\n  <w:LsdException Locked=\\\"false\\\" SemiHidden=\\\"true\\\" UnhideWhenUsed=\\\"true\\\"\\n   Name=\\\"Smart Link\\\"/>\\n </w:LatentStyles>\\n</xml><![endif]--><!--[if gte mso 10]>\\n<style>\\n /* Style Definitions */\\n table.MsoNormalTable\\n\\t{mso-style-name:\\\"Table Normal\\\";\\n\\tmso-tstyle-rowband-size:0;\\n\\tmso-tstyle-colband-size:0;\\n\\tmso-style-noshow:yes;\\n\\tmso-style-priority:99;\\n\\tmso-style-parent:\\\"\\\";\\n\\tmso-padding-alt:0in 5.4pt 0in 5.4pt;\\n\\tmso-para-margin-top:0in;\\n\\tmso-para-margin-right:0in;\\n\\tmso-para-margin-bottom:8.0pt;\\n\\tmso-para-margin-left:0in;\\n\\tline-height:107%;\\n\\tmso-pagination:widow-orphan;\\n\\tfont-size:11.0pt;\\n\\tfont-family:\\\"Calibri\\\",sans-serif;\\n\\tmso-ascii-font-family:Calibri;\\n\\tmso-ascii-theme-font:minor-latin;\\n\\tmso-hansi-font-family:Calibri;\\n\\tmso-hansi-theme-font:minor-latin;\\n\\tmso-bidi-font-family:\\\"Times New Roman\\\";\\n\\tmso-bidi-theme-font:minor-bidi;}\\n</style>\\n<![endif]-->\\n<style>\\n    .bd_title\\n    {\\n    font-weight: bold;\\n    }\\n</style>\",\n                    \"date_added\": \"1/10/2020 11:35:16 AM\",\n                    \"reply_to\": \"gbishop@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior Site Reliability Engineer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231315\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston \",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"font-family: Arial;\\\">Principal Java Microservices Software Engineers&nbsp;&amp; Architect (multiple positions)<br />\\nLocation: Burlington, MA<br />\\nDuration: permanent</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Duties and Responsibilities:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Responsible for the design, architecture, and development of a world class dynamic web security scanning product</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Ability to solve challenging technical problems independently or collaboratively</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work across scrum teams to assist team members with analysis and implementation of software solutions</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work with Engineering Managers, Architects, and Product Owners to clearly outline alternative technical approaches, pros/cons, and risks/mitigations to different projects</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Required Skills/Experience:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">10+ years of software development experience (preferably Java)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience designing microservices (Spring Boot Required)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience developing and designing Rest APIs</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience working across multiple scrum teams to define clean interfaces and integration points</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with secure coding practices</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with AWS (EC2, S3, RDS, SQS/SNS, lambdas, etc)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Server side Java Development experience</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with Agile software development methodologies.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Excellent written and verbal communication skills</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">A strong team player, concerned more about team &amp; product successes vs. individual recognition.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Bachelor&rsquo;s Degree in Computer Science, Information Science or relevant field. (Master&rsquo;s degree preferred.)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Desired Skills/Experience:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Exposure to security products and a secure product development lifecycle</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with cloud computing environments (preferably Amazon Web Services (AWS))</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience working on SaaS Products (ideally in Microservices architecture)</span></p>\\n<p><span style=\\\"font-size: 10pt; font-family: Arial;\\\">Experience working in a DevOps organization responsible for the deployment, monitoring, and stability of your own services.</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n</ul>\",\n                    \"date_added\": \"1/10/2020 10:05:37 AM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Principal Java Microservices Software Engineers & Architect (multiple positions) \",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"231317\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Burlington\",\n                        \"zip\": \"01803\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Software QA Engineer -&nbsp;<br />\\n<br />\\nReno, Nevada<br />\\n<br />\\n6 months +&nbsp;<br />\\n<br />\\nBASIC QUALIFICATIONS</strong><br />\\n<br />\\n</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Bachelors of Science degree in Computer Science or related field or equivalent industry experience</li>\\n    <li>5+ years software engineering and/or software testing experience</li>\\n    <li>Experience with software systems testing and specifically with API testing</li>\\n    <li>Experience with test tools and applications</li>\\n    <li>Knowledge of quality assurance processes and methodologies</li>\\n    <li>Strong troubleshooting skills, and capable of reviewing source code and developing functional tests against it</li>\\n    <li>Must be detail oriented, organized and able to multi-task</li>\\n    <li>Have a passion for software quality and is a champion for the end user</li>\\n    <li>Excellent verbal and written communication and ability to work in a collaborative environment</li>\\n</ul>\\n<p><strong>PREFERRED QUALIFICATIONS:</strong><br />\\n<br />\\n</p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li>Experience with Soap and REST interfaces testing and automation (preferably with Soap UI automation tool)</li>\\n    <li>Experience writing/executing automated software tests</li>\\n    <li>Experience testing web-based services and interfaces</li>\\n    <li>Experience working with virtualization technology</li>\\n    <li>Experience with Agile/Scrum software development</li>\\n    <li>Experience working with the following technologies: Linux, Docker, Jenkins</li>\\n</ul>\",\n                    \"date_added\": \"1/10/2020 11:04:44 AM\",\n                    \"reply_to\": \"mbuckley@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Software QA Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231318\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Reno\",\n                        \"zip\": \"89521\",\n                        \"state\": \"NV\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>RESPONSIBILITIES: </strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>The successful candidate must have project management experience supporting IT Projects in large or government organizations. The position will provide project management support to ensure that internal assessments are appropriately scheduled, scoped, resourced, and tracked. The candidate must have strong analytical skills, attention to detail, and the ability to multitask in a fast-paced environment. The position is part of the AOTO IT Security Office consisting of cybersecurity engineers and compliance officers who report to the IT Security Services Manager. Responsibilities for this position include:</li>\\n    <li>Coordinate the development and maintenance of program management documentation, including program management plan and risk management plan</li>\\n    <li>Maintain an integrated program schedule</li>\\n    <li>Coordinate key project meetings, including internal planning/status meetings, risk, issue reviews, and bi-weekly Office Chief Sponsor updates</li>\\n    <li>Support program management reporting</li>\\n    <li>Develop project plans to bring together information on projects, resources, timescales, monitoring, and controls</li>\\n    <li>Continuously assess performance, research, and development of new capabilities and systematically applying learning and knowledge to the program</li>\\n    <li>Provide strategic support for the integration of the current initiatives as well as for initiatives being developed for implementation</li>\\n</ul>\\n<p><strong>REQUIRED SKILLS:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Minimum of five (5) years of project management related experience, with 2 years of experience as a Project Manager in a &ldquo;large&rdquo; or Government organization.</li>\\n    <li>Experience coordinating and overseeing the implementation of security projects.</li>\\n    <li>Experience with MS Project, SharePoint, or other project management tools.</li>\\n    <li>Knowledge of general management and auditing techniques for identifying problems, gathering and analyzing pertinent information, forming conclusions, developing solutions and implementing plans consistent with management goals.</li>\\n    <li>Excellent oral and written communication skills. Interaction and information gathering with coworkers and customers.</li>\\n    <li>Knowledge of risk management framework pertaining to IT Security a plus</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/10/2020 11:22:06 AM\",\n                    \"reply_to\": \"jmishara@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Project Manager\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231320\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington\",\n                        \"zip\": \"20544\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Procurement representative who can process internal procurement requests, including, submitting requests for quotes, placement, expediting, and statusing.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Duties also include facilitation of invoice closeouts, database manipulation, in-house customer interface/support, report creations based on internal requests and frequent vendor interactions.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Highly effective inter/intra personal skills, customer/vendor relations. At a minimum, proficient in Microsoft Outlook and Excel.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Detail oriented, follow-through, self-proficient, motivated, articulate, proficient written/grammatical skills, excellent multitasking and organizational skills, adapt and respond with minimal delay.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Ability to handle multiple efforts, each one at their own individual part of the process, with the ability to easily maneuver between each task based on next process required toward completion.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Position requires accuracy regarding high volume data inputting for finance/status reporting.</span></li>\\n    <li><span style=\\\"font-size: 9pt; font-family: 'Segoe UI', sans-serif; color: black;\\\">Easily maneuver between multiple efforts with accuracy and minimal delay.</span></li>\\n</ul>\",\n                    \"date_added\": \"1/10/2020 8:49:50 AM\",\n                    \"reply_to\": \"sdwyer@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Buyer/Procurement Analyst Level 2\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231321\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Orlando\",\n                        \"zip\": \"32819\",\n                        \"state\": \"FL\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\"><span style=\\\"text-decoration: underline; margin: 0px; padding: 0px; font-size: inherit; font-family: inherit; font-weight: 700; font-stretch: inherit; font-style: inherit; font-variant: inherit; border: 0px;\\\">Job Description:</span></p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">Provides on-site field support to customers. Performs basic installations, repairs, upgrades and maintenance on hardware and equipment. Assists in the analysis of technical products, systems, and/or software for engineering support.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Provides on-site field support to customers including installation, and servicing and repairing of systems and equipment.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Answers customer questions and resolves issues. Refers other issues/questions to appropriate personnel/service area/manager for follow up, testing and troubleshooting.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Assists in instructing customers in the operation and maintenance of systems/equipment.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Acts as a liaison with customers on administrative and technical matters for assigned projects.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Performs analyses and prepares reports on system problem trends and issues.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Assists in applying engineering principles and practices as they relate to system design, process flow and/or discrete modeling.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Interacts with the client's engineers, as necessary, to gather information, design changes, requirements, etc. to compile information for the overall solution design.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Assists in translating the engineering design into software design and development of test plans to verify logic of new or modified technical programs.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Performs testing of the final product and works with the client's engineers to assure that the product performs as planned.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Assists in the design of basic technical programs for projects or enhancements to existing programs.</p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\"><span style=\\\"margin: 0px; padding: 0px; font-size: inherit; font-family: inherit; font-weight: 700; font-stretch: inherit; font-style: inherit; font-variant: inherit; border: 0px;\\\">Required:</span></p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l High school diploma or G.E.D.</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Five or more years of field support experience</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Experience working with the company's hardware, software and equipment products</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Experience working with customer technology and support requirements</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Experience working with process and/or system design concepts</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Experience working with appropriate programming languages, operating systems and software</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Experience working with engineering principles and practices</p>\\n<p dir=\\\"DEFAULT\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px; text-align: inherit;\\\">&nbsp;</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\"><span style=\\\"margin: 0px; padding: 0px; font-size: inherit; font-family: inherit; font-weight: 700; font-stretch: inherit; font-style: inherit; font-variant: inherit; border: 0px;\\\">Desired: </span></p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Interpersonal skills to work with customers and other unit personnel</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Analytical and problem solving skills</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Communication skills</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Time management and organizational skills</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Ability to resolve non-complex hardware and equipment problems</p>\\n<p dir=\\\"LTR\\\" style=\\\"color: #4a4a4a; background-color: #ffffff; margin: 0px; padding: 0px; font-family: Roboto, Arial, Helvetica, sans-serif; font-stretch: inherit; border: 0px;\\\">l Willingness to travel</p>\",\n                    \"date_added\": \"1/10/2020 11:11:15 AM\",\n                    \"reply_to\": \"akang@softworldinc.com \",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Desktop Support Technician \",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"231322\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Spokane\",\n                        \"zip\": \"99201\",\n                        \"state\": \"WA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"text-decoration: underline;\\\">IT Infrastructure Engineer</span></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Cyber Security Engineer is required for a 6-month contract in Santa Clara, CA.</li>\\n    <li>Good chance of extension <strong></strong></li>\\n</ul>\\n<p><strong>Responsibilities:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Senior Advisor IT Infrastructure Engineer position requires cross platform expertise with deep knowledge on Cisco, EMC, Dell, VMware and Microsoft products supporting Compute, Network, Storage and virtualization platform.</li>\\n    <li>Ideal candidate hasvery good knowledge in VMware and Windows Server operating systems, as a primary skill.</li>\\n    <li>Familiarity in tools to manage these environment, basic knowledge in networking and Storage are expected as well.</li>\\n</ul>\\n<p><strong>Required Skills:</strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li>Experience with Servers and Converged Infrastructure platforms (Cisco Unified Computing, VCE, Dell)</li>\\n    <li>Virtualization (VMware, Microsoft)</li>\\n    <li>Storage (EMC Mid-range arrays, Data Domain and Dell mid-range arrays)</li>\\n    <li>Data Protection &amp; Archival (EMC Networker, Avamar, VMware DP)</li>\\n    <li>Linux Administration and Networking (Switching &amp; Routing Concepts)</li>\\n    <li>Administration and Deployment experience of:<br />\\n    o Active Directory, Group policy, DNS,DHCP of Windows 2012/2008 server<br />\\n    o SQL Server 2012 administration<br />\\n    o Clustered Applications (SQL, Fileserver, DHCP)<br />\\n    o Manages configurations of windows OS, IIS, WSUS, and other applications.<br />\\n    o Experience in deployment and configuration of Anti-virus software applications<br />\\n    o Scripting languages such as PowerShell, Perl, python, bash and shell scripts<br />\\n    o Documenting configurations via Microsoft Visio and Word</li>\\n    <li>Documenting configurations via Microsoft Visio and Word</li>\\n</ul>\\n<p><strong>Duration:&nbsp;</strong>6-month contact</p>\\n<p>PLEASE NOTE: 3RD PARTIES/SUBCONTRACTORS/SUBCONTRACT AGENCIES ARE NOT ELIGIBLE FOR THIS POSITION. &nbsp;SUBCONTRACT AGENCIES NEED NOT APPLY.</p>\",\n                    \"date_added\": \"1/10/2020 11:35:35 AM\",\n                    \"reply_to\": \"gserra@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"IT Infrastructure Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231325\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Santa Clara\",\n                        \"zip\": \"95054\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p style=\\\"background: #ffffcc;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">REQUIRED SKILLS:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Requires in-depth knowledge of network hardware and software technologies and best practices</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Advanced knowledge of a network technology discipline (e.g. IP Routing and Switching, Routing Protocols, WAN, Firewall, Packet Analysis, IP Telephony, Infrastructure, Capacity Planning, Call Center, IT Tools and other relevant technologies.</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Strong knowledge of the organization, processes and customers</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Understands incident and change management principles and best practices</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Bachelor's degree in Computer Science, Business Administration, Math or equivalent related experience 3 years of experience installing and building</span></li>\\n</ul>\\n<p style=\\\"background: #ffffcc;\\\"><strong><span style=\\\"font-size: 10pt; font-family: Arial, sans-serif; color: black;\\\">RESPONSIBILITIES INCLUDE:</span></strong></p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Provides basic to medium complexity network support activities including off-shift support</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Designs and completes network builds and supports Administration maintenance tasks</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Performs simple to medium complexity network changes and implementations</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Participates in the network design process</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Participates in disaster recovery exercises</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Analyzes potential changes and enhancements to network software and hardware to determine impact on existing production, design standards and operating procedures</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Works as a member of a project team on IT projects</span></li>\\n    <li><span style=\\\"font-size: 10.5pt; font-family: 'Segoe UI', sans-serif; color: #32363a;\\\">Performs other duties as assigned</span></li>\\n</ul>\",\n                    \"date_added\": \"1/10/2020 12:26:28 PM\",\n                    \"reply_to\": \"sdwyer@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Network Engineer\",\n                    \"category\": \"ERT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"231327\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Marlborough\",\n                        \"zip\": \"01752\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"153\",\n                        \"SubCategoryName\": \"ERT\",\n                        \"CategoryID\": \"27\",\n                        \"FolderGroupID\": \"166\",\n                        \"CategoryName\": \"ERT\",\n                        \"FolderGroup\": \"ERT\"\n                    }\n                }\n            ],\n            \"count\": 118\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"jobs\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.228404\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:37:35\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"118 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Position/00000000-0000-0000-0000-000000000E01?Limit=1000&ShowInternallyPosted=1&PageStart=1&CreatedByID=e1f806d0-6732-4662-9452-bc6f25ad2a35\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"5.319897\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"118 jobs returned\"\n}"}],"_postman_id":"692ee6a3-4ff5-4cff-a021-6b38fb442672"},{"name":"Job Get By ID","id":"413b5b9e-8274-4ca6-9e9e-315f4ec8a523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":0,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":231385\n                }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/","description":"<p>For retrieving a specific job.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - job ID</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b> - ATS specific fields you'd like included in the results - space separated values</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":231068\n                },\n                \"api_request_fields\":\"\"\n    }\n</pre>","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b77119a7-45ac-4e3c-b57c-802755ee6bf3","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"id\":231068\n                }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:39:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"517"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200134"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-10T17:39:50\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:39:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"1000|An exception was thrown during a Maybe computation\",\n            \"VENDOR\": \"erecruitV1\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Position/00000000-0000-0000-0000-000000000E01/231068?Limit=1000&ShowInternallyPosted=1&CreatedByID=e1f806d0-6732-4662-9452-bc6f25ad2a35&id=231068&PageStart=1\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.425512\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1000|An exception was thrown during a Maybe computation\"\n}"}],"_postman_id":"413b5b9e-8274-4ca6-9e9e-315f4ec8a523"},{"name":"Job Search","id":"2a636d99-45a1-417c-8da0-5e5c277c5d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                        \"PositionType\":\"Perm\"\n                },\n                \"api_request_fields\":\"DatePosted\",\n                \"api_request_custom\":{\n                        \"Limit\":10\n                }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/","description":"<p>For retrieving a specific job.</p>\n\n<ul>\n<li>api_request_fields - <b>OPTIONAL</b> - ATS specific fields you'd like included in the results - space separated values</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                        \"PositionType\":\"Perm\"\n                },\n                \"api_request_fields\":\"DatePosted\",\n                \"api_request_custom\":{\n                        \"Limit\":10\n                }\n    }\n</pre>","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1f132e56-1ec3-421d-ae7d-f1a07fbe4104","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":1,\n                \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                        \"PositionType\":\"Perm\"\n                },\n                \"api_request_fields\":\"DatePosted\",\n                \"api_request_custom\":{\n                        \"Limit\":10\n                }\n    }\n}\n"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:40:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"10098"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200137"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Lead Software Engineer</div>\\n<div>Location: Boston, MA</div>\\n<div>Duration: permanent</div>\\n<div><br />\\n</div>\\n<div>What you&rsquo;ll do as a Technical Lead: <br />\\n</div>\\n<div>&bull;\\tTake ownership of the design, development, and operations of API services as well as internal tools written primarily in C# and TypeScript with SQL and NoSQL databases hosted in AWS. <br />\\n</div>\\n<div>&bull;\\tProvide significant input to product vision for how your team&rsquo;s software should evolve as a coherent technical platform to deliver personalized communications for the broader engineering team. <br />\\n</div>\\n<div>&bull;\\tRepresent engineering concerns for the systems your team owns. <br />\\n</div>\\n<div>&bull;\\tLead your team in design sessions and ensure high quality work that aligns with the company's engineering strategy. <br />\\n</div>\\n<div>&bull;\\tMentor other engineers on your team and help them improve their technical skills. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>What skills you will use: <br />\\n</div>\\n<div>&bull;\\tIdeally, you have experience as the &lsquo;expert&rsquo; on a development team where you were responsible for everything from planning to delivering key features and management of those features. <br />\\n</div>\\n<div>&bull;\\tExpertise with at least one object-oriented language like C# or Java. <br />\\n</div>\\n<div>&bull;\\tYou have strong relational database skills and are comfortable using non-relational data stores like DynamoDB, ElasticSearch and Redis. <br />\\n</div>\\n<div>&bull;\\tFamiliarity with cloud (we use AWS) infrastructure and architecture best practices. <br />\\n</div>\\n<div>&bull;\\tYou also have the ability to write comprehensive automated test suites at all levels of the architecture. <br />\\n</div>\\n<div>&bull;\\tPrior experience helping scale a rapidly growing company is a plus. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>Technical Environment: C# .Net, AWS, MySQL, React, Redux, JavaScript, Swift for iOS, Java for Android, Xamarin, AWS, RES, Microservices, .NET Core\\n</div>\",\n                    \"date_added\": \"1/3/2020 2:47:02 PM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Lead .NET Software Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"229096\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston \",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/3/2020 2:47:02 PM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong><span style=\\\"text-decoration: underline;\\\"></span></strong></p>\\n<strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">Enovia PLM Implementation Engineer</span></strong>\\n<p><strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">Draper Labs</span></strong></p>\\n<p><strong><span style=\\\"text-decoration: underline; font-size: 13px;\\\">6+ month contract</span></strong></p>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Responsibilities</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Join Draper&rsquo;s Enovia PLM Administration staff in contributing towards our migration to the Enovia 3DEXPERIENCE Product Lifecycle Management tool</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Interface with Information Technology, Management Information Systems, PLM Architect, Model Based Engineering staff, and Dassault representatives in planning and executing tasks associated with a new Enovia 3DEXPERIENCE implementation, including addressing configuration and customization challenges and migration of legacy engineering data</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Perform Enovia 3DEXPERIENCE installations, upgrades, and service pack installations on multiple environments per prepared procedures</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Provide Linux administration services, including creating and editing bash scripts, installing applications, and administering security certificates and product licenses</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Lead a small team of Linux/Enovia administrators performing the above functions</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Required Qualifications</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">B.S. degree or higher in a Mechanical/Electrical Engineering, Manufacturing Engineering, Computer Science, or other similar technical discipline</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">System administration experience with Red Hat Linux operating system</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Programming skills in writing/editing bash scripts, python, and TCL</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Working knowledge of SAMBA, SCP, and SSH</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Working knowledge of issuing certificate requests to a Certification Authority, developing certificates in a JVM environment, and deploying certificates into local Linux environments</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Experience directing other Linux system administrators</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Strong interpersonal and verbal/written communication skills</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-size: 13px;\\\">Preferred Qualifications</span></strong></p>\\n<ul style=\\\"margin-top: 0in; list-style-type: disc;\\\">\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Security+ certification strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Prior experience with Dassault Enovia system administration in a Linux environment strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Understanding of and familiarity with engineering product design, development, and manufacturing processes strongly preferred</span></li>\\n    <li style=\\\"margin-left: 0in;\\\"><span style=\\\"font-size: 13px;\\\">Familiarity with MCAD, ECAD, and MRP systems strongly preferred</span></li>\\n</ul>\",\n                    \"date_added\": \"1/6/2020 11:24:51 AM\",\n                    \"reply_to\": \"awicks@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Enovia PLM Implementation Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"229952\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Cambridge\",\n                        \"zip\": \"02139\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/6/2020 11:24:51 AM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><span style=\\\"background-color: #ffffff; font-size: 10pt; font-family: Arial, sans-serif;\\\"><strong>JOB DESCRIPTION:</strong>&nbsp;</span></p>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">Serves as a Network Engineer for the 480th Intelligence, Surveillance, Reconnaissance (ISR) Wing Security Office and the Distributed Common Ground System (DCGS) Processing, Exploitation, Dissemination (PED) Operations Center (DPOC).<br />\\nThe Engineer is responsible for the management, performance and upkeep of all wide area network, and campus area network services to include routers, switches, crypto, multiplexing components, network services, and other functions inherent to network management. The candidate is also responsible for the daily management of all networking devices within the DCGS Architecture.</span></p>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">In addition, the EDPOC Tier 3 Network Engineer:</span></p>\\n<ul style=\\\"margin: 15px 0px 0px; padding: 0px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; list-style-image: initial; letter-spacing: 0.25px;\\\">\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Provides level 2 troubleshooting and help desk support of the DCGS network at the core and remote locations.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Completely understands the PEDS Architecture and security issues within.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Acts as an Operations Engineer capable of working with outside agencies to resolve network related issues.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Works with DPOC Tier III staff on optimizing CAN routers, switches and cryptographic devices, providing recommendations for improvements to the DCGS Network.</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Manages and operates software applications at all sites required to conduct network management of the DPA</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Responds to hardware and software problems related to DPA equipment</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Works with DPOC operations staff to optimize CAN routers, switches, and cryptographic devices and provides recommendations for improvements to the AF DCGS network in support of existing and new ISR sensors and capabilities</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Installs CAN equipment at new sites, maintains documentation and drawings of all DPA architectures</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Advises the 480 ISR WG, AF DCGS program office, and other organizations desiring connectivity to DPA to establish robust system engineering and practical integration solutions</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Reviews all integration efforts to ensure engineering rigor and security practices are maintained across the DPA and advises government leadership regarding any possible risks/concerns</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Processes and implements all network service requests (NSR) and implements all security approved ports and services requests (PSR) any changes and modifications to the AF DCGS weapon system</span></li>\\n    <li style=\\\"margin: 0px 0px 15px 17px; padding: 0px; list-style-type: disc; list-style-image: initial;\\\"><span style=\\\"background-color: #ffffff;\\\">Reviews requirements provided by the AF DCGS Program Office to determine bandwidth, performance, and Controlled Interface (CI) settings for establishing network configuration baselines and provides input back to COR or designated representative</span></li>\\n</ul>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">Required</span></p>\\n<ul style=\\\"font-size: medium; font-family: 'Times New Roman';\\\">\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">BA/BS, 5+ years experience</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">7 Years of network engineering and integration experience</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Top Secret / Sensitive Compartmentalized Information (TS/SCI)</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Certifications: Cisco Certified Network Associate (CCNA) and CompTIA Security+</span></li>\\n</ul>\\n<p style=\\\"margin-top: 0px; margin-bottom: 20px; font-size: 16px; font-family: VisueltLight, Arial, sans-serif; letter-spacing: 0.25px;\\\"><span style=\\\"background-color: #ffffff;\\\">\\nPreferred</span></p>\\n<ul style=\\\"font-size: medium; font-family: 'Times New Roman';\\\">\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Bachelor's Degree</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">Certifications: Cisco Certified Network Professional (CCNP), Certified Information Systems Security Professional (CISSP)</span></li>\\n    <li><span style=\\\"background-color: #ffffff; letter-spacing: 0.25px; font-family: VisueltLight, Arial, sans-serif; font-size: 16px;\\\">A working knowledge of AF DCGS and AF ISR operations is desired</span></li>\\n</ul>\",\n                    \"date_added\": \"1/2/2020 9:33:58 AM\",\n                    \"reply_to\": \"mawalsh@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Sr. Network Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230340\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hampton\",\n                        \"zip\": \"23665\",\n                        \"state\": \"VA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"154\",\n                        \"DatePosted\": \"1/2/2020 9:33:58 AM\",\n                        \"SubCategoryName\": \"Non App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"138\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Non App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Softworld has immediate openings for mid-level Software Developers skilled in C#, ASP.NET, MVC, and SQL Server. You will participate in design, delivery and support for web-based applications and services. The Software Developer will be responsible for contributing to the design and coding of business solutions for order and account management, workflow, and many other business functions.&nbsp; &nbsp;&nbsp;<br />\\n</div>\\n<div><strong><br />\\n</strong></div>\\n<div><strong>Duties and Responsibilities: </strong><br />\\n</div>\\n<div>\\n<ul>\\n    <li>Contribute to the architecture, design, and coding of our next generation web-based Enterprise solution. </li>\\n    <li>Our internal applications are used by 1700+ employees to manage our business and drive our success. </li>\\n    <li>The platform for this new initiative is ASP.NET backed by the power of C# and Microsoft SQL Server. </li>\\n    <li>Work with our development team and BA's as we implement Microsoft TFS and develop a full SDLC framework.</li>\\n    <li>Contribute to the maintenance of our back-end processing which is written in VB.NET and C#. These applications run on our servers and provide the backbone of our systems.</li>\\n    <li>Participate and contribute to ad-hoc development projects as they arise. </li>\\n</ul>\\n</div>\\n<div><strong>Required Skills: <br />\\n</strong></div>\\n<div>\\n<ul>\\n    <li>2-4 years of experience within software development.</li>\\n    <li>Experience in .NET technologies such as ASP.NET, MVC, C#, WCF, etc.</li>\\n    <li>Excellent organizational, problem solving, coding, unit testing and debugging skills.</li>\\n    <li>Knowledge of OOP concepts and component design. </li>\\n    <li>Experience building web applications using HTML, CSS or JavaScript (Preferably Angular JS or Bootstrap).</li>\\n    <li>Extensive use of APIs and understanding of HTTP and REST architecture.</li>\\n</ul>\\n<div><strong>Desired Skills (Not Required but Nice-to-Have): </strong><br />\\n</div>\\n<div>\\n<ul>\\n    <li>Familiarity with emerging web standards such as web components. </li>\\n    <li>Experience within a scripting language such as Python, PHP, or Perl.</li>\\n    <li>Experience with CMS software and LAMP/WAMP stack. </li>\\n    <li>Experience with workflow automation tools i.e.: Gulp, Grunt, WebPack, or Browserify.</li>\\n    <li>Experience with CSS and/or JS extension languages i.e.: SASS, LESS, TypeScript, or CoffeeScript.</li>\\n    <li>Experience with JS dependency management tools i.e.: NPM, Bower, or Yarn.</li>\\n    <li>Knowledge of application security concepts.</li>\\n    <li>Experience in working with a cloud services provider such as AWS.</li>\\n    <li>Experience with Microsoft TFS or GIT.</li>\\n    <li>Experience with Enterprise business solutions.</li>\\n    <li>Experience with telecommunications/telephone business and/or order management applications. </li>\\n</ul>\\n<div><br />\\n</div>\\n</div>\\n</div>\",\n                    \"date_added\": \"1/8/2020 4:46:12 PM\",\n                    \"reply_to\": \"jbelmas@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Mid-level Software Developer (.NET)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230497\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Quincy\",\n                        \"zip\": \"02171\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/8/2020 4:46:12 PM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p><strong><em><span style=\\\"font-family: Arial, sans-serif; font-size: 16px; color: black;\\\">Java Developer (Jr, Mid, and Sr level openings)</span></em></strong></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Location:&nbsp;</span></strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">On-Site in Plano, TX&nbsp;</span></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Project Scope:</span></strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\"> We have signed an exclusive 3-year agreement with a fortune 100 company in Plano, TX to support their on-going Java development projects.&nbsp; You will be working on-site at the Softworld building in Plano. We have the option to bring you on as a direct-hire, contract-to-hire or long-term contract employee.</span></p>\\n<p> </p>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Required Experience:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 2 years of Java development experience&nbsp;for Junior</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 4 years of Java development experience&nbsp;for mid</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">At least 8 years of Java development experience&nbsp;for Senior</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Desired Technical Experience:</span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience developing REST APIs &amp; Web Services</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience with Junit &amp; Eclipse &ndash; or similar unit testing / IDE skills</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Experience with Spring (MVC and/or Boot)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Agile experience</span></li>\\n</ul>\\n<p><strong><span style=\\\"font-family: Arial, sans-serif; color: black;\\\">Additional Bonus technologies (not required):</span></strong></p>\\n<p>\\n</p>\\n<ul style=\\\"list-style-type: disc;\\\">\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Docker (containers)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Kafka (messaging)</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Microservices</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Angular/React/Redux</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">WebSphere</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">Test-driven development</span></li>\\n    <li style=\\\"color: black;\\\"><span style=\\\"font-family: Arial, sans-serif;\\\">CI/CD environment and technologies</span></li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 10:07:49 AM\",\n                    \"reply_to\": \"cdamore@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Java Developer (Multiple openings at all levels)\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230634\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Plano\",\n                        \"zip\": \"75024\",\n                        \"state\": \"TX\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/2/2020 10:07:49 AM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Lead .Net Developer&nbsp;<br />\\nColumbus Circle, DC&nbsp;<br />\\n6 Month Contract to Hire&nbsp;</strong></p>\\n<p><strong>Overview:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sofworld's client is seeking a lead .NET Application Developer to support the Administrative Office of the US Courts. This position is part of its dynamic software development division. </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As such, the position is a key contributor to the integration, design, development, implementation, maintenance, and production support for a variety of internal administrative systems.&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The ideal candidate will have a strong ASP.NET MVC and C# background and solid communication skills with the ability to lead a team.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The project involves the modernization of a portfolio of Visual FoxPro applications into .NET-based systems and services.&nbsp; </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The legacy application is composed of web-based and automated systems that support a variety of administrative and operational functions, including Human Resources, Finance, and Oversight.&nbsp;</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A&nbsp;senior developer looking for continually evolving challenges and a desire to regularly solve new problems will excel in this role. </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The ideal candidate has experience as a development lead on a cross-functional team in a large organization.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The current codebase includes a variety of applications built in: MVC, WebAPI, WPF, VSTO, and a custom plugin-based system.&nbsp; </p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Candidates should have solid understanding of multiple .NET technologies, including at least two of the above.</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Additionally, the development lead will be responsible for helping to communicate technical questions back to the project management team, and translating the responses into actionable requirements.</p>\\n<p><strong>&nbsp;Required Skills and Experience:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Bachelor&rsquo;s degree</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10+ years of experience with ASP.NET and C#</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expertise with MVC 5, LINQ to Entities (EF)</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Team Lead experience</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Strong Communication Skills</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ability to work independently without adequate guidance</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U.S. Citizen or Green Card</p>\\n<p><strong>Desired Skills:&nbsp;</strong></p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Modernization/migration&nbsp;experience desired</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;jQuery</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;git</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CI/CD</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IIS Administration</p>\\n<p>&middot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Understanding of web farm architecture</p>\",\n                    \"date_added\": \"1/10/2020 11:29:46 AM\",\n                    \"reply_to\": \"bcarnes@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Lead .Net Developer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract to Hire\",\n                    \"id\": \"230657\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Washington \",\n                        \"zip\": \"20002\",\n                        \"state\": \"DC\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"146\",\n                        \"DatePosted\": \"1/10/2020 11:29:46 AM\",\n                        \"SubCategoryName\": \"Functional\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"167\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"Job Responses\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<style>\\n    .bd_title      {       font-weight: bold;      }\\n</style>\\n<p><strong>Job Description:&nbsp;</strong><br />\\nInteroperability is quickly becoming one of the most critical areas in Healthcare IT. The importance of having continuous data flow in supporting the delivery of high quality patient care cannot be understated. A well-established foundation in Enterprise Integration is generally built around HL7, but nowadays this is only part of the story:</p>\\n<ul>\\n    <li>A successful ACO looks to its integration team to deliver relevant information to key stakeholders to drive improvements in care quality, operational effectiveness, and risk management.</li>\\n    <li>Meaningful Use requirements are helping to drive forward the sharing of longitudinal patient records amongst providers in any setting.</li>\\n    <li>More and more healthcare professionals are looking to technology to provide true semantic interoperability of disparate healthcare systems.</li>\\n    <li>All of these positive and challenging trends in healthcare require the Integration Engineer to have mastery over development with a diverse toolset including: HL7 v2 &amp; v3, clinical documents (CCD, CCR, C-CDA), IHE profiles, EMPI/MDM, and Web Services.&nbsp;</li>\\n    <li>In addition, Integration Engineers are valued for their wide-ranging knowledge of the numerous applications used, the accompanying workflows, and a detailed understanding of how it all &ldquo;fits together&rdquo;.</li>\\n    <li> Along with interface development, architectural design, and general project guidance, the Integration Engineer should be an expert at analysis and have the communication skills to deliver the highest quality support to our partners and customers.</li>\\n</ul>\\n<p><strong>Required Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>Education: BA/BSMS in Computer Science, Health Mgmt. Information Systems or other 4-year technical degree.</li>\\n    <li>Experience (Type &amp; Length): 3+ years of experience in integration design, development and analysis in healthcare setting utilizing HL7 standards and master data management tools.</li>\\n    <li>Certification/Licensure: Experience with an industry standard integration engine or ESM and related monitoring tools with a strong preference for Orion Rhapsody. Experience with EMPI such as IBM InfoSphere preferred. Experience with Meditech C/S a plus; experience with Meditech 5.6 or 60 preferred.</li>\\n</ul>\\n<p><strong>Required Skills: </strong></p>\\n<ul>\\n    <li>HL7</li>\\n    <li>Meditech</li>\\n    <li>Orion Rhapsody or other integration engines such as Corepoint Health, Cloverleaf, Intersystems HealthShare, Connect Integration, eGate.&nbsp;</li>\\n    <li>Java or JavaScript coding logic background</li>\\n    <li>Articulate, good com skills. Just like their other engineers, they will interact directly with users (staff at the hospital), so must have good soft skills</li>\\n    <li>Bachelor's degree is required</li>\\n</ul>\\n<p>&nbsp;</p>\",\n                    \"date_added\": \"1/2/2020 9:40:56 AM\",\n                    \"reply_to\": \"cdonahue@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"HL7 Integration Engineer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"230714\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Richardson\",\n                        \"zip\": \"75082\",\n                        \"state\": \"TX\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/2/2020 9:40:56 AM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<p><strong>Piping Designer</strong><br />\\n<strong>North Kingston, RI</strong><br />\\n<strong>6+ month contract</strong><br />\\n<br />\\n<strong>Description:&nbsp;</strong></p>\\n<ul>\\n    <li>The Piping Engineer must be experienced and have a working knowledge of the fabrication and assembly of piping systems in steel hull vessels.&nbsp; He/she must be computer literate and skilled in Auto-Cad 3D.&nbsp; He/she must be well versed in various different piping systems.&nbsp; He/she must have the ability to understand ABS/Coast Guard rules and regulations.&nbsp;&nbsp;</li>\\n    <li>Required Skills:&nbsp;</li>\\n    <li>Review and revise architect provided flow diagrams match shipyard standards and ABS requirements.</li>\\n    <li>&nbsp;Design piping systems from architect provided flow diagrams and general arrangements.</li>\\n    <li>Research installation requirements of system components.</li>\\n    <li>Coordinate designs with other installations to prevent construction issues.</li>\\n    <li>Produce craft friendly drawings based on developed basic design drawings and make drawings for various assemblies and systems.</li>\\n    <li>Address all change requested from the craft and work with the owner representative on current issues and change proposals.</li>\\n    <li>Make and verify all work packages issued to production.</li>\\n    <li>These packages consist of all drawings, nestings and information for every process leading to erection. This also includes ensuring that no parts are duplicated or missing.</li>\\n    <li>Develop and update nesting programs for piping systems.</li>\\n    <li>Work with lead men and supervisors to solve discrepancies that arise in the fabrication.Revise drawings as required to prevent similar construction issues for next hull.</li>\\n</ul>\\n<p><strong>Required Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>AutoCAD 3D&nbsp; &ndash; Used to create 3D models of piping</li>\\n</ul>\\n<p><strong>Desired Skills:&nbsp;</strong></p>\\n<ul>\\n    <li>MECH-Q &ndash; ACAD add on used to develop 3D pipe models</li>\\n    <li>Navisworks Freedom &ndash; Used for model interference checking</li>\\n    <li>Ship Constructor 2012 (Not currently used) &ndash; Intended for future use</li>\\n</ul>\\n<p>&nbsp;</p>\\n<br />\\n<div class=\\\"app__top___277yO\\\" style=\\\"z-index: 2147483647;\\\"></div>\",\n                    \"date_added\": \"12/11/2019 3:28:26 PM\",\n                    \"reply_to\": \"sydney@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Piping Designer\",\n                    \"category\": \"Engineering\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230859\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"N. Kingstown\",\n                        \"zip\": \"02852\",\n                        \"state\": \"RI\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"148\",\n                        \"DatePosted\": \"12/11/2019 3:28:26 PM\",\n                        \"SubCategoryName\": \"Engineering\",\n                        \"CategoryID\": \"23\",\n                        \"FolderGroupID\": \"122\",\n                        \"CategoryName\": \"Engineering\",\n                        \"FolderGroup\": \"Engineering\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<div>Senior .NET Software Engineer</div>\\n<div>Location: Boston, MA</div>\\n<div>Duration: permanent - GREAT Salary <br />\\n</div>\\n<div><br />\\n</div>\\n<div>\\nAs a Senior Software Engineer, you&rsquo;ll be part of one of our multidisciplinary teams where you&rsquo;ll work closely with designers, product managers, and data analysts. You&rsquo;ll be a creative contributor to our processes and decision-making so when we build new features, we can ensure scalability and availability of the entire platform. Sound good to you? Join us. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>What you&rsquo;ll do as a Senior Software Engineer: <br />\\n</div>\\n<div>&bull;\\tDesign, develop, and support API services as well as internal tools written primarily in C# and TypeScript with SQL and NoSQL databases hosted in AWS. <br />\\n</div>\\n<div>&bull;\\tCare about agility as much as you care about scalability. We roll out products very quickly and are looking for a team that can pivot at a moment&rsquo;s notice. <br />\\n</div>\\n<div>&bull;\\tWe&rsquo;re constantly growing and forming new teams; you will be able to lead either as an engineer or transition into a manager role. <br />\\n</div>\\n<div><br />\\n</div>\\n<div>Tech Stack: C# .Net, ASP.NET, .NET Core, REST, microservices, AWS, NoSQL, MySQL, React, Redux, TypeScript, JavaScript, Swift for iOS, Java for Android, and Xamarin.\\n</div>\",\n                    \"date_added\": \"1/9/2020 11:37:35 AM\",\n                    \"reply_to\": \"ekaplan@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Senior .NET Software Engineer \",\n                    \"category\": \"IT\",\n                    \"type\": \"Perm\",\n                    \"id\": \"230951\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Boston \",\n                        \"zip\": \"02116\",\n                        \"state\": \"MA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/9/2020 11:37:35 AM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"\",\n                    \"description\": \"<span style=\\\"font-family: Arial; font-size: 13px;\\\">Java Developer<br />\\nLocation: San Francisco, CA<br />\\nDuration: 6+ months</span><br />\\n<br />\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Role Details:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">We&rsquo;re a team that values software that exemplifies simplicity of design, maintainability, extensibility, and foundational robustness. We are looking for a person who can work in a fast-paced environment that has a strong grasp of cutting edge languages and technologies.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Your Day-to-Day<br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Design, build, and support high performance, scalable, and innovative backend systems/services.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Develop backend APIs, implement system instrumentation, and provide documentation</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work closely with other engineers and product management teams to meet fixed deadlines.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Work in all phases of a rapid product development lifecycle.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\"><br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Key Projects<br />\\n<br />\\n</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Migrate our API services/systems to cloud infrastructures and software</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Find smarter ways to serve our content, whether algorithmically or possibly machine learning</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Discover reliable ways to manage, store, and secure our data around the globe</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">QUALIFICATIONS:</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">You have -</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">4+ Years product software development</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">BS degree in Computer Science, similar technical field of study or equivalent practical experience.</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Deep understanding of Object Oriented Programming and Design, data structures, and algorithms</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Solid Java, Linux, Shell scripting, Python ability</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Effective communication skills</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">You might also have -</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with RDBMs</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with NoSQL solutions</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with Search Technologies</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Experience with Distributed Systems (both in system design and data storage)</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Working knowledge of Docker, Kubernetes, cloud environments (GCP, AWS, etc.) a plus</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Working knowledge of build tools a plus</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-family: Arial; font-size: 13px;\\\">Technology: Java, Spring Boot, REST, NoSQL, Linux, Shell, Python</span></p>\",\n                    \"date_added\": \"1/2/2020 9:54:40 AM\",\n                    \"reply_to\": \"skemp@softworldinc.com\",\n                    \"url\": \"\",\n                    \"rep_user\": \"\",\n                    \"title\": \"Java/API/Web Services Developer\",\n                    \"category\": \"IT\",\n                    \"type\": \"Contract\",\n                    \"id\": \"230982\",\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"San Francisco \",\n                        \"zip\": \"94105\",\n                        \"state\": \"CA\"\n                    },\n                    \"api_request_custom\": {\n                        \"SubCategoryID\": \"145\",\n                        \"DatePosted\": \"1/2/2020 9:54:40 AM\",\n                        \"SubCategoryName\": \"App Dev\",\n                        \"CategoryID\": \"24\",\n                        \"FolderGroupID\": \"91\",\n                        \"CategoryName\": \"IT\",\n                        \"FolderGroup\": \"App Dev or Data\"\n                    }\n                }\n            ],\n            \"count\": 10\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"jobs\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2.309257\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-10T17:40:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"10 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Position/00000000-0000-0000-0000-000000000E01?PositionType=Perm&Limit=10&ShowInternallyPosted=1&PageStart=1&CreatedByID=e1f806d0-6732-4662-9452-bc6f25ad2a35\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"2.733826\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"10 jobs returned\"\n}"}],"_postman_id":"2a636d99-45a1-417c-8da0-5e5c277c5d51"}],"id":"49b5c24a-9492-47f5-9ef6-7b44bd9c2bde","_postman_id":"49b5c24a-9492-47f5-9ef6-7b44bd9c2bde","description":""},{"name":"Note","item":[{"name":"Note Set","id":"d5ffdb22-87d0-4696-8113-1bd4368a9758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \t\t\t\t\"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5665439,\n                        \"comments\":\"THIS IS A TEST\"\n            }\n }\n}\n"},"url":"{{ats-connect}}/note/set","description":"<p>For creating candidate record</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>comments - <b>REQUIRED</b></p>\n</li>\n</ul>\n<pre>\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5665439,\n                        \"comments\":\"THIS IS A TEST\"\n            }\n }\n</pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"13e98334-a46c-466a-9326-7ffdffb1955b","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"api_connect_data\":{\n        \t\t\t\t\"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n \"api_request_data\":{\n            \"api_request_query\":{\n                        \"id\":5665439,\n                        \"comments\":\"THIS IS A TEST\"\n            }\n }\n}\n"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:46:38 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"439"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200143"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"fe186c35-b3f1-470a-acef-b44514306baa\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"UploadFile\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.173135,\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2020-01-10T17:46:39\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Note set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Attachment/Do/UploadAttachment\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.519188\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Note set\"\n}"}],"_postman_id":"d5ffdb22-87d0-4696-8113-1bd4368a9758"}],"id":"c5d798be-c04b-4de8-8198-0d044cf34c23","_postman_id":"c5d798be-c04b-4de8-8198-0d044cf34c23","description":""},{"name":"Resume","item":[{"name":"Resume Upload","id":"cb4628ba-8c26-4e7d-833b-bdbf9c0faf96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    ,\n                            \"id\":5665439\n                }\n    }\n}\n"},"url":"{{ats-connect}}/resume/upload/","description":"<p>For uploading a candidate's resume.</p>\n\n<ul>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded resume file</p>\n</li>\n<li><p>file_name - <b>REQUIRED</b> - name of the file with file type extension e.g., 'test_resume.doc'</p>\n</li>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    ,\n                            \"id\":5665439\n                }\n    }\n</pre>","urlObject":{"path":["resume","upload",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9c9116bb-465d-4977-b68e-0991060dbec1","name":"Resume Upload","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\":{\n                \"api_connection\":{\n                            \"api_un\":\"{{api_un}}\",\n                            \"api_pw\":\"{{api_pw}}\",\n                            \"api_url\":\"{{api_url}}\",\n                            \"api_id\":\"{{api_id}}\"\n                    },\n                \"vendor\":\"erecruitV1\",\n                \"api_sandbox\":1,\n                \"api_performance_dump\":0,\n                \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    ,\n                            \"id\":5665439\n                }\n    }\n}\n"},"url":"{{ats-connect}}/resume/upload/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:42:27 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"443"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"200140"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/upload/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"55db9c21-c2a8-45c8-bc41-0aa3903da557\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"UploadResume\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.436196,\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2020-01-10T17:42:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"erecruitV1\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Resume Uploaded\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://erecruit.softworldinc.com/restservices/Attachment/Do/UploadAttachment\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.905313\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Resume Uploaded\"\n}"}],"_postman_id":"cb4628ba-8c26-4e7d-833b-bdbf9c0faf96"},{"name":"Resume Parse","id":"6950a6fb-d07a-4246-8877-5ff1edad6fc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"erecruitV1\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For parsing resume data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"89a32ed1-baf0-4352-a9f7-8b89400ac436","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\":{\r\n        \t\"api_un\":\"{{api_un}}\",\r\n\t\t\t\"api_pw\":\"{{api_pw}}\",\r\n\t\t\t\"api_id\":\"{{api_id}}\",\r\n\t\t\t\"api_secret\":\"{{api_secret}}\"\r\n        },\r\n    \"vendor\": \"erecruitV1\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 17:44:33 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"485"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272963"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-10T17:44:33\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-10T17:44:33\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"ERROR - resume_parse call not supported\",\n            \"VENDOR\": \"erecruitV1\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"Password\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"Username\\\":\\\"haleymarketingAPI@softworldinc.com\\\",\\\"EntityID\\\":\\\"00000000-0000-0000-0000-000000000E01\\\"}\",\n            \"call\": \"/Authenticate\"\n        },\n        \"vendor\": \"erecruitV1\",\n        \"elapsed\": \"0.008641\",\n        \"key\": \"xxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for response from the origin ATS\"\n}"}],"_postman_id":"6950a6fb-d07a-4246-8877-5ff1edad6fc5"}],"id":"79bc49b6-fc9d-452b-833f-1d934ae2699b","_postman_id":"79bc49b6-fc9d-452b-833f-1d934ae2699b","description":""}],"id":"127a60fb-9a7a-4270-ac68-0e8503a4d0c3","_postman_id":"127a60fb-9a7a-4270-ac68-0e8503a4d0c3","description":""},{"name":"iCIMS","item":[{"name":"Application Set","id":"03556b8c-1182-4836-b5a4-40399315e2a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"email\": \"tet2@Test0716.com\",\r\n      \"first_name\": \"Test2\",\r\n      \"last_name\": \"Test071416\",\r\n      \"phone\": \"555-555-1212\",\r\n      \"address1\": \"123 Any Street\",\r\n      \"address2\": \"\",\r\n      \"city\": \"Portland\",\r\n      \"state\": \"MAINE\",\r\n      \"zip\": \"04563\",\r\n      \"country\": \"CA\",\r\n      \"candidate\": {\r\n    \t\"id\": 3868\r\n      },\r\n      \"job\": {\r\n    \t\"id\": 3868\r\n      }      \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating candidate application in iCIMS.</p>\n\n<ul>\n<li><p>email - <b>REQUIRED</b> if id is not supplied</p>\n</li>\n<li><p>id - <b>REQUIRED</b> if email is not supplied</p>\n</li>\n<li><p>id - the job for which the application is being submitted - <b>REQUIRED</b></p>\n</li>\n<li><p>api_request_custom - <b>OPTIONAL</b></p>\n</li>\n</ul>\n","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3849275b-f3d8-47e9-9c18-61e4dbe70cd2","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_application\",\"key\": \"xxxxxxxxxxxxxxxxx\",\"elapsed\": \"2.93724\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"JobSubmission\",\"CALL ACTION\": \"POST\",\"TIMESTAMP\": \"Thu Jul 14 10:32:06 2016\",\"APIKEY\": \"xxxxxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.242667,\"VENDOR\": \"bullhorn\",\"MESSAGE\": \"Success\"},\"api_data\": {}}}"}],"_postman_id":"03556b8c-1182-4836-b5a4-40399315e2a2"},{"name":"Authorization","id":"b83e2545-2c40-4baf-bafb-cdc448cb3ca4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_performance_dump\":0,\r\n    \"api_verbose_dump\":0,\r\n    \"api_sandbox\":1\r\n  },\r\n  \"api_request_data\":{\r\n  \t\"api_request_fields\": \"\",\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>iCIMS uses Basic HTTP Authentication to authenticate API users.</p>\n\n<p>API users must provide an Authorization header to access any API resources.</p>\n\n<p>Returns the API Authorization Header</p>\n\n<p><b>NOTE: This process is internal - this endpoint is available for testing purposes.</b></p>\n\n<ul>\n<li><p>api_un - username - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - password - <b>REQUIRED</b></p>\n</li>\n<li><p>api_id - customer ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8d51e14d-9a94-46e1-9777-a1c67a4fc3c4","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_authenticate\",\"key\": \"xxxxxxxxxxxxxxxxx\",\"elapsed\": \"0.069287\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": null,\"CALL REQUEST\": null,\"CALL ACTION\": null,\"TIMESTAMP\": \"Thu Jul 14 10:35:19 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": null,\"CALL TIME\": null,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"status\": 1,\"data\": {\"Authorization\": \"Basic aGFsZXkubWFya2V0aW5nOkhhbGV5MjAxNmJoIQ==\"}}}}"}],"_postman_id":"b83e2545-2c40-4baf-bafb-cdc448cb3ca4"},{"name":"Candidate Get By ID","id":"f136915e-8710-4e4f-b154-505cb0e878b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_fields\": \"\",\r\n    \"api_request_query\": {\r\n      \"id\": 8607\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data via their candidate id. <b>NOTE:</b> To take advantage of the default _api_request_fields send as empty parameter. To pull entire candidate record, leave _api_request_fields parameter off completely.</p>\n\n<p>NOTE: the candidate id can appear in either the url or as a parameter in the request data but MUST appear once</p>\n\n<ul>\n<li><p>id - <b>OPTIONAL</b> - if left out, the id must appear in the url</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b> - space separated fields to request e.g. - 'id first_name last_name'</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a1200c58-d9cd-450e-9769-d07c9882993e","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_candidate\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.622215\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Candidate\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:36:41 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.230413,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"address\": [{\"country\": \"US\",\"address1\": \"123 Any Street\",\"city\": \"Any City\"}],\"last_name\": \"Test071816\",\"phone\": [{\"phone_type\": \"Work\",\"phone\": \"555-555-1211\"},{\"phone_type\": \"Home\",\"phone\": \"555-555-1212\"},{\"phone_type\": \"Other\",\"phone\": \"555-555-1213\"}],\"email\": \"test4@Test071816.com\",\"first_name\": \"Test4\",\"id\": \"8607\",\"resume_data\": null}}}"}],"_postman_id":"f136915e-8710-4e4f-b154-505cb0e878b7"},{"name":"Candidate Search","id":"98fe8a52-f571-4d9c-9745-4842fa05d50f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"search_range\": {\r\n        \"field\": \"first_name\",\r\n        \"value_1\": \"Ada\",\r\n        \"value_2\": \"Kelly\"\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving a range of candidate data via the <b>search query</b>.</p>\n\n<p><b>NOTE:</b>There are two kinds of search filters:</p>\n\n<p><b>Range Search:</b></p>\n\n<pre>\n\"api_request_query\":{\n\"search_range\":{\n\"field\":\"createddate\",\n\"value_1\":\"01/18/2016\",\n\"value_2\":\"09/05/2016\"\n}\n}\n</pre>\n\n<pre>\n\"api_request_query\":{\n\"search_range\":{\n\"field\":\"last_name\",\n\"value_1\":\"Jones\",\n\"value_2\":\"Smith\"\n}\n}\n</pre>\n\n<p><b>Filter Matching:</b></p>\n\n<pre>\n\"api_request_query\":{\n\"last_name\":\"Jones\",\n\"first_name\":\"Jimmy\"\n}\n</pre>\n\n<ul>\n<li>api_request_query - <b>REQUIRED</b> - hash with key:value pairs signifying the values the call wants to query</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a706b287-2080-4f6f-a988-87cb1a33e841","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\r\n  \"ticket\": {\r\n    \"fn\": \"_api_application\",\r\n    \"key\": \"xxxxxxxxxxxxxx\",\r\n    \"elapsed\": \"2.93724\",\r\n    \"api_version\": \"1.1\"\r\n  },\r\n  \"response\": {\r\n    \"api_status\": \"api_status79\",\r\n    \"api_log\": {\r\n      \"CALL ATTEMPTS\": 1,\r\n      \"CALL REQUEST\": \"JobSubmission\",\r\n      \"CALL ACTION\": \"POST\",\r\n      \"TIMESTAMP\": \"Thu Jul 14 10:32:06 2016\",\r\n      \"APIKEY\": \"xxxxxxxxxxxxxx\",\r\n      \"CALL STATUS\": 1,\r\n      \"CALL TIME\": 0.242667,\r\n      \"VENDOR\": \"bullhorn\",\r\n      \"MESSAGE\": \"Success\"\r\n    },\r\n    \"api_data\": [\r\n      {\r\n        \"address\": \"address79\",\r\n        \"last_name\": \"last_name79\",\r\n        \"phone\": [\r\n          {\r\n            \"phone_type\": \"Home\",\r\n            \"phone\": \"(310) 975-8528\"\r\n          }\r\n        ],\r\n        \"email\": \"email79\",\r\n        \"first_name\": \"first_name79\",\r\n        \"id\": \"id79\",\r\n        \"resume_data\": \"resume_data79\"\r\n      }\r\n    ]\r\n  }\r\n}"}],"_postman_id":"98fe8a52-f571-4d9c-9745-4842fa05d50f"},{"name":"Candidate Set","id":"96708db7-afef-43de-9c61-d22893be4a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"haleyapiuser\",\r\n      \"api_pw\": \"9wzW2FnA\",\r\n      \"api_id\": \"6273\",\r\n      \"api_secret\": \"17\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"email\": \"test2@Test071416.com\",\r\n      \"first_name\": \"Test2\",\r\n      \"last_name\": \"Test071416\",\r\n      \"phone\": \"555-555-1212\",\r\n      \"address1\": \"123 Any Street\",\r\n      \"address2\": \"\",\r\n      \"city\": \"Portland\",\r\n      \"state\": \"MAINE\",\r\n      \"zip\": \"04563\",\r\n      \"country\": \"CA\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For creating Candidate record.</p>\n\n<ul>\n<li><p>api_request_query - candidate data to be submitted - <b>first_name, last_name, email is REQUIRED</b></p>\n</li>\n<li><p>api_request_custom - hash with key:value pairs specific to the ATS  - <b>OPTIONAL</b> - see ATS documentation</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e6ca3132-2606-400b-9beb-37ec576b6742","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_candidate\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.622215\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Candidate\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:36:41 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.230413,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"id\": null}}}"}],"_postman_id":"96708db7-afef-43de-9c61-d22893be4a18"},{"name":"Candidate Update","id":"f94a74e9-a161-46cc-a9ba-c103e1e82c5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"email\": \"test2@Test071416.com\",\r\n      \"first_name\": \"Test2\",\r\n      \"last_name\": \"Test071416\",\r\n      \"phone\": \"555-555-1212\",\r\n      \"address1\": \"123 Any Street\",\r\n      \"address2\": \"\",\r\n      \"city\": \"Portland\",\r\n      \"state\": \"MAINE\",\r\n      \"zip\": \"04563\",\r\n      \"country\": \"CA\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating Candidate record.</p>\n\n<ul>\n<li><p>api_request_query - candidate data to be updated - <b>id or email is REQUIRED</b></p>\n</li>\n<li><p>api_request_custom - hash with key:value pairs specific to the ATS  - <b>OPTIONAL</b> - see ATS documentation</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d8c55b58-dd1c-40ee-8be9-c2c49afc6dd4","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_candidate\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.622215\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Candidate\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:36:41 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.230413,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"id\": null}}}"}],"_postman_id":"f94a74e9-a161-46cc-a9ba-c103e1e82c5a"},{"name":"Job Get","id":"bcd34903-ac9a-453b-b0ee-bbb6b6d19160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_secret\":\"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\":{\r\n  \t\"api_request_fields\": \"\",\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving <b>all</b> job ids.</p>\n\n<p>NOTE: iCIMS only returns job ids when pulling all open job data.</p>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f6343cf1-f70d-4448-90a6-75d526a2c4f5","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_job\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.98376\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Jobs\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:42:15 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.188698,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"1000\": {\"startdate\": null,\"id\": 1000,\"payrate\": null,\"status\": null,\"title\": null,\"address\": null,\"description\": null},\"1034\": {\"startdate\": null,\"id\": 1034,\"payrate\": null,\"status\": null,\"title\": null,\"address\": null,\"description\": null},\"1036\": {\"startdate\": null,\"id\": 1036,\"payrate\": null,\"status\": null,\"title\": null,\"address\": null,\"description\": null},\"1059\": {\"startdate\": null,\"id\": 1059,\"payrate\": null,\"status\": null,\"title\": null,\"address\": null,\"description\": null}}}}"}],"_postman_id":"bcd34903-ac9a-453b-b0ee-bbb6b6d19160"},{"name":"Job Get By ID","id":"5b5669d2-6fc9-4b80-9c1c-76812236e150","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0,\r\n    \"api_sandbox\":0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 9848\r\n    },\r\n    \"api_request_fields\": \"\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job data.</p>\n\n<p>NOTE: the job id can appear in either the url or as a parameter in the request data but MUST appear once</p>\n\n<ul>\n<li><p>id - <b>OPTIONAL</b> - if left out, the id must appear in the url</p>\n</li>\n<li><p>api_request_fields - <b>OPTIONAL</b></p>\n</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f5074eab-5cc0-4a1e-b43f-1894ad895390","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_job\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.98376\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Jobs\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:42:15 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.188698,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"startdate\": null,\"id\": \"2016-3868\",\"title\": null,\"status\": null,\"payrate\": null,\"api_request_custom\": {\"qualifications\": \"<p style=\\\"margin: 0px;\\\"><span>Lorem ipsum dolor sit amet, augue etiam ut et fusce, massa donec ad, feugiat ligula posuere elit malesuada ac, donec eleifend, mauris ornare dolores mollis in. Dui magna dolor suscipit ut, nisl eget, nulla sed. Integer a porttitor quam eros cras. Et proin pellentesque nulla. Ipsum nulla enim aliquet erat occaecati vel. Sed tortor nunc leo aliquet, curabitur turpis nullam id pulvinar proin tristique, lacus quidem in eget, ante dictumst nisl ut imperdiet. Consequat in, nunc elit arcu curabitur. Purus enim ullamcorper vivamus malesuada, lacinia lectus vivamus, nunc elit mauris pulvinar quis erat etiam, conubia suspendisse, urna ullamcorper adipiscing interdum fusce eget amet. Vero ac vitae consequat elit adipiscing, adipiscing egestas, ultricies lorem, nulla vestibulum pellentesque, mollit tellus magnis expedita. Porro lobortis, sociis nulla fermentum nec, id ut, bibendum ac, a neque ipsum leo.</span></p>\",\"responsibilities\": \"<p style=\\\"margin: 0px;\\\"><span>Lorem ipsum dolor sit amet, augue etiam ut et fusce, massa donec ad, feugiat ligula posuere elit malesuada ac, donec eleifend, mauris ornare dolores mollis in. Dui magna dolor suscipit ut, nisl eget, nulla sed. Integer a porttitor quam eros cras. Et proin pellentesque nulla. Ipsum nulla enim aliquet erat occaecati vel. Sed tortor nunc leo aliquet, curabitur turpis nullam id pulvinar proin tristique, lacus quidem in eget, ante dictumst nisl ut imperdiet. Consequat in, nunc elit arcu curabitur. Purus enim ullamcorper vivamus malesuada, lacinia lectus vivamus, nunc elit mauris pulvinar quis erat etiam, conubia suspendisse, urna ullamcorper adipiscing interdum fusce eget amet. Vero ac vitae consequat elit adipiscing, adipiscing egestas, ultricies lorem, nulla vestibulum pellentesque, mollit tellus magnis expedita. Porro lobortis, sociis nulla fermentum nec, id ut, bibendum ac, a neque ipsum leo.</span></p>\",\"links\": [{\"rel\": \"self\",\"url\": \"https://api.icims.com/customers/6273/jobs/3868\",\"title\": \"The current profile being viewed.\"}]},\"address\": \"ABC - 123 Main St  San Francisco, California 94105 United States California, \",\"description\": null}}}"}],"_postman_id":"5b5669d2-6fc9-4b80-9c1c-76812236e150"},{"name":"Job Search","id":"40a50aaf-334a-4a65-b425-6edbd3006c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_secret\":\"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"icims\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_fields\": \"id address title\",\r\n    \"api_request_query\": {\r\n    \t\"filters\":{},\r\n      \"search_range\": {\r\n        \"field\": \"createddate\",\r\n        \"value_1\": \"01/18/2016\",\r\n        \"value_2\": \"09/05/2016\"\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching a specific search criteria.</p>\n\n<p><b>NOTE:</b>There are two kinds of search filters:</p>\n\n<p><b>Range Search:</b></p>\n\n<pre>\n\"api_request_query\":{\n\"search_range\":{\n\"field\":\"createddate\",\n\"value_1\":\"01/18/2016\",\n\"value_2\":\"09/05/2016\"\n}\n}\n</pre>\n\n<pre>\n\"api_request_query\":{\n\"search_range\":{\n\"field\":\"title\",\n\"value_1\":\"Test1\",\n\"value_2\":\"Test5\"\n}\n}\n</pre>\n\n<p><b>Filter Matching:</b></p>\n\n<pre>\n\"api_request_query\":{\n\"title\":\"Test Job #1\",\n\"createddate\":\"01/18/2016\"\n}\n</pre>\n\n<ul>\n<li>api_request_query - <b>REQUIRED</b> - hash with key:value pairs signifying the values the call wants to query (custom API fields allowed)</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c9b6f77e-101e-4714-9287-f495017e26bc","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\"ticket\": {\"fn\": \"_api_job\",\"key\": \"xxxxxxxxxxxxxx\",\"elapsed\": \"0.98376\",\"api_version\": \"1.1\"},\"response\": {\"api_status\": \"1\",\"api_log\": {\"CALL ATTEMPTS\": 1,\"CALL REQUEST\": \"Jobs\",\"CALL ACTION\": \"GET\",\"TIMESTAMP\": \"Thu Jul 14 10:42:15 2016\",\"APIKEY\": \"xxxxxxxxxxxxxx\",\"CALL STATUS\": 1,\"CALL TIME\": 0.188698,\"VENDOR\": \"icims\",\"MESSAGE\": \"Success\"},\"api_data\": {\"startdate\": null,\"id\": \"2016-3868\",\"status\": null,\"payrate\": null,\"title\": \"Test Job #1\",\"address\": \"ABC - 123 Main St  San Francisco, California 94105 United States California, \",\"description\": \"<p style=\\\"margin: 0px;\\\"><span>Lorem ipsum dolor sit amet, augue etiam ut et fusce, massa donec ad, feugiat ligula posuere elit malesuada ac, donec eleifend, mauris ornare dolores mollis in. Dui magna dolor suscipit ut, nisl eget, nulla sed. Integer a porttitor quam eros cras. Et proin pellentesque nulla. Ipsum nulla enim aliquet erat occaecati vel. Sed tortor nunc leo aliquet, curabitur turpis nullam id pulvinar proin tristique, lacus quidem in eget, ante dictumst nisl ut imperdiet. Consequat in, nunc elit arcu curabitur. Purus enim ullamcorper vivamus malesuada, lacinia lectus vivamus, nunc elit mauris pulvinar quis erat etiam, conubia suspendisse, urna ullamcorper adipiscing interdum fusce eget amet. Vero ac vitae consequat elit adipiscing, adipiscing egestas, ultricies lorem, nulla vestibulum pellentesque, mollit tellus magnis expedita. Porro lobortis, sociis nulla fermentum nec, id ut, bibendum ac, a neque ipsum leo.</span></p>\"}}}"}],"_postman_id":"40a50aaf-334a-4a65-b425-6edbd3006c90"}],"id":"319de4e5-d8f7-4f52-9328-17ba81a38ed7","description":"<div class=\"postman-run-button\"></div>\n\n","_postman_id":"319de4e5-d8f7-4f52-9328-17ba81a38ed7"},{"name":"JobAdder","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"251f646c-4d5c-46ce-9de6-cedad54f9536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow for subsequent successful API calls. <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - Your JobAdder AccountSid - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your JobAdder AuthToken - <b>REQUIRED</b></p>\n</li>\n<li><p>api_id - Your JobAdder Client ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_secret - Your JobAdder Client Secret - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"73f381f2-1d78-4a3c-a65b-0c915a8c57c4","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:16:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"641"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199409"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"JAAccessToken\": \"dbd18546a2ed50381e95073296d4c81d\",\n                \"restUrl\": null,\n                \"JABaseApiUrl\": \"https://sandboxapi.jobadder.com/v2/\",\n                \"JARefreshToken\": \"0aa622096b7d0944d7bb63224d5ed220\"\n            },\n            \"xstatus\": \"Authenticated\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Refresh Token\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.174328\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T20:16:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"refresh_token\\\",\\\"refresh_token\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"lzsaqckzxocurddtscursm4zcq\\\",\\\"session_url\\\":\\\"https://id.jobadder.com/connect/token\\\"}\",\n            \"call\": \"https://id.jobadder.com/connect/token\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.201938\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"251f646c-4d5c-46ce-9de6-cedad54f9536"}],"id":"09c7e640-e39c-4f81-93f6-03b870f6af45","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"09c7e640-e39c-4f81-93f6-03b870f6af45"},{"name":"Application","item":[{"name":"Application Set","id":"ea49a091-6e69-4511-be67-c909b52057c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": 45091, \"referral_source\":\"Careerbuilder.com\"},\r\n    \t\"job\":{\"id\": 2444}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<ul>\n<li><p>candidate - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>job - <b>REQUIRED</b> - job ID for which the application is being submitted; array of integers</p>\n</li>\n<li><p>referral_source - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\":{\"id\": 45091, \"referral_source\":\"Careerbuilder.com\"},\n        \"job\":{\"id\": 2444}\n    }\n  }\n</pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"eaa9124c-76a8-4cd4-bee5-9a6c42316fdb","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"candidate\":{\"id\": 45091, \"referral_source\":\"Careerbuilder.com\"},\r\n    \t\"job\":{\"id\": 2444}\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2020 21:28:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"470"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"201276"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.044723\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-21T21:28:12\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"204 No Content\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"source\\\":\\\"Careerbuilder.com\\\",\\\"candidateId\\\":[45091]}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/jobs/2444/applications\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.011481\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"204 No Content\"\n}"}],"_postman_id":"ea49a091-6e69-4511-be67-c909b52057c5"},{"name":"Application Get","id":"951cf1ef-aa41-4624-b593-03e1b2cfb24e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"client_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"client_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"job\": 2444\r\n    \t\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<ul>\n<li>job - <b>REQUIRED</b> - job ID</li>\n<li>id - <b>OPTIONAL</b> - application ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"job\": 2444\n        \n    }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"aedc33fc-ca2e-4615-83ed-4bec940561ee","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"client_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"client_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"job\": 2444\r\n    \t\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:38:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"690"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272257"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 3,\n                \"count\": 3,\n                \"applications\": [\n                    {\n                        \"referral_source\": \"Careerbuilder.com\",\n                        \"candidate\": 45091,\n                        \"status\": \"Applied\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 39280,\n                        \"job\": 2444\n                    },\n                    {\n                        \"referral_source\": \"Jobsite\",\n                        \"candidate\": 42606,\n                        \"status\": \"Client Interview 3\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 31430,\n                        \"job\": 2444\n                    },\n                    {\n                        \"referral_source\": \"Reed\",\n                        \"candidate\": 42541,\n                        \"status\": \"Resume Submitted\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 31427,\n                        \"job\": 2444\n                    }\n                ]\n            },\n            \"xstatus\": \"3 applications returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.241971,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T20:38:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/applications/31427?access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.631696\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"3 applications returned\"\n}"}],"_postman_id":"951cf1ef-aa41-4624-b593-03e1b2cfb24e"},{"name":"Application Get By ID","id":"c711821b-cab5-4da7-8e90-92a029c05390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 0,\r\n    \t\"job\": 2444\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.\n<li>job - <b>REQUIRED</b> - job ID</li>\n\n</p><pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"offset\": 0,\n        \"limit\": 0,\n        \"job\": 2444\n    }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"be9e9539-0969-468b-99f0-8127d05adfa9","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"AssignmentRestrictionSessionId\": [                \"There are unapproved assignment restriction results for the assignment restriction session with an Id of f06292e1-25a2-4cf7-83f8-d9032d59e4a4.\"            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 0,            \"CALL_STATUS\": 0,            \"CALL_REQUEST\": \"Application SET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.355309,            \"CALL_ACTION\": \"POST\",            \"TIMESTAMP\": \"2018-05-01T14:34:56\",            \"APIKEY\": \"xxxxxxxxxxxxxx\",            \"MESSAGE\": \"Error\",            \"VENDOR\": \"tempworks\",            \"ERROR_TYPE\": \"ATS\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"{\\\"AssignmentRestrictionSessionId\\\":\\\"f06292e1-25a2-4cf7-83f8-d9032d59e4a4\\\",\\\"JobOrderCandidateStatusId\\\":1,\\\"employeeId\\\":4295016700}\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/JobOrders/4295088898/candidates\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"1.128406\",        \"key\": \"xxxxxxxxxxxxxx\",        \"fn\": \"_api_application\"    },    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for detailed response from the origin ATS\"}"},{"id":"e7f5c638-738f-4db2-9f67-dcd4029f914a","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 0,\r\n    \t\"job\": 2444\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:36:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"692"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199428"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 3,\n                \"count\": 3,\n                \"applications\": [\n                    {\n                        \"referral_source\": \"Careerbuilder.com\",\n                        \"candidate\": 45091,\n                        \"status\": \"Applied\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 39280,\n                        \"job\": 2444\n                    },\n                    {\n                        \"referral_source\": \"Jobsite\",\n                        \"candidate\": 42606,\n                        \"status\": \"Client Interview 3\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 31430,\n                        \"job\": 2444\n                    },\n                    {\n                        \"referral_source\": \"Reed\",\n                        \"candidate\": 42541,\n                        \"status\": \"Resume Submitted\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 31427,\n                        \"job\": 2444\n                    }\n                ]\n            },\n            \"xstatus\": \"3 applications returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.245246\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T20:36:31\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/applications/31427?access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.686072\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"3 applications returned\"\n}"}],"_postman_id":"c711821b-cab5-4da7-8e90-92a029c05390"}],"id":"15cf7cd6-7e8c-4fa6-921f-d350e5c8dd53","_postman_id":"15cf7cd6-7e8c-4fa6-921f-d350e5c8dd53","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"c2ee9143-f22a-47ca-980c-4ce158791df8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1000\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <b>OPTIONAL</b> - candidate ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"offset\": 0,\n        \"limit\": 1000\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c1afc19a-dfcd-4b93-aae5-cc71ab130a68","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1000\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:39:57 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2094"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272260"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 138,\n                \"count\": 45,\n                \"candidates\": [\n                    {\n                        \"email\": \"test999@example.com\",\n                        \"date_added\": \"2019-09-10T13:02:10Z\",\n                        \"id\": 64078\n                    },\n                    {\n                        \"email\": \"tgis@jabbahut.farm\",\n                        \"date_added\": \"2019-06-25T14:25:13Z\",\n                        \"address\": {\n                            \"country\": null,\n                            \"city\": \"Portland\",\n                            \"zip\": null,\n                            \"address1\": null,\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45722,\n                        \"phone\": \"999.333.1234\"\n                    },\n                    {\n                        \"email\": \"87r5afv.98yh@fexample.com\",\n                        \"date_added\": \"2019-06-25T13:56:15Z\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"523 Main Street\",\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45714,\n                        \"phone\": \"999.555.5555\"\n                    },\n                    {\n                        \"email\": \"87r5afv98yh@fexample.com\",\n                        \"date_added\": \"2019-06-25T13:55:25Z\",\n                        \"address\": {\n                            \"country\": null,\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"523 Main Street\",\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45713,\n                        \"phone\": \"999.555.5555\"\n                    },\n                    {\n                        \"email\": \"t87r5fv98yh@fexample.com\",\n                        \"date_added\": \"2019-06-25T13:47:00Z\",\n                        \"address\": {\n                            \"country\": null,\n                            \"city\": \"Portland\",\n                            \"zip\": null,\n                            \"address1\": null,\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45712,\n                        \"phone\": \"999.555.5555\"\n                    },\n                    {\n                        \"email\": \"candidate_with_resume@example.com\",\n                        \"date_added\": \"2019-06-23T13:31:17Z\",\n                        \"address\": {\n                            \"country\": null,\n                            \"city\": null,\n                            \"zip\": null,\n                            \"address1\": \"123 Main St\",\n                            \"state\": null\n                        },\n                        \"id\": 45099,\n                        \"first_name\": \"Candidate\",\n                        \"last_name\": \"Resume\",\n                        \"cell_phone\": \"900.523.9999\"\n                    },\n                    {\n                        \"referral_source\": \"Reed\",\n                        \"phone\": \"0334545619\",\n                        \"last_name\": \"Chu\",\n                        \"cell_phone\": \"0498765106\",\n                        \"email\": \"Charlette.Chu@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"760 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42541,\n                        \"first_name\": \"Charlette\"\n                    },\n                    {\n                        \"referral_source\": \"Jobsite\",\n                        \"phone\": \"0334545627\",\n                        \"last_name\": \"Giltner\",\n                        \"cell_phone\": \"0498765114\",\n                        \"email\": \"Giovanni.Giltner@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"840 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42558,\n                        \"first_name\": \"Giovanni\"\n                    },\n                    {\n                        \"referral_source\": \"Reed\",\n                        \"phone\": \"0334545621\",\n                        \"last_name\": \"Issa\",\n                        \"cell_phone\": \"0498765108\",\n                        \"email\": \"Izetta.Issa@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"780 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42564,\n                        \"first_name\": \"Izetta\"\n                    },\n                    {\n                        \"referral_source\": \"SEEK\",\n                        \"phone\": \"0334545593\",\n                        \"last_name\": \"Bain\",\n                        \"cell_phone\": \"0498765080\",\n                        \"email\": \"Katie.Bain@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"500 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42572,\n                        \"first_name\": \"Katie\"\n                    },\n                    {\n                        \"email\": \"meonmy@h.com\",\n                        \"date_added\": \"2019-09-06T12:57:21Z\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"999 Street\",\n                            \"state\": \"CA\"\n                        },\n                        \"id\": 63952,\n                        \"first_name\": \"Me\",\n                        \"last_name\": \"My\"\n                    },\n                    {\n                        \"referral_source\": \"Indeed\",\n                        \"phone\": \"0334545639\",\n                        \"last_name\": \"Rohr\",\n                        \"cell_phone\": \"0498765126\",\n                        \"email\": \"Reina.Rohr@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"960 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42600,\n                        \"first_name\": \"Reina\"\n                    },\n                    {\n                        \"email\": \"test0805@cooltheory.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-08-05T16:57:12Z\",\n                        \"id\": 60776,\n                        \"phone\": \"7163935555\",\n                        \"first_name\": \"Richard Bush\"\n                    },\n                    {\n                        \"referral_source\": \"Monster\",\n                        \"phone\": \"0334545607\",\n                        \"last_name\": \"Sorrells\",\n                        \"cell_phone\": \"0498765094\",\n                        \"email\": \"Sheba.Sorrells@email.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"640 Main Street\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"id\": 42606,\n                        \"first_name\": \"Sheba\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Cooking\",\n                            \"Programming\",\n                            \"Thinking\",\n                            \"Writing.Photography\"\n                        ],\n                        \"phone\": \"866.933.1234\",\n                        \"last_name\": \"Memoranxdum\",\n                        \"email\": \"kjhj8774s3@d.fam\",\n                        \"date_added\": \"2019-12-18T15:07:02Z\",\n                        \"id\": 74672,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"99 Pony Rd\",\n                            \"state\": \"CA\"\n                        },\n                        \"first_name\": \"T\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Cooking\",\n                            \"Programming\",\n                            \"Thinking\",\n                            \"Writing.Photography\"\n                        ],\n                        \"phone\": \"866.933.1234\",\n                        \"last_name\": \"Memoranxdum\",\n                        \"email\": \"tgi4kjhj8774s3@d.fam\",\n                        \"date_added\": \"2019-09-13T19:29:26Z\",\n                        \"id\": 64497,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"99 Pony Rd\",\n                            \"state\": \"CA\"\n                        },\n                        \"first_name\": \"T\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Cooking\",\n                            \"Programming\",\n                            \"Thinking\",\n                            \"Writing.Photography\"\n                        ],\n                        \"phone\": \"866.933.1244\",\n                        \"last_name\": \"Memrand\",\n                        \"email\": \"kjhj823232774s3@d.fam\",\n                        \"date_added\": \"2019-12-30T13:06:32Z\",\n                        \"id\": 75340,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"99 Pony Rd\",\n                            \"state\": \"CA\"\n                        },\n                        \"first_name\": \"Ta\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Cooking\",\n                            \"Programming\",\n                            \"Thinking\",\n                            \"Writing.Photography\"\n                        ],\n                        \"phone\": \"866.933.1244\",\n                        \"last_name\": \"Memrands\",\n                        \"email\": \"kjhj823232774s3@do.fam\",\n                        \"date_added\": \"2019-12-30T13:48:25Z\",\n                        \"id\": 75342,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"99 Pony Rd\",\n                            \"state\": \"CA\"\n                        },\n                        \"first_name\": \"Tap\"\n                    },\n                    {\n                        \"email\": \"tmstest09180@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-09-18T21:08:46Z\",\n                        \"id\": 64962,\n                        \"first_name\": \"tes\",\n                        \"last_name\": \"tester\",\n                        \"cell_phone\": \"7165555555\"\n                    },\n                    {\n                        \"email\": \"tshoemaker080719-2@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-08-07T17:38:25Z\",\n                        \"id\": 61192,\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"email\": \"tshoemaker080719-1@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-08-07T17:28:41Z\",\n                        \"id\": 61190,\n                        \"phone\": \"8886962900\",\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"email\": \"tshoemaker080719@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-08-07T17:19:14Z\",\n                        \"id\": 61189,\n                        \"phone\": \"8886962900\",\n                        \"first_name\": \"test\"\n                    },\n                    {\n                        \"email\": \"test2@Test071416.com\",\n                        \"date_added\": \"2019-06-20T16:02:43Z\",\n                        \"id\": 45090,\n                        \"phone\": \"555-555-5555\",\n                        \"first_name\": \"Test\"\n                    },\n                    {\n                        \"email\": \"tshoemaker09180@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-09-18T21:00:39Z\",\n                        \"id\": 64961,\n                        \"phone\": \"8886962900\",\n                        \"first_name\": \"test\",\n                        \"last_name\": \"tester\"\n                    },\n                    {\n                        \"email\": \"tshoemaker080719-3@haleymarketing.com\",\n                        \"referral_source\": \"job-board\",\n                        \"date_added\": \"2019-08-07T17:50:36Z\",\n                        \"id\": 61194,\n                        \"phone\": \"8886962900\",\n                        \"first_name\": \"tester\"\n                    },\n                    {\n                        \"email\": \"tgis@d.fam\",\n                        \"date_added\": \"2019-06-27T17:01:27Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"523 Main Street\",\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45753,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@c.fam\",\n                        \"date_added\": \"2019-06-25T15:09:33Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"523 Main Street\",\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45726,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@c.farm\",\n                        \"date_added\": \"2019-06-25T14:33:40Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"523 Main Street\",\n                            \"state\": \"MAINE\"\n                        },\n                        \"id\": 45725,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@b.farm\",\n                        \"date_added\": \"2019-06-25T14:31:48Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"id\": 45724,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@a.farm\",\n                        \"date_added\": \"2019-06-25T14:29:33Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"id\": 45723,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@jabbahut.biz\",\n                        \"date_added\": \"2019-06-25T14:18:06Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"id\": 45721,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@jabbahut.net\",\n                        \"date_added\": \"2019-06-25T14:17:11Z\",\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"id\": 45720,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@jabbahut.ix\",\n                        \"date_added\": \"2019-06-25T14:15:23Z\",\n                        \"id\": 45719,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@jabba.com\",\n                        \"date_added\": \"2019-06-25T14:08:23Z\",\n                        \"id\": 45718,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgis@fexample.com\",\n                        \"date_added\": \"2019-06-25T14:05:41Z\",\n                        \"id\": 45717,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"testingis@fexample.com\",\n                        \"date_added\": \"2019-06-25T14:02:18Z\",\n                        \"id\": 45716,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"testing_this@fexample.com\",\n                        \"date_added\": \"2019-06-25T13:59:02Z\",\n                        \"id\": 45715,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"t@fexample.com\",\n                        \"date_added\": \"2019-06-20T16:29:11Z\",\n                        \"id\": 45094,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"t@example.com\",\n                        \"date_added\": \"2019-06-20T16:26:12Z\",\n                        \"id\": 45093,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tet@example.com\",\n                        \"date_added\": \"2019-06-20T16:18:01Z\",\n                        \"id\": 45092,\n                        \"phone\": \"999.555.5555\",\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Writing\"\n                        ],\n                        \"phone\": \"999.333.1234\",\n                        \"last_name\": \"Me\",\n                        \"email\": \"tgi44s3@d.fam\",\n                        \"date_added\": \"2019-08-29T12:20:00Z\",\n                        \"id\": 63328,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"6 Tree Top Way\",\n                            \"state\": \"Maine\"\n                        },\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"email\": \"tgi8s@d.fam\",\n                        \"date_added\": \"2019-08-22T12:50:03Z\",\n                        \"id\": 63082,\n                        \"phone\": \"999.333.1234\",\n                        \"first_name\": \"Testing\",\n                        \"last_name\": \"Me\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Stuff\"\n                        ],\n                        \"phone\": \"899.333.1234\",\n                        \"last_name\": \"Memo\",\n                        \"email\": \"tgijkhk4k4s3@d.fam\",\n                        \"date_added\": \"2019-09-11T19:32:11Z\",\n                        \"id\": 64290,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"99 Tree Top Way\",\n                            \"state\": \"Maine\"\n                        },\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"skills\": [\n                            \"Communication\",\n                            \"Leadership\",\n                            \"Stuff\"\n                        ],\n                        \"phone\": \"899.333.1234\",\n                        \"last_name\": \"Memo\",\n                        \"email\": \"tgi4k4s3@d.fam\",\n                        \"date_added\": \"2019-09-06T12:07:29Z\",\n                        \"id\": 63950,\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04563\",\n                            \"address1\": \"99 Tree Top Way\",\n                            \"state\": \"Maine\"\n                        },\n                        \"first_name\": \"Testing\"\n                    },\n                    {\n                        \"referral_source\": \"Seek\",\n                        \"skills\": [\n                            \"communication\",\n                            \"testing\"\n                        ],\n                        \"phone\": \"999.333.3333\",\n                        \"last_name\": \"This\",\n                        \"email\": \"test@example.com\",\n                        \"date_added\": \"2019-06-20T16:09:49Z\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Los Angeles\",\n                            \"zip\": \"90062\",\n                            \"address1\": \"901 Main Street\",\n                            \"state\": \"California\"\n                        },\n                        \"id\": 45091,\n                        \"first_name\": \"Testing\"\n                    }\n                ]\n            },\n            \"xstatus\": \"138 candidates returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.362658\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T20:40:12\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45091?access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"14.786278\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"138 candidates returned\"\n}"}],"_postman_id":"c2ee9143-f22a-47ca-980c-4ce158791df8"},{"name":"Candidate Get Resume","id":"3d3bbfe4-8cf0-4cc3-adb2-b0db5e684009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": 45099,\r\n    \t\"attachment\": 1\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate attachments.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n<li>attachment - <b>REQUIRED</b> - set to 1</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 45099,\n        \"attachment\": 1\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"edf9df42-f718-46dc-b813-a1e3b9bad419","name":"Candidate Get Resume","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": 45099,\r\n    \t\"attachment\": 1\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:41:40 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"612"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272263"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 1,\n                \"count\": 1,\n                \"candidates\": [\n                    {\n                        \"file_type\": \"application/vnd.oasis.opendocument.text\",\n                        \"attachment_id\": 10366,\n                        \"date_added\": \"2019-06-23T13:31:18Z\",\n                        \"file\": \"Sample-Resume.odt\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 candidate returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.908005,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T20:41:41\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45099/attachments?candidateId=45099&latest=true&access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.809099\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"3d3bbfe4-8cf0-4cc3-adb2-b0db5e684009"},{"name":"Candidate Set","id":"094feea4-1825-4a39-926e-ee0a3e74a7e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{laboredge_client_id}}\",\r\n      \"api_un\": \"{{laboredge_user_name}}\",\r\n      \"api_pw\": \"{{laboredge_password}}\",\r\n      \"api_secret\": \"{{laboredge_client_secret}}\"\r\n    },\r\n    \"vendor\": \"laboredge\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"email\":\"kjhjfff823232774s3@do.fam\",\r\n                        \"first_name\":\"Tasp\",\r\n                        \"last_name\":\"Memrsands\",\r\n                        \"job_id\": 123\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>email - <b>REQUIRED</b> - Primary email address </p>\n</li>\n<li><p>first_name - <b>OPTIONAL</b> - First name</p>\n</li>\n<li><p>last_name <b>OPTIONAL</b> - Last name</p>\n</li>\n<li><p>phone - <b>OPTIONAL</b> - Contact phone number</p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>zip - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n<li><p>skills - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n                        \"email\":\"kjhj823232774s3@do.fam\",\n                        \"first_name\":\"Tap\",\n                        \"last_name\":\"Memrands\",\n                        \"phone\":\"866.933.1244\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"city\": \"Los Angeles\",\n                        \"state\": \"CA\",\n                        \"zip\": \"90062\",\n                        \"country\":\"US\",\n                        \"skills\": \"Thinking, Programming, Cooking, Writing. Photography\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"094feea4-1825-4a39-926e-ee0a3e74a7e3"},{"name":"Candidate Update","id":"94c77bf3-1c12-4bdc-8e0a-a20d574b30e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"id\":45091,\r\n                        \"phone\":\"888.933.3334\",\r\n                        \"address1\": \"35 Tree Top Way\",\r\n                        \"address2\": \"\",\r\n                        \"city\": \"Portland\",\r\n                        \"state\": \"Maine\",\r\n                        \"zip\": \"04569\",\r\n                        \"country\":\"US\",\r\n                        \"skills\": \"communication\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>email - <b>OPTONAL</b> - Primary email address </p>\n</li>\n<li><p>first_name - <b>OPTIONAL</b> - First name</p>\n</li>\n<li><p>last_name <b>OPTIONAL</b> - Last name</p>\n</li>\n<li><p>phone - <b>OPTIONAL</b> - Contact phone number</p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>zip - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n<li><p>skills - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n                        \"id\":45091,\n                        \"phone\":\"888.933.3334\",\n                        \"address1\": \"35 Tree Top Way\",\n                        \"address2\": \"\",\n                        \"city\": \"Portland\",\n                        \"state\": \"Maine\",\n                        \"zip\": \"04569\",\n                        \"country\":\"US\",\n                        \"skills\": \"communication\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9adf90d3-ef1b-4378-a2bd-0071d134788c","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n                        \"id\":45091,\r\n                        \"phone\":\"888.933.3334\",\r\n                        \"address1\": \"35 Tree Top Way\",\r\n                        \"address2\": \"\",\r\n                        \"city\": \"Portland\",\r\n                        \"state\": \"Maine\",\r\n                        \"zip\": \"04569\",\r\n                        \"country\":\"US\",\r\n                        \"skills\": \"communication\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:44:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1196"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272266"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"source\": \"Seek\",\n                \"statistics\": {\n                    \"applications\": {\n                        \"active\": 3,\n                        \"new\": 3,\n                        \"total\": 3\n                    },\n                    \"placements\": {\n                        \"total\": 0\n                    }\n                },\n                \"createdBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"status\": {\n                    \"statusId\": 2402,\n                    \"active\": true,\n                    \"name\": \"Active\",\n                    \"default\": true\n                },\n                \"employment\": {\n                    \"history\": [\n                        {\n                            \"position\": \"Cashier\",\n                            \"description\": \"I ran the cash register.\",\n                            \"employer\": \"Staples\"\n                        }\n                    ],\n                    \"current\": {\n                        \"workType\": {\n                            \"name\": \"Temp\",\n                            \"workTypeId\": 1471\n                        },\n                        \"salary\": {\n                            \"rate\": 15.99,\n                            \"ratePer\": \"Hour\"\n                        },\n                        \"employer\": \"Test This\"\n                    },\n                    \"ideal\": {\n                        \"workType\": {\n                            \"name\": \"Contract\",\n                            \"workTypeId\": 1470\n                        },\n                        \"salary\": {\n                            \"ratePer\": \"Hour\",\n                            \"rateLow\": 20,\n                            \"rateHigh\": 20\n                        }\n                    }\n                },\n                \"email\": \"test@example.com\",\n                \"createdAt\": \"2019-06-20T16:09:49Z\",\n                \"availability\": {\n                    \"relative\": {\n                        \"unit\": \"Week\",\n                        \"period\": 2\n                    }\n                },\n                \"lastName\": \"This\",\n                \"address\": {\n                    \"country\": \"United States\",\n                    \"city\": \"Portland\",\n                    \"street\": [\n                        \"35 Tree Top Way\"\n                    ],\n                    \"postcode\": \"04569\",\n                    \"countryCode\": \"US\",\n                    \"postalCode\": \"04569\",\n                    \"state\": \"Maine\"\n                },\n                \"links\": {\n                    \"attachments\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/attachments\",\n                    \"skills\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/skills\",\n                    \"applications\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/applications\",\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/45091\",\n                    \"placements\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/placements\",\n                    \"floats\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/floats\",\n                    \"videos\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/videos\",\n                    \"submissions\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/submissions\",\n                    \"notes\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/notes\"\n                },\n                \"firstName\": \"Testing\",\n                \"candidateId\": 45091,\n                \"skillTags\": [\n                    \"communication\"\n                ],\n                \"updatedBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"updatedAt\": \"2020-01-08T20:44:56Z\",\n                \"education\": [\n                    {\n                        \"course\": \"Engineering\",\n                        \"date\": \"1995\",\n                        \"institution\": \"University of Tennessee\"\n                    }\n                ],\n                \"phone\": \"888.933.3334\"\n            },\n            \"xstatus\": \"200 OK\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.990896\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-08T20:44:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"candidateId\\\":45091,\\\"skillTags\\\":[\\\"communication\\\"],\\\"address\\\":{\\\"city\\\":\\\"Portland\\\",\\\"street\\\":[\\\"35 Tree Top Way\\\"],\\\"state\\\":\\\"Maine\\\",\\\"postalCode\\\":\\\"04569\\\",\\\"countryCode\\\":\\\"US\\\"},\\\"phone\\\":\\\"888.933.3334\\\"}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45091\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.941831\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"94c77bf3-1c12-4bdc-8e0a-a20d574b30e1"},{"name":"Candidate Get By ID","id":"c8786b19-d93e-434b-af3a-54362a5d4c61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1,\r\n    \t\"id\": 45091\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"offset\": 0,\n        \"limit\": 1,\n        \"id\": 45091\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2937f898-3743-4d5a-a9f9-bde70d548070","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1,\r\n    \t\"id\": 45091\r\n    },\r\n    \"api_request_fields\": \"\"\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 20:58:40 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"687"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272272"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 1,\n                \"count\": 1,\n                \"candidates\": [\n                    {\n                        \"referral_source\": \"Seek\",\n                        \"skills\": [\n                            \"communication\"\n                        ],\n                        \"phone\": \"888.933.3334\",\n                        \"last_name\": \"This\",\n                        \"email\": \"test@example.com\",\n                        \"date_added\": \"2019-06-20T16:09:49Z\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Portland\",\n                            \"zip\": \"04569\",\n                            \"address1\": \"35 Tree Top Way\",\n                            \"state\": \"Maine\"\n                        },\n                        \"id\": 45091,\n                        \"first_name\": \"Testing\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 candidate returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.245536,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T20:58:42\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45091?candidateId=45091&access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.028908\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"c8786b19-d93e-434b-af3a-54362a5d4c61"},{"name":"Candidate Search","id":"11345978-45ad-4779-9f60-4dd7dd8b39a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 45090,\r\n        \"first_name\": \"\",\r\n        \"last_name\": \"\",\r\n        \"email\": \"\",\r\n        \"phone\": \"\",\r\n        \"cell_phone\": \"\",\r\n        \"keywords\": \"\",\r\n        \"offset\": 0,\r\n        \"limit\": 1000\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all candidates matching search criteria.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>email - <b>OPTONAL</b> - Primary email address </p>\n</li>\n<li><p>first_name - <b>OPTIONAL</b> - First name</p>\n</li>\n<li><p>last_name <b>OPTIONAL</b> - Last name</p>\n</li>\n<li><p>phone - <b>OPTIONAL</b> - Contact phone number</p>\n</li>\n<li><p>cell_phone - <b>OPTIONAL</b> - Mobile/cell number</p>\n</li>\n<li><p>keywords - <b>OPTIONAL</b> - Search for key words within the latest candidate resume</p>\n</li>\n</ul>\n<p><b>Filter Matching:</b></p>\n\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 45090,\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"email\": \"\",\n        \"phone\": \"\",\n        \"cell_phone\": \"\",\n        \"keywords\": \"\",\n        \"offset\": 0,\n        \"limit\": 1000\n    }\n  }\n</pre>\n\n<ul>\n<li>api_request_query - <b>REQUIRED</b> - hash with key:value pairs signifying the values the call wants to query</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e90cefa2-9f69-4b1c-b679-c5c62079fa60","name":"Candidate Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 45090,\r\n        \"first_name\": \"\",\r\n        \"last_name\": \"\",\r\n        \"email\": \"\",\r\n        \"phone\": \"\",\r\n        \"cell_phone\": \"\",\r\n        \"keywords\": \"\",\r\n        \"offset\": 0,\r\n        \"limit\": 1000\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:01:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"581"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199437"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 1,\n                \"count\": 1,\n                \"candidates\": [\n                    {\n                        \"email\": \"test2@Test071416.com\",\n                        \"date_added\": \"2019-06-20T16:02:43Z\",\n                        \"id\": 45090,\n                        \"phone\": \"555-555-5555\",\n                        \"first_name\": \"Test\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 candidate returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.239718,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T21:01:17\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45090?candidateId=45090&access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.044261\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"11345978-45ad-4779-9f60-4dd7dd8b39a1"},{"name":"Candidate Set Education","id":"aff91740-fe34-4e50-b805-cf2ad36674eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1,\r\n        \"id\": 64497,\r\n        \"country\":\"United States\",\r\n        \"state\":\"NY\",\r\n        \"graduation_date\": 2020,\r\n        \"city\":\"Manhattan\",\r\n        \"school\":\"NYU Silver School of Social Work\",\r\n        \"major\":\"Social Work Clinical\"\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>country - <b>OPTONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>graduation_date <b>OPTIONAL</b> - Year only</p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>school - <b>OPTIONAL</b></p>\n</li>\n<li><p>major - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"offset\": 0,\n        \"limit\": 1,\n        \"id\": 64497,\n        \"country\":\"United States\",\n        \"state\":\"NY\",\n        \"graduation_date\": 2020,\n        \"city\":\"Manhattan\",\n        \"school\":\"NYU Silver School of Social Work\",\n        \"major\":\"Social Work Clinical\"\n     }\n}\n</pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"73559b0b-0d7c-4f3b-84ed-363e6a4d259f","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"offset\": 0,\r\n    \t\"limit\": 1,\r\n        \"id\": 64497,\r\n        \"country\":\"United States\",\r\n        \"state\":\"NY\",\r\n        \"graduation_date\": 2020,\r\n        \"city\":\"Manhattan\",\r\n        \"school\":\"NYU Silver School of Social Work\",\r\n        \"major\":\"Social Work Clinical\"\r\n     }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:12:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1061"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199443"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"statistics\": {\n                    \"applications\": {\n                        \"active\": 0,\n                        \"new\": 0,\n                        \"total\": 0\n                    },\n                    \"placements\": {\n                        \"total\": 0\n                    }\n                },\n                \"createdBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"status\": {\n                    \"statusId\": 2402,\n                    \"active\": true,\n                    \"name\": \"Active\",\n                    \"default\": true\n                },\n                \"employment\": {\n                    \"history\": [\n                        {\n                            \"position\": \"Cashier\",\n                            \"description\": \"I ran the cash register.\",\n                            \"employer\": \"Staples\"\n                        }\n                    ]\n                },\n                \"email\": \"tgi4kjhj8774s3@d.fam\",\n                \"createdAt\": \"2019-09-13T19:29:26Z\",\n                \"lastName\": \"Memoranxdum\",\n                \"address\": {\n                    \"country\": \"United States\",\n                    \"city\": \"Los Angeles\",\n                    \"street\": [\n                        \"99 Pony Rd\"\n                    ],\n                    \"postcode\": \"90062\",\n                    \"countryCode\": \"US\",\n                    \"postalCode\": \"90062\",\n                    \"state\": \"CA\"\n                },\n                \"links\": {\n                    \"attachments\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/attachments\",\n                    \"skills\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/skills\",\n                    \"applications\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/applications\",\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/64497\",\n                    \"placements\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/placements\",\n                    \"floats\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/floats\",\n                    \"videos\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/videos\",\n                    \"submissions\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/submissions\",\n                    \"notes\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/notes\"\n                },\n                \"firstName\": \"T\",\n                \"candidateId\": 64497,\n                \"skillTags\": [\n                    \"Cooking\",\n                    \"Programming\",\n                    \"Thinking\",\n                    \"Writing.Photography\"\n                ],\n                \"updatedBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"updatedAt\": \"2020-01-08T21:12:56Z\",\n                \"education\": [\n                    {\n                        \"course\": \"Social Work Clinical\",\n                        \"date\": \"2020\",\n                        \"institution\": \"NYU Silver School of Social Work\"\n                    }\n                ],\n                \"phone\": \"866.933.1234\"\n            },\n            \"xstatus\": \"200 OK\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.90878\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-08T21:12:55\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"education\\\":[{\\\"course\\\":\\\"Social Work Clinical\\\",\\\"date\\\":2020,\\\"institution\\\":\\\"NYU Silver School of Social Work\\\"}]}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/64497\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.807584\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"aff91740-fe34-4e50-b805-cf2ad36674eb"},{"name":"Candidate Get Education","id":"ea66eb38-ac24-4dca-b1ea-03cfb76ef046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5940f19e-6a28-4da3-831a-2954210189af","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:09:35 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"574"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199440"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T21:09:36\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T21:09:36\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"jobadder\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"refresh_token\\\",\\\"refresh_token\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"lzsaqckzxocurddtscursm4zcq\\\",\\\"session_url\\\":\\\"https://id.jobadder.com/connect/token\\\"}\",\n            \"call\": \"https://id.jobadder.com/connect/token\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"0.89059\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"ea66eb38-ac24-4dca-b1ea-03cfb76ef046"},{"name":"Candidate Set Work History","id":"8076236c-ac7f-4dc6-8ab2-80a18ceea845","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 64497,\r\n        \"title\": \"Cashier\",\r\n        \"company_name\": \"Staples\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"01/05/1992\",\r\n        \"end_date\":\"01/31/1992\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>title - <b>OPTONAL</b></p>\n</li>\n<li><p>company_name - <b>OPTIONAL</b></p>\n</li>\n<li><p>comments <b>OPTIONAL</b></p>\n</li>\n<li><p>start_date - <b>OPTIONAL</b></p>\n</li>\n<li><p>end_date - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 64497,\n        \"title\": \"Cashier\",\n        \"company_name\": \"Staples\",\n        \"comments\": \"I ran the cash register.\",\n        \"start_date\": \"01/05/1992\",\n        \"end_date\":\"01/31/1992\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9a416f22-1b3e-4886-8682-cfe49fbed8de","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 64497,\r\n        \"title\": \"Cashier\",\r\n        \"company_name\": \"Staples\",\r\n        \"comments\": \"I ran the cash register.\",\r\n        \"start_date\": \"01/05/1992\",\r\n        \"end_date\":\"01/31/1992\"\r\n    },\r\n    \"api_request_fields\": \"\"\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:07:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1089"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272281"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"statistics\": {\n                    \"applications\": {\n                        \"active\": 0,\n                        \"new\": 0,\n                        \"total\": 0\n                    },\n                    \"placements\": {\n                        \"total\": 0\n                    }\n                },\n                \"createdBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"status\": {\n                    \"statusId\": 2402,\n                    \"active\": true,\n                    \"name\": \"Active\",\n                    \"default\": true\n                },\n                \"employment\": {\n                    \"history\": [\n                        {\n                            \"position\": \"Cashier\",\n                            \"description\": \"I ran the cash register.\",\n                            \"employer\": \"Staples\"\n                        }\n                    ]\n                },\n                \"email\": \"tgi4kjhj8774s3@d.fam\",\n                \"createdAt\": \"2019-09-13T19:29:26Z\",\n                \"lastName\": \"Memoranxdum\",\n                \"address\": {\n                    \"country\": \"United States\",\n                    \"city\": \"Los Angeles\",\n                    \"street\": [\n                        \"99 Pony Rd\"\n                    ],\n                    \"postcode\": \"90062\",\n                    \"countryCode\": \"US\",\n                    \"postalCode\": \"90062\",\n                    \"state\": \"CA\"\n                },\n                \"links\": {\n                    \"attachments\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/attachments\",\n                    \"skills\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/skills\",\n                    \"applications\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/applications\",\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/64497\",\n                    \"placements\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/placements\",\n                    \"floats\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/floats\",\n                    \"videos\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/videos\",\n                    \"submissions\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/submissions\",\n                    \"notes\": \"https://sandboxapi.jobadder.com/v2/candidates/64497/notes\"\n                },\n                \"firstName\": \"T\",\n                \"candidateId\": 64497,\n                \"skillTags\": [\n                    \"Cooking\",\n                    \"Programming\",\n                    \"Thinking\",\n                    \"Writing.Photography\"\n                ],\n                \"updatedBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"updatedAt\": \"2020-01-08T21:07:09Z\",\n                \"education\": [\n                    {\n                        \"course\": \"Social Work Clinical\",\n                        \"date\": \"2020\",\n                        \"institution\": \"NYU Silver School of Social Work\"\n                    }\n                ],\n                \"phone\": \"866.933.1234\"\n            },\n            \"xstatus\": \"200 OK\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Workhistory SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.967267\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-08T21:07:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"employment\\\":{\\\"history\\\":[{\\\"position\\\":\\\"Cashier\\\",\\\"description\\\":\\\"I ran the cash register.\\\",\\\"start\\\":\\\"01/05/1992\\\",\\\"employer\\\":\\\"Staples\\\",\\\"end\\\":\\\"01/31/1992\\\"}]}}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/64497\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.861449\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"8076236c-ac7f-4dc6-8ab2-80a18ceea845"},{"name":"Candidate Get Work History","id":"0c926368-674c-4b0c-805c-0cb0535e9617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For getting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cbe45497-f0a4-408f-a4fc-f9c4809032cf","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:05:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"578"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272278"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Workhistory GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T21:05:53\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T21:05:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"jobadder\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"grant_type\\\":\\\"refresh_token\\\",\\\"refresh_token\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"client_secret\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"client_id\\\":\\\"lzsaqckzxocurddtscursm4zcq\\\",\\\"session_url\\\":\\\"https://id.jobadder.com/connect/token\\\"}\",\n            \"call\": \"https://id.jobadder.com/connect/token\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"0.828606\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"0c926368-674c-4b0c-805c-0cb0535e9617"}],"id":"694dd3ef-429c-4f56-83cc-1fa9352e5e0f","_postman_id":"694dd3ef-429c-4f56-83cc-1fa9352e5e0f","description":""},{"name":"Custom","item":[{"name":"Custom","id":"b09c4562-5a92-44e0-949f-f91fe9fee5a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n              \"api_id\": \"{{jobadder_client_id}}\",\n\t\t      \"api_un\": \"{{jobadder_user_name}}\",\n\t\t      \"api_pw\": \"{{jobadder_password}}\",\n\t\t      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\n\t\t      \"api_secret\": \"{{jobadder_client_secret}}\"\n        },\n        \"vendor\":\"jobadder\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n                        \"phone\":\"999.333.3333\",\n                        \"address\": {\n                        \t\"street\": [\"901 Main Street\"],\n                            \"city\":\"Los Angeles\",\n                            \"state\":\"California\",\n                            \"postalCode\":\"90062\",\n                            \"countryCode\":\"US\"\n                        },\n                        \"skillTags\": [\"testing\", \"communication\"]\n    \t    },\n        \"api_custom_action\": \"PUT\",\n        \"api_custom_call\": \"candidates/45091\"\n    }\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to JobAdder via ATS-Connect</p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ef9cec58-9686-4cd2-972a-5603a0cc2f14","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n              \"api_id\": \"{{jobadder_client_id}}\",\n\t\t      \"api_un\": \"{{jobadder_user_name}}\",\n\t\t      \"api_pw\": \"{{jobadder_password}}\",\n\t\t      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\n\t\t      \"api_secret\": \"{{jobadder_client_secret}}\"\n        },\n        \"vendor\":\"jobadder\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\":{\n    \t    \"api_request_query\": {\n                        \"phone\":\"999.333.3333\",\n                        \"address\": {\n                        \t\"street\": [\"901 Main Street\"],\n                            \"city\":\"Los Angeles\",\n                            \"state\":\"California\",\n                            \"postalCode\":\"90062\",\n                            \"countryCode\":\"US\"\n                        },\n                        \"skillTags\": [\"testing\", \"communication\"]\n    \t    },\n        \"api_custom_action\": \"PUT\",\n        \"api_custom_call\": \"candidates/45091\"\n    }\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:14:46 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1197"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272287"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"source\": \"Seek\",\n                \"statistics\": {\n                    \"applications\": {\n                        \"active\": 3,\n                        \"new\": 3,\n                        \"total\": 3\n                    },\n                    \"placements\": {\n                        \"total\": 0\n                    }\n                },\n                \"createdBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"status\": {\n                    \"statusId\": 2402,\n                    \"active\": true,\n                    \"name\": \"Active\",\n                    \"default\": true\n                },\n                \"employment\": {\n                    \"history\": [\n                        {\n                            \"position\": \"Cashier\",\n                            \"description\": \"I ran the cash register.\",\n                            \"employer\": \"Staples\"\n                        }\n                    ],\n                    \"current\": {\n                        \"workType\": {\n                            \"name\": \"Temp\",\n                            \"workTypeId\": 1471\n                        },\n                        \"salary\": {\n                            \"rate\": 15.99,\n                            \"ratePer\": \"Hour\"\n                        },\n                        \"employer\": \"Test This\"\n                    },\n                    \"ideal\": {\n                        \"workType\": {\n                            \"name\": \"Contract\",\n                            \"workTypeId\": 1470\n                        },\n                        \"salary\": {\n                            \"ratePer\": \"Hour\",\n                            \"rateLow\": 20,\n                            \"rateHigh\": 20\n                        }\n                    }\n                },\n                \"email\": \"test@example.com\",\n                \"createdAt\": \"2019-06-20T16:09:49Z\",\n                \"availability\": {\n                    \"relative\": {\n                        \"unit\": \"Week\",\n                        \"period\": 2\n                    }\n                },\n                \"lastName\": \"This\",\n                \"address\": {\n                    \"country\": \"United States\",\n                    \"city\": \"Los Angeles\",\n                    \"street\": [\n                        \"901 Main Street\"\n                    ],\n                    \"postcode\": \"90062\",\n                    \"countryCode\": \"US\",\n                    \"postalCode\": \"90062\",\n                    \"state\": \"California\"\n                },\n                \"links\": {\n                    \"attachments\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/attachments\",\n                    \"skills\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/skills\",\n                    \"applications\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/applications\",\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/45091\",\n                    \"placements\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/placements\",\n                    \"floats\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/floats\",\n                    \"videos\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/videos\",\n                    \"submissions\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/submissions\",\n                    \"notes\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/notes\"\n                },\n                \"firstName\": \"Testing\",\n                \"candidateId\": 45091,\n                \"skillTags\": [\n                    \"communication\",\n                    \"testing\"\n                ],\n                \"updatedBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"updatedAt\": \"2020-01-08T21:14:49Z\",\n                \"education\": [\n                    {\n                        \"course\": \"Engineering\",\n                        \"date\": \"1995\",\n                        \"institution\": \"University of Tennessee\"\n                    }\n                ],\n                \"phone\": \"999.333.3333\"\n            },\n            \"xstatus\": \"200 OK\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.922381,\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2020-01-08T21:14:48\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"skillTags\\\":[\\\"testing\\\",\\\"communication\\\"],\\\"address\\\":{\\\"city\\\":\\\"Los Angeles\\\",\\\"street\\\":[\\\"901 Main Street\\\"],\\\"countryCode\\\":\\\"US\\\",\\\"postalCode\\\":\\\"90062\\\",\\\"state\\\":\\\"California\\\"},\\\"phone\\\":\\\"999.333.3333\\\"}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45091\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.821634\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"b09c4562-5a92-44e0-949f-f91fe9fee5a4"}],"id":"1630e356-2e86-4d96-a46f-648db46310ab","_postman_id":"1630e356-2e86-4d96-a46f-648db46310ab","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"ad381b94-36a5-4b95-bbd8-a2ea7b5c8f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 45091,\r\n      \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\",\r\n      \"file_name\": \"Resume.odt\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n<li><p>file_name - <b>REQUIRED</b> - arbitrary it's not used by JobAdder</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 45091,\n      \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\",\n      \"file_name\": \"Resume.odt\"\n    }\n  }\n  </pre>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2610736b-75ab-4764-a198-98d08f5549ab","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 45091,\r\n      \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\",\r\n      \"file_name\": \"Resume.odt\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:17:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"539"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199446"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"updatedAt\": \"2020-01-08T21:17:16Z\",\n                \"fileName\": \"Resume\",\n                \"createdAt\": \"2020-01-08T21:17:16Z\",\n                \"type\": \"Resume\",\n                \"category\": \"Resume\",\n                \"attachmentId\": 12587,\n                \"fileType\": \"application/octet-stream\",\n                \"links\": {\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/attachments/12587\"\n                }\n            },\n            \"xstatus\": \"201 Created\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 5.458421,\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2020-01-08T21:17:20\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/45091/attachments/Resume\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"6.370499\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"ad381b94-36a5-4b95-bbd8-a2ea7b5c8f79"}],"id":"37cd6c49-3a4c-40eb-8a54-191badc7a2fd","_postman_id":"37cd6c49-3a4c-40eb-8a54-191badc7a2fd","description":""},{"name":"Job","item":[{"name":"Job Get","id":"496a6ef8-b51c-4282-8661-533dbcdedcd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {}\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8e1d8b97-3977-4d98-bee3-2f2813fd60b1","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:18:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1908"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199449"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 5,\n                \"count\": 5,\n                \"jobs\": [\n                    {\n                        \"pay_rate\": \"10000 - 15000 per Year\",\n                        \"status\": \"Searching\",\n                        \"description\": \"<div><strong>Here's the description:</strong></div>  <ol>  <li>Wash dishes</li>  <li>Dry dishes</li>  </ol>  <div>Also:</div>  <ul>  <li>Wash sink</li>  <li>Dry sink</li>  </ul>\",\n                        \"reply_to\": \"Obiora_Embry@yahoo.com\",\n                        \"date_added\": \"2019-09-18T20:46:39Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/3092\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"email\": \"Obiora_Embry@yahoo.com\",\n                            \"id\": 1280,\n                            \"last_name\": \"Me\",\n                            \"first_name\": \"Test\"\n                        },\n                        \"id\": 3092,\n                        \"title\": \"Head Dishwasher\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Williamsville\",\n                            \"zip\": \"14221\",\n                            \"address1\": \"6028 Sheridan Drive\",\n                            \"state\": \"NY\"\n                        },\n                        \"category\": \"Hospitality / Travel / Tourism\"\n                    },\n                    {\n                        \"pay_rate\": \"45 - 55 per Hour\",\n                        \"status\": \"Internal Interview\",\n                        \"description\": \"<div>  <div><strong> Requirements for the Business Analyst position:</strong></div>  <ul>  <li>1-3+ years of professional experience as a Business Analyst.</li>  <li>Experience with financial data or big data.</li>  <li>Excellent and proven documentation skills.</li>  <li>Experience with Visio, Jira, or Confluence is preferred.</li>  <li>Insurance or Financial industry experience is a plus.</li>  <li>Strong written and verbal interpersonal communication.</li>  </ul>  </div>\",\n                        \"reply_to\": \"rbush@haleymarketing.com\",\n                        \"date_added\": \"2019-06-26T20:59:35Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/2571\",\n                        \"type\": \"Contract\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 2571,\n                        \"title\": \"Business Analyst\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"166 Main Street\",\n                            \"state\": \"NSW\"\n                        },\n                        \"category\": \"Call Centre & Customer Service\"\n                    },\n                    {\n                        \"pay_rate\": \"1500 - 2900 per Month\",\n                        \"status\": \"Medical check\",\n                        \"description\": \"<div>This is a job for a Law Associate.</div>\",\n                        \"reply_to\": \"rbush@haleymarketing.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/2444\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 2444,\n                        \"title\": \"Law Associate\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Normal\",\n                            \"zip\": \"61072\",\n                            \"address1\": \"5 Main Street\",\n                            \"state\": \"IL\"\n                        },\n                        \"category\": \"Legal\"\n                    },\n                    {\n                        \"pay_rate\": \"55000 - 55000 per Year\",\n                        \"status\": \"Searching\",\n                        \"description\": \"<div>  <div>This position reports to the Executive Director and has specific responsibility for directing all financial activities for the organization. This person will develop and monitor compliance with financial policies, prepare and analyze budgets and financial reports/projections, supervise payroll, IT, AP/AR, participate in grant writing, develop and manage risk management strategies and develop useful financial/operating reports.</div>  <div>The successful candidate must be a take-charge type person with advanced computer literacy in Microsoft Word, Excel and Access. Microsoft SQL Server experience a plus. Must be well organized, fast-paced and able to multi-task. CPA with a few years of public accounting experience is preferred. Previous supervisory experience and experience in a health care setting is preferred.</div>  </div>\",\n                        \"reply_to\": \"rbush@haleymarketing.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/2443\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 2443,\n                        \"title\": \"Finance Director\",\n                        \"address\": {\n                            \"country\": \"AU\",\n                            \"city\": \"Sydney\",\n                            \"zip\": null,\n                            \"address1\": \"193 Main Street\",\n                            \"state\": \"NSW\"\n                        },\n                        \"category\": \"Volunteer / Charity / Community\"\n                    },\n                    {\n                        \"pay_rate\": \"2.55 - 10 per Hour\",\n                        \"status\": \"Searching\",\n                        \"description\": \"<div>This is job for a Microsoft .Net Developer programming on an IIS server.</div>\",\n                        \"reply_to\": \"Obiora_Embry@yahoo.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/2441\",\n                        \"type\": \"Contract\",\n                        \"rep_user\": {\n                            \"email\": \"Obiora_Embry@yahoo.com\",\n                            \"id\": 1280,\n                            \"last_name\": \"Me\",\n                            \"first_name\": \"Test\"\n                        },\n                        \"id\": 2441,\n                        \"title\": \".Net Developer\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Seattle\",\n                            \"zip\": \"99654\",\n                            \"address1\": \"123 Test Street\",\n                            \"state\": \"Washington\"\n                        },\n                        \"category\": \"IT & Telecomms\"\n                    }\n                ]\n            },\n            \"xstatus\": \"5 jobs returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": 0.236345,\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T21:18:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/jobs/2441?embed=self&active=true&access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"3.288244\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"5 jobs returned\"\n}"}],"_postman_id":"496a6ef8-b51c-4282-8661-533dbcdedcd9"},{"name":"Job Get By ID","id":"0b4c3311-c436-4cf2-a98b-2226bd601168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 2444\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - job ID</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 2444\n    }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e4a6ab19-d58d-4c9c-b83b-6779a45e3cb0","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 2444\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:20:33 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"782"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272290"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 1,\n                \"count\": 1,\n                \"jobs\": [\n                    {\n                        \"pay_rate\": \"1500 - 2900 per Month\",\n                        \"status\": \"Medical check\",\n                        \"description\": \"<div>This is a job for a Law Associate.</div>\",\n                        \"reply_to\": \"rbush@haleymarketing.com\",\n                        \"date_added\": \"2019-05-29T21:44:08Z\",\n                        \"url\": \"https://sandboxapi.jobadder.com/v2/jobs/2444\",\n                        \"type\": \"Permanent\",\n                        \"rep_user\": {\n                            \"email\": \"rbush@haleymarketing.com\",\n                            \"id\": 1267,\n                            \"last_name\": \"Bush\",\n                            \"first_name\": \"Richard\"\n                        },\n                        \"id\": 2444,\n                        \"title\": \"Law Associate\",\n                        \"address\": {\n                            \"country\": \"US\",\n                            \"city\": \"Normal\",\n                            \"zip\": \"61072\",\n                            \"address1\": \"5 Main Street\",\n                            \"state\": \"IL\"\n                        },\n                        \"category\": \"Legal\"\n                    }\n                ]\n            },\n            \"xstatus\": \"1 job returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.237728\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T21:20:35\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/jobs/2444?embed=self&active=true&access_token=xxxxxxxxxxxxxxxxxx\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.032017\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"0b4c3311-c436-4cf2-a98b-2226bd601168"},{"name":"Job Search","id":"00c972ed-d0f0-4097-b129-9af4e105b01c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 0,\r\n        \"company_name\": \"\",\r\n        \"offset\": 0,\r\n        \"limit\": 1000\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<ul>\n<li>api_request_query - <b>REQUIRED</b> - hash with key:value pairs signifying the values the call wants to query</li>\n</ul>\n<p><b>Filter Matching:</b></p>\n\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 0,\n        \"company_name\": \"\",\n        \"offset\": 0,\n        \"limit\": 1000\n    }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00c972ed-d0f0-4097-b129-9af4e105b01c"}],"id":"bbf2c723-3f37-47ea-aa51-c238cb2e904e","_postman_id":"bbf2c723-3f37-47ea-aa51-c238cb2e904e","description":""},{"name":"Note","item":[{"name":"Note Set","id":"c5edfbea-0545-4f84-bbf5-a0c6153b7c85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 42606,\r\n      \"comments\": \"This is yet another test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>comments - <b>REQUIRED</b></p>\n</li>\n<li><p>type - <b>OPTIONAL</b> - &lt;= 50 characters (the type of note being set)</p>\n</li>\n<li><p>application - <b>OPTIONAL</b> - comma separated integers</p>\n</li>\n<li><p>reference - <b>OPTIONAL</b> - &lt;= 200 characters; optional reference string to identify a note or a group of notes</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 42606,\n      \"comments\": \"This is yet another test\"\n    }\n  }\n</pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6a5fe47f-bba7-4dec-b7cb-badaffac880e","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 42606,\r\n      \"comments\": \"This is another test\",\r\n      \"type\": \"Cover letters\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 21:24:14 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"858"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199458"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"source\": \"Note\",\n                \"updatedAt\": \"2020-01-08T21:24:17Z\",\n                \"createdBy\": {\n                    \"email\": \"rbush@haleymarketing.com\",\n                    \"firstName\": \"Richard\",\n                    \"userId\": 1267,\n                    \"lastName\": \"Bush\",\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                    }\n                },\n                \"noteId\": \"2e59ce19-cbd5-42da-ae37-2059f1d4a5dd\",\n                \"createdAt\": \"2020-01-08T21:24:17Z\",\n                \"reference\": \"\",\n                \"text\": \"This is another test\",\n                \"type\": \"Cover letters\",\n                \"candidates\": [\n                    {\n                        \"source\": \"Monster\",\n                        \"firstName\": \"Sheba\",\n                        \"candidateId\": 42606,\n                        \"status\": {\n                            \"statusId\": 2403,\n                            \"active\": true,\n                            \"name\": \"Active - Interviewing\"\n                        },\n                        \"mobile\": \"0498765094\",\n                        \"phone\": \"0334545607\",\n                        \"email\": \"Sheba.Sorrells@email.com\",\n                        \"lastName\": \"Sorrells\",\n                        \"address\": {\n                            \"country\": \"Australia\",\n                            \"city\": \"Sydney\",\n                            \"street\": [\n                                \"640 Main Street\"\n                            ],\n                            \"countryCode\": \"AU\",\n                            \"state\": \"New South Wales\"\n                        },\n                        \"links\": {\n                            \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/42606\"\n                        }\n                    }\n                ],\n                \"links\": {\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/notes/2e59ce19-cbd5-42da-ae37-2059f1d4a5dd\"\n                }\n            },\n            \"xstatus\": \"201 Created\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Notes SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.158695\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-08T21:24:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"reference\\\":\\\"\\\",\\\"text\\\":\\\"This is another test\\\",\\\"type\\\":\\\"Cover letters\\\",\\\"application_id\\\":0}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/42606/notes\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.034869\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"},{"id":"b4e418ff-8707-4217-992b-9405c36b91e8","name":"Note Set (default Type)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 42606,\r\n      \"comments\": \"This is yet another test\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2020 21:16:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"854"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"274085"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"source\": \"Note\",\n            \"updatedAt\": \"2020-01-21T21:16:54Z\",\n            \"createdBy\": {\n                \"email\": \"rbush@haleymarketing.com\",\n                \"firstName\": \"Richard\",\n                \"userId\": 1267,\n                \"lastName\": \"Bush\",\n                \"links\": {\n                    \"self\": \"https://sandboxapi.jobadder.com/v2/users/1267\"\n                }\n            },\n            \"noteId\": \"e1266819-fa31-41f9-b38e-3b8b7b5dcc99\",\n            \"createdAt\": \"2020-01-21T21:16:54Z\",\n            \"reference\": \"\",\n            \"text\": \"This is yet another test\",\n            \"type\": \"Comment\",\n            \"candidates\": [\n                {\n                    \"source\": \"Monster\",\n                    \"firstName\": \"Sheba\",\n                    \"candidateId\": 42606,\n                    \"status\": {\n                        \"statusId\": 2403,\n                        \"active\": true,\n                        \"name\": \"Active - Interviewing\"\n                    },\n                    \"mobile\": \"0498765094\",\n                    \"phone\": \"0334545607\",\n                    \"email\": \"Sheba.Sorrells@email.com\",\n                    \"lastName\": \"Sorrells\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"street\": [\n                            \"640 Main Street\"\n                        ],\n                        \"countryCode\": \"AU\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"links\": {\n                        \"self\": \"https://sandboxapi.jobadder.com/v2/candidates/42606\"\n                    }\n                }\n            ],\n            \"links\": {\n                \"self\": \"https://sandboxapi.jobadder.com/v2/notes/e1266819-fa31-41f9-b38e-3b8b7b5dcc99\"\n            }\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Notes SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.941568\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-21T21:16:54\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"jobadder\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"201 Created\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"reference\\\":\\\"\\\",\\\"text\\\":\\\"This is yet another test\\\",\\\"type\\\":\\\"Comment\\\",\\\"application_id\\\":0}\",\n            \"call\": \"https://sandboxapi.jobadder.com/v2/candidates/42606/notes\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"2.000597\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"201 Created\"\n}"}],"_postman_id":"c5edfbea-0545-4f84-bbf5-a0c6153b7c85"}],"id":"ca60e0af-8809-4d18-8e21-e6c614f1b1bd","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"ca60e0af-8809-4d18-8e21-e6c614f1b1bd","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"8983f22a-7b0a-4d25-bd40-0e2ff2e6f8bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For parsing resume data.</p>\n\n<ul>\n<li><p>file_name - <b>REQUIRED</b></p>\n</li>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n\"file_data\": \"UEsDBBQAAAgAAOybm09exjIMJwAAACcAAAAIAAAAbWltZXR5cGVhcHBsaWNhdGlvbi92bmQub2FzaXMub3BlbmRvY3VtZW50LnRleHRQSwMEFAAACAAA7JubTwAAAAAAAAAAAAAAABoAAABDb25maWd1cmF0aW9uczIvcG9wdXBtZW51L1BLAwQUAAAIAADsm5tPAAAAAAAAAAAAAAAAGAAAAENvbmZpZ3VyYXRpb25zMi9tZW51YmFyL1BLAwQUAAAIAADsm5tPAAAAAAAAAAAAAAAAHAAAAENvbmZpZ3VyYXRpb25zMi9wcm9ncmVzc2Jhci9QSwMEFAAACAAA7JubTwAAAAAAAAAAAAAAABgAAABDb25maWd1cmF0aW9uczIvdG9vbGJhci9QSwMEFAAACAAA7JubTwAAAAAAAAAAAAAAABoAAABDb25maWd1cmF0aW9uczIvc3RhdHVzYmFyL1BLAwQUAAAIAADsm5tPAAAAAAAAAAAAAAAAHwAAAENvbmZpZ3VyYXRpb25zMi9pbWFnZXMvQml0bWFwcy9QSwMEFAAACAAA7JubTwAAAAAAAAAAAAAAABgAAABDb25maWd1cmF0aW9uczIvZmxvYXRlci9QSwMEFAAACAAA7JubTwAAAAAAAAAAAAAAABwAAABDb25maWd1cmF0aW9uczIvYWNjZWxlcmF0b3IvUEsDBBQAAAgAAOybm08AAAAAAAAAAAAAAAAaAAAAQ29uZmlndXJhdGlvbnMyL3Rvb2xwYW5lbC9QSwMEFAAICAgA7JubTwAAAAAAAAAAAAAAAAwAAABtYW5pZmVzdC5yZGbNk81ugzAQhO88hWXO2EAvBQVyKMq5ap/ANYZYBS/ymhLevo6TVlGkquqf1OOuRjPfjrSb7WEcyIuyqMFUNGMpJcpIaLXpKzq7Lrml2zra2LYrH5od8WqDpZ8qunduKjlfloUtNwxsz7OiKHia8zxPvCLB1ThxSAzGtI4ICR6NQmn15HwaOc7iCWZXUXTroJB59yA9i906qaCyCmG2Ur2HtiCRgUCNCUzKhHSDHLpOS8UzlvNROcGh7eLHYL3Tg6I8YPArjs/Y3ogMpuVe4L2w7lyD33yVaHruY3p108Xx3yOUYJwy7k/quzt5/+f+Ls//GeKvtHZEbEDOo2f6kOe08h9VR69QSwcItPdo0gUBAACDAwAAUEsDBBQACAgIAOybm08AAAAAAAAAAAAAAAAKAAAAc3R5bGVzLnhtbO1b3Y/buBF/719hOLg+VWvZ+2W72RzQoIcckOSK29xDnw60RNtsKFEgqbWdv77DT1EyZWs/cj2giwBJpPmRMxzODGc48tsf9wUdPWAuCCvvxtOLdDzCZcZyUm7uxr99+SmZj39895e3bL0mGV7mLKsLXMpEyAPFYgSDS7EssER345qXS4YEEcsSFVgsZbZkFS7dkGWDXWo25tlMPHS0FSMYn3O0GzpaYWFdLfaM3Y23UlbLyUSNMAwuGN9MZml6NTHPDr1mQ1ntBU3WLMlYUSFJVrQl856S8qtnu9vtLnaXmuV0sVhMNNUvL/O4quZUo/JsgilWzMRkejGdOKzek6ECanAolMR7OXSwwrY34TIfvgmXeThWPGwGy/yw6dFotkV8sPQaHI7mlTxhBNcTjivGpVcUWg1XswaHvMq6WGE+WFlIoqOdApvdnTTaHScS8wCenYRniGaNOw53RZBp5jdAiEsZM+kvv04ULVEmM2mp8LTrLSYa5OcHGRsD5RsfidasLkFLEL2stHhfYU4UCVE9bNmaoRs7TkoxTScK4/CUPUEEG7KCGUIRNjzPaUxvoILLCfg6GEDyQPDujY9BBFPnbF7eKGPGkkIkpARbYNUyGB0KUCC57QlF88knIOq/Pn1sQiAvhpqIwrZcPeOkGuymBt3aL1b0qGo6AUSCH1RM9FF2K4uoak2UVdT2IXTOIN1ZYFUeHJqz8Tt3Qq4ZnI5rlOEkxxkV794a9/WvR+ZZLfxu/AtwuT8UKwaSQHBzqILQQ4fYTKKil8CgxX0iDHVymsknVG4QnUY4GMq58b+yFZMsMtwQ/jYSqBSJAMNbn5vqI4HYpz1l9ImVsTn/iiom/t7BmZctLRh8ssEl8IXwVrAc87IFqYjMwLTXZI/zc4J9vifFfV3GlGRJ35N7sNx7rcYBetHAAYrhrEBRyR4QJzrCPkI42OhBsgFugGhiR4R4jmjWfnsN+yTzg5C4eBZ3knEm2FqO/o0+YNKrmA5uiGKeLVtjtE8x52H8J30Rz743JYKTM8drVFNbOLiZrUwbjqotycYOa5+TCs4tzCWBQkOtQ0jOvmLIACmDBOrN5dXNNboaj9QJDecapZ5yO1usM/CiNVvuYKqEVVIH6pIl6tkOEVuUs10C0kI4TfZ34/RiOp1PSRmlH47pEtLIBJJ1nIgKZVBYJFvGyTemTl+Dnl6dQj+otWURLByFg+c9wsZmteqmsJwdkdvE5PprREVgSRXiSGu+pXdNUvgE1ZIpJmBeJMfMQBGttsgx0HKsOEZQ3MBmkUy2bIiUOVbHvKofQ5GdJE4QSPzATFgllJH1y+bhSrgjkWuBYa2l2kFzbBrbkLzGLaH6IjDYjqYL8g3o01kl9TsKkaVGG3iFS/0ig+RPcrCO3+69GrCElCv5CkeCXl2UZwL5Dyrj/qh4Ovo0vbiuvB4de0f9tnUUK4cjvP98zFGVThTvo+FRs/QAs9wOS0/dki5TT/r587jZtJbLD4kDfpfHJ20StM44mF0p7sYz4+UE9tk/bQ/VFpd6NxOKcjiaEy2oDgCUFMSvbaBdV3WZydpMqAIIqACUAnt73vCdLSc5gQhQKibpxdVidt24parWlOOqJELpYBP45Ktt/6lsO7Qu7MJW1+Q4LhApdZ7u7O7YLqtabDuQZziOKZWD+ElxaDXmEmLFuHIFZWZwOIDNUFQJZcTPZZxwtuswhzcdj/2KcZVItsFyq64/lNOdYxwyNKZ8Dy6UI56PewOH2zyKBMQD5T6NMx3P9wGjPHDj3unghb/0TOKilMpTQ8AXePH7LP19xfJDTKxzIa5AHEIMqKzSJ/nNjQ4ZDQFqL6nq4fQinV9qmrlcyMDk4d8a0e756rdB5wClzgEQ3aGDOBdweqKJLgdcMPn+1UA3bl1Vsjf0HCfnR5wt8mlJuhvdlyo7eiN8XwyMruJUOLOCDIA4WT20V1qP6Je3CaBK4sZ1z7hszA3gLKwoOgSOMgrJz3HDJ3tYr3MtbmdDnUunAVtMNlvwrOn0+ofhavoI6cFT1n8iylA15QC/blnjbIA1ToeY4+CVv0e6OnvBzYelcvTI+Opi6LPiq26LmAt+XeCINkWbh7v/T/tjbk96Zt6pEZCoQikIBfPgbTRas9TI4Cdv87A8K5DB060Ug+3kZygc9y9oJUTPd9JKXmg//zy+9sHfI6iY8RHkj4fkBjcKQX9UfqSv5l8kek8XN8Nc1/CyKbLeWKgpIUvyU5FyBJEgnd7Y/6Rzy7OCClPP5IRwk+C1rjhLHL7l5nDovtar6L4MlgFH7ihnNRzMozfzVP15bLSxK/wP0/pR8x9dAJ2OQzdddw5MOUrzVnrzqHxBZR/KLt6rzdLtnGjSoGCjLuaPOTweHRYeufJOVRJb+DMKl14FP+r0NDcnlGxg9zNc6naztbBaSLI+JKq0BKY7sLXvdUDubKq1YjRv2Z8hOOvsI3sD1YDB+/QTh3+UArOTFqphoy7mxSz0RFX7L45V5xVJiXMlp4q0cRlD5CiEvYCYLxbEh8TvJ9WvpgV5tn59oQ5kN61LT1SvQTvyiOGJu7V4idonmKNb8fqylKic3nWOO7r92crTNNuM712IR/QspclJ08ccRf+oKcU6RzFt+B5HN7BRB+NvyMJK9Kx1hj3/rmEO/h6gz6p6Jmjb1WkuDtXPy+v6NLdzMMfP48KvHYZt373krNyo7ftnUW3V5ybx/TO4URc0aAP/tyfRs0TW1HglqYN7f7Fo6M8o5CBbKI1jmU8dY7viUKMQMnSBrhGcqjw97TQ3vu337e6GybuDyWooDbnpUBolCUZJ3gPRdYK90I4jrDRNq6a347H3BW6n5RGKeNy0iIzzND3ycblNV9sD2vM6fUNltmVQyxwqmAkJ7cNj3bk/2GPcjDcttHBJrmedwFkAcZ7kOT2mcdW2UAo9Xo5mz2rZ7FlrVb8YyrgDpPgBUws3+ad6AaeEr1nrIjH50d3Yr15dq9mhXQWEJCaIbvRAbqSTFWz7exStgKwzZ/WtW2zaDsTOrV+uGaVsh/NkdTAXfBKtAnVEZQNq37IHKmT2qpC2Qi5fFdJWyNWrQtoKuX5VSFshN68KaSvk9lUhbYXMXxXSVsjiVSGdxCz9P9JImxSqqWQSQ3bNyjXZ1PYqxRMSe/22Zkyq55jGpva+1XyT+oBojXWLQL90A4XXlP0oLRxjLmnVV2tqPvfDDbXe4RLiMu8TkMQFdNMrjTQSxNj0XjGbr3nD1lC/euwsjRpUS8fSSJlx/RM8ddQHH0Pr2ZpvoFVVCHNCseQIhp1SKFjTAba3Val8qorpOALq1LeaYgvP+cW170Rtws8PehdnZwflyYRxon4tZLeZcckRkePj/vjt/Paqr8l2TDO9rxjF9r8akisJw28gKRSRq6bc1QrYcJL7D7yzVP2JIeyWz6LEFRKNgtKL2e28kSDE8Xp1CHDTy0UcZ6Rt1+adWSA0qB/rtbqMIUjvwgm6vRTpIJyPJgXaN4KCkM2vAixA4Mqp2JiL6l3eBrbhvksFScFE9AANulzMIyC0Vl9/RjG99yUoVy0h4yvGg8x7qOedDc+uf2guMJqrmzTsnsW9wS14i5FqmeqHSaiF4OXxRI3fHjuqJRRI+Dk8N/tSzdS5cmy3QkKZAwcP4kVn+kn8d9bv/gtQSwcISQGy+rcKAACnPQAAUEsDBBQACAgIAOybm08AAAAAAAAAAAAAAAAIAAAAbWV0YS54bWyNU8uSmzAQvOcrKDZX0AOMQYXZW05JJVVxao9bsjTG2mCJEvLi/H1kXvY6PgQ4QE/39DxE+Xw+NsE72E4ZvQlJjMMAtDBS6XoT/tp+ifLwufpUmv1eCWDSiNMRtIuO4Hjgpbpjl9dNeLKaGd6pjml+hI45wUwLehawK5cNJuP3mPZ/1VMRN/raStlswoNzLUOo7/u4T2Jja0QxTlCNJHc8elfQPy2Oxiz8i8WYc9akaPye2edG6d+P8pOiKNAQnalSLLz2ZJuBJQWCBi4ddIjEBIXB1MLNwGlYzdO9TKcqhxkJC9x5RuQ7gIpiUkTYP9kWFwxTRldxRlM8XCV6oCilYFcpoRFdb0nKEsIojnGazdKZNrqCVM4vPpInO+SqfmxX31b452TxT/ijSvwRDXQVvWNP8MitQYMXG1t9VTsL34fGURYn/qafX5Rfed+9nvMsuIm/tta8gXCIZ6lfktzjhKTJbl3kfC8JiHXKCeW7FU5WRb7OQU4VXM1G8+X0ds7X3zklggF3fNdAJMxJu01IwxFUR14vIJ5As7vUcY+2N0y6YJbXlreHOZBkU6Q3Vi4gmVFx8ALhwC6JaE6mmPZb7Q/KQddy4Z3uqf4wkhBVJfpwjtCjf7b6C1BLBwicpS9J2QEAAPEDAABQSwMEFAAICAgA7JubTwAAAAAAAAAAAAAAAAwAAABzZXR0aW5ncy54bWy9Wtty4jgQfd+vSPGeAXLbCZVkypBhhgkJFJBJ7bwJuwFtZLVLkgP8/bZkw2a5JBlj7VMqWG6pb6dPt3z1ZRGLoxdQmqO8rtQ/1SpHIEOMuJxeVx5H7ePPlS83f1zhZMJDaEQYpjFIc6zBGFqij+h1qRvZ4+tKqmQDmea6IVkMumHCBiYgV681Xq9uuM3yXxCvKzNjkka1al/IVnxCNa2e1Gpn1ez/1eqF4PJ5vX4+n3+an7q19cvLy6p7uloaopzw6UcPlq3ODpYf8pVpTio3Kzus1L+5yl/J/hxzA7G1zVH+s93sukLaNV44zNdWq+x677/v/KT1gQI2wqSyemKWCT0RKKeVm9pVdVvEx8V2YWJ8yH3ikZntFHxy9mf97DDh34FPZ7uPXT85v7gsJn04w/kAIooaaM2YnILe2GGMKIDJyo1RKRTboyObCuca7jGCfdInTOgPiz+OWXLMZQQLiLaNtTvA3DsU7Gr5MZN3oo2jaqO4NbaN5ZPirtwbe/Xz0/N6cbn7UuXi4vy8qFTNxwLKTxYntvTUdlIHe3PEZmBhtznZTTQG470J+LmY8F+I8YhEbUbbDJU5CJC6bImpaaFIY7mZ1GVJbyI+l5bV23Zps9Cg2n32eq3g6Tt6CAJCA1Fb0Q8ejh7IkM4I0QgWpkcldCKQ0n7KwmWBzXb8+BrK9j3O0XH3AqrEH6/d2Q+pYoaYwO8U8b5CQ3Zuo9pMmjKM3Cc0NqAetl2YA3X1fRlf4zFEEUS3zLAx03CQsFaqFDllJcv+HWKqwuISu0TlHpOImV2Vc5UGBUM0ivpMsREjXBsmLKQTBWZomNoEzxLKf1sgM8bu9IAxU1O+BUdlxMOjHBNJenbbpORX5aK0/H3aHEQUpAYzz5RvLnLNT1CGh0w4gOpNJpR0PlRx4d+lvJbDUPGEMlXu36e4Qk0WPk8VptKFnAXEW8XmntyzI7DL14iYsjI+Y2ADS1oYx0zuIaQfAJJA8KkkkwwNJn3U3CJ5+YfOEXkIJt2kdlaJi7Mml0wtP3LgXFSfJaDaCuOdMkuIlo6+AyUDzZnspzI0KXvLNAdsZCOGyAwocmWiQNuuunTWFySJWD5qyi+Km/L9e4sPaH6k2vDJkkoT6CduZvdMpkw0LfR6MNuQvcBoRnAuGRfla2TFfxM4ZuI2H4XYkusDloYxE6LFEt0HYgTSsClcXPiIs53AsSPSKL8Kx5k1289sMtSTLYHaB4nOoNUm/wjiRHiBWRfR5BWTKrA1qTf+W/dkn5zjQyENlgqDol2IFq9w+I0CdSg7HpJsAT9w7I08DJeaHrzJGw6n+B1qZey00qan6zr3DGZm1PsfE7ZSx2sNW7QidNkY1njgh6F45nW0w9cFGU4y0QUWeaFAFM09Ea2ZtgcteqmxU8kuvID4y5Ju7XM3BwUDII9Y+hgYozRlK+1og9sH85hKVNDmStuaAx0X3h3pU8VACJy7nCJIaDEZgoeSukY5q9U7BPxwmp9vMELH91sghIf+Za2Snec8KZYkfnTKx/D52IQQ7A62Bka/yaNbKDWP/j15T1Lxocrjqx74qgTOvQOc3wH4aANIvB4AcQxOdBOzXPRwDeJS3u4VyKgpGDFNiiubJy0mwlT46j0GFAIDxE2NHAM8Pa2dnxWcIXWRRQOqLyhFkcHmu7EreBLodeO0Gqo+KVqq2mLpiqifSdKC/BLCL1BIdfSdEnoYI6QamrOceyAaE3pKnsDYW5wssEk3C51TgoOZ7sgu1z7qmw26XQF3Vjutfz49AGJ60vW43qDmXj+himybPlLUdJLns1T1sRUzsyYhukV9N6J5i3Eecv36Aso0SStQ/ipyC4Wg/ha+xolZ2kpsg6x8ZSiYV1cqHuYBZilAP+AtTFgqfKSFBbUEoj4Pbc/prQ67iZbXoa5z8+3YTcO/E8XQftzttLHJKGDhVZ88ru7d/YQPEFbA8oY8u5J1I7NA22GDt+lZqtzYfcX+3BDKBxm3c8d1TSETPlu+zMwIfbYzxJOTV03GcKbs7G7dUXlAh3RsLBch7qFXbCRw//noR7m2nLc3mdgI+R+GRYGUaBwF3X/ZWHBe6OR/s7HxBsE58N6BinT47HUQRfGmE2rMfMm3DM362peFWmQchT4a5Mw8FsjWN32eNrFI1idPwwwFsRlfrnjvfvJALaheEhG3uvhSwPXL3jydJ8Jg1PV1/gHYL09hbxgdLN9+JuYz2dpscdDHJHlKeb7+dLs4JvemLX7z6yT3dVF161vh6r6vqG/+AVBLBwiyP7VLpAYAAIctAABQSwMEFAAICAgA7JubTwAAAAAAAAAAAAAAAAsAAABjb250ZW50LnhtbO1d63LjNpb+v0+B8kymMlWiJFKSbSlpz9jdTsYVO+20nEyyf1IQCUmYJgkOQFpW/8pD7M/dqtQ+Sh4lTzLngBdRd+piyt1RKuUWgQPg3HDOBxAkv/zbk+eSRyYVF/6rE7NaPyHMt4XD/cGrk+8fvjLOT/528V9fin6f26zjCDvymB8atvBD+JdAa191PBbSVyeR9DuCKq46PvWY6oR2RwTMT9t0JrQdPU58HfdctHXCR669I+moaGukBcGmhhfi1ckwDINOrYYt4gGqQg5qVr3erMXXKXVfFB3qSblGX4CevICGvOdO8fzkcv99NuxoNKqOGnpIs91u13RtJp6d0QWRdDWVY9eYy3AwVTOrZi2lVeHYLaxJTZxnKmRPYdHGSDtthIZT3AgNJ99WPQ4K8/w4WKJRe0hlYe41cb61DMIVTtCqSRYIGWaKor3iatbE+bH8yOsxWVhZNKRzlgKfHa102pHkIZM5cnsluU1dezIdi09F4MnKDKBUI1zk0g/valhnoMvUplS4euq1a5oo6x94nDioHGShqC8iH7QE4Svhlj0FTHKsoq5u1pnqYTZ2rOTCrNeQJqV3xRYsJCEr10OehYF0HHeR3kAFjRrMdXAA45Gz0Z+yGMSZm062jN+FAwtheMrgEKmlCDq51nkGPBoOl4Si89odVOo/d7eTECi9oi6CtFNT3ZY8KDxNY+opewlviarMGlAY7BFjYhZlcXi1pIFVi6szYuUs7frHu9uuPWQenRDz9cSgeBVSP588pPdUzHAojHD6s7abUefTMPQW+k6cRrB2Osuum3FpsktYy8EC6+QixQCxWVQtK+gDFjD61GaGw2xXXXwZB6ysmMTXKOirk7cwbHfs9QSwBuE8pfK4O56pnHSC8Vox8JsnQ8W1tdWD3FF/QF1zwQhxzbr270RPhGJB87iiQhT1laHAYv11Xd1yiPY6NpA74S/q8y80EOqLGbq4cEoLMb0xYD6MCwHdEw6T/hRJwEMbJnOfPzFnHWPfdrnXjfxFSkqqnnP0nLhdrcYCetGEBRQjhUcXcvZIJdc5ZQPmwNCFeAO6AqypEVdqF9YS/13q2CsHH6uQeTuNzm0plOiH5Cf6D8aXKmaGrohiduZt4rTbuHOx8WvLIl5STqMQfC/ktqH7yUKh/jvF7QN2aWbjJZzGiCdtpa+MAOI/kyFnKiEecQcz9mm1bbU4SBUjTOryAURql/UBp/ZFp0ft9wOJwAQQsysAcP6pr//Lus9RcI8OGMq3eOCsQv9dJ1T1cqFYyEbk+TPSxYXzQibliayNass8a4KwtQ1ZuXoGVpr1s9MtWLlcbG3DZq47ywkUzfPxiFcAYo3E1B4H5Mi0sQPqxAv2OjoEWl9IBxcZvvDZhpxan6JTWs/glNZ2nmA9g1M2t5sf1sfglPdzLAZU0oGkwTCtgALck9IXRiIfLLN+tuo/94QzzgTJGublAMY8KgfcN9BNJ9wmhZIPhvOloQjmygAZhrg+qVfNerOBdfFiT2+VPYURKEkF1NYq6VNXsZR9l/vMGDIcyKAhsAErfuwmnkkwADZPFWwzXy/t46b/ilTI+2NDQa8g+wg0nHUODYUMhgBMwFf1JXiLGGVXulfuO9BhIkvcJyYxY6py0uG+bDoXZP6YNt239pP5iq2ntaEBi0Yy2KMP60jEiikboQQnidf1G9qxsZUdMZ6gIV/Hm8jqaMwdplLzaIKdYuQhbdc62u7l2W5PQTS/lFy255F2qvgHqDetIMyVYfOpYXTxiMUGS8qL+9rpNr72DyH5B4Gbkuhwt2DIk2UKWi9ucV7PtuH1XjJUPw1D5iC3CBd24HbWOCYaJ9tGzc01qTg4Zb1eP7VOWX/K7tjUoAocJu1gthLvZrnsKakurqHzbTTUDanvUOks1UoB8Yqz2H4WFvfpZmb9QCzO+tb5tG/NetQuXne+kVuZuy+2sqCvpoluzWfLU9V6y9o5Vx0YCpi7L4mWat46an6V5rdbxBTSfOPFa778LYLD4yuXAUaQE23MYqx9Qy9zuzVaIQ9rHj3s6GH35nYryU9pQ+3oZiW42VaLyKObfURutsSlNvCRrRbve15C7DeD7Q1pbrVq3zPGf6Gq2Wq3YM8QqUTc88Jm/QtILg/zt6I32sBLz+yVuKf6MH9WYhXLezDeIYScWx4fWMiy/XJu8bZn+aEiPQxT1/8dRMq5BcRHJOXyrdPi8s8h249bftM5a1qnG8g/h9pKkX/uBsv+dJILK892G+ZhDtB97FpbfhOiFH3OocBPT5/JzCxHn/N3uJ5foZsjzo9x5s/fKfsDaPbA0WH+HtkfUuflRpDnhv8fh87L9fMDLDmK6fzl4PX5Ox7Pq6P+3pwux2DkO0zqLeeERgmXO0tIkrP+uJe8hCLhVw+qf79cDy95udXvlxhVjgYGA5e8njwauGwDl7z0LW7gT8qYGxikhLXzS9iOtUpY0pZ3A+G5V5Gbx8SD2bX0mykHPY//YG22sNpDhLC2W1bkc2UpqcXaDtovPqd/kORobQZv97B9b22Gt7aESuUobzNksaUoB95WsTbL1nsTssxp0Jdz2U0fvuD2iiMdX0n4J9NDQv+8Z8Qm57RGMNyrE91FWhS/rs3AmoA5RnaCRGHIN1zu8Yw0exY+EFALQ85VSObmDrakL1FMyYbZw1ZxD/FrE+bqpjspdppk2mDoXblzMlNG02esJgQue2RuYqBe5AIoIHElloNDnMSXeQteaTI8lhO/yknlVGmoCFwSPKmaNIz71G94enXy+y//n1k+N3rO+PFgAb55pYdPe8FwRr1qtk/jl05grYeeQXvQLkHoWT3qYZVkG8htHV7uevXsvNUsV+zG4cU2q9bZacliN1+C2GenZ41yxW4dXmyrarXOSxb79CWIfdZsW+WKfXZ4sRtVq1kvWezzlyD2WcMsOYG1Dy92s2pZVsmRHM9DHF7uM7OxH7lz1UWgnXWEdkdod4R2R2h3hHZHaHeEdkdod4R2nwq0a7xgaHcEZ0dwdgRnR3B2BGdHcHYEZwcX+wjOygZnzSM4O4KzIzg7grMjODuCsyM4O4KzIzgrFZzVln6eK6nA90dlF9g85iJSzMCvmBkBHUD/ktH3eLBPRiwFdIr9O2L+5Dtg84VxTw5XgUvHhohC/WhIovlU8bHKb1w3UmF8qhPl3Kmzh/SbZbv1Aj937uRN/NXlnfv5ig8iySYesFD5wbwr43u+L0Km0KoqNJPWwYoGZ5l9A+rP1z8AoDfr5J6CQ5N3gjopQ0B98QVZ1/SOu24oRn6+VWV1K6sBzS7zDVbTn55cnNVbzUa+RQG5z9fIbZonF/dD4bMOOT8/P22fWu16/QtybXiUux0yNZr+SYn+mHUnHAf4OBXHc8QnSdlQsv6rE2wZis7bHheS/nzt9eT472M6FKJqC29BXLrBz0P4cWSKv5OtSR654iFzpo4S/xCXIWW+1S22SuXMnImukRw0GqqhYB59z6Rptcy2Yf59SF029qh8z0JwcOR4Q4W3s0mxqBbG/BI/P9zp46Foon/mCfQBa12aOzudrh+pbw+FNGLN51+m9zhIv9bWqDZMC79gFnfyQb+d8gmnXTIudmT0xJM+NQ0heZg87FKv1s1Tk/v5dS1+aLaDh8zxwrRMs9402/VFuHHmiDHYyFs1eYH6Gs0XSK4YuUEX0t/JxTCpJjquLeyx0Agw3b+5vyFvqBr2BJWOIn+hXvAF6dqQm2ws2Ncwb2hIyR33wVuSMS596o4hJa0aYlIAv6cMk15rB9nCWazdncXc2VmaZvP8tNlqNxfhkJlDS+t0DNTvuHpP7qgPORv9ZC+mg8B4dVMh1+/uE7Nd8QHRxrx3aag/JL2vcbqX97XuZZd0hRutc/HCjrE+EpmrQ383lMIfYPi89oIhfrp7TaqwcNrqj1pjil4QFnNZYkUXqe78BH/VLi6vXpOry2+/+e3Xoh1twPHnX7uiR13S5z5MCQ6/FJOPgAoVEXJAff5Bh52/bi3Pb7/+/sv/gG09hgigQr6+JL/9mv/fqtfPSSjIvWRq4r2z+UR/XVP/Tb60mQN9mAB02dTgcc1U0+Tjkkupq5c6O23Q4Gq2gRSjmR6Y664Y0Jx8e5y6EUsCEoBixI8rvLexb++FOHIVKXA7peIQDTHr5obUyHxpZTtnsNAZrLrZWG/tMqXWQS2RbUfJTJQMJVwsVm3WLz5aT3ktmcNDohPPflRXT1RnvgCP+C6iLg/H5FKpSEJUZOTz7y7/Sq79AUwEJneTNA52KHFhJ6nNBZh8yaoU14KURGEZ4EBUf2QSonsghSd0liVOxJAV9sQAYVI5JiMh3xNIYPqjYiB2lbyOJD6v6I6JgOaKMQJILuSQEh4hQThM8QF2Dr1Q51FrCp/w434kIkVg7SOhGUKSCsEnKmHNgA1j2hDQCqG+gxz1eRzZByBcOKySW0Yd0kvjDhDY+C8SI4t9V4yIR4MAHL9GtfdxRZB6QByczDYNQlg36waecJiLNSGzh75wxYAzVSGQjYbCifsMhXBVNfbjDywbtwJdwmpXU2BbfJ6RSFiBc6llwgczJTIXCAU6AARTISPWM3oUL7FZ/Il1olJcU53x5/lFROu81T4/s6xFu7AzJ57WASugfq2fYoUFIVjNcFgQDkmsLhbznkpqiCDkXpLpUaJ/MTsE+SULhAy18lBFFYLfqjbiIIRkAJm9WIUBHaNKjMRU2ATsA0q9YxTnEBpXRCE4AVOdgvBusYrapmk2zk5bi27GzNx2XKeh5jaLzcbu6wdr0/XDIu6hE8RVq5fwJxftqvUZ2PGR+VE6vcjnEHxOFwG6VXG24HjfBxgMmq3PwOUIQ09BNDwmA8ozXD8b8Pa6vmvubp9Gifb5c+us9Q0GLI4POjNYPviw5IfsGtk4GZ/HSH82q+YdcWkPFGQLmGCKPsKULcU+rd3t0yxz/px9RqhtiwiCm2T47DqGSElDtkRbuw5o1nHq2LDyU5hswRX6TELi3sI495B9uQPRHzK8HcUpe8TTJIA7MDp2O8zmCqQyVBRgvI+DPSY/yGKKhENIiQicdMqQLL8qxLTu61dGxakDu5PMFXZ8qbf2GSbc6oqYXzxgt08u7qkMfQbzI5bEwV1zvMuiNAaJ73YwAAd+FGMdzEaY72MPJ5DmUljgMwA8Qw6JCRSA6sZ6ULWQkLZifBsrgEI/3EN85EiuewFFQALssSE4JFS3pi0Wv2wBFYc64wphw5hRuTcdvBaunrs0TNWgQvqeDYXrAF6BIB8FwLUthYqtl7eYBny+QnSU4asM4SA6GhP9WWLM5lVYpCXgJoMwAJz0zi8orc81rgzAfSDMx5uTui/AyM4eLR7jURjq3wkspyksr6QIi/vgZnLigzFws22APBqU4l0QbThqc+iC6gvweHSHCv7oRc6AhbotNHMpx/F+/+V/B/jCi0f2+y//B2svwiabsnx6U1bPjUjnPtOq1Ot1Moi3VZCTlbqYQzyLt8VXbZo/y0YWJCC6JAMVjXhFuZ6+31hbzxxuiH3/7c0P1++6Nw8/kbn9Jbf4TtlWyrm7uqzMDPFMw21isYQUQ9BXejNv+R7kbvuRP/703+T129vb66+vy9f9VRcFnGx2kxs//ga2fjGQDgeLUmVRn8W7XpkEZe8eP0yCcDfyMOUUkGTVxqi1dGPU2mhj1Np0Y9TacWPU2n67q/kMG0LX7+4r5OomuRPy7s1dlzwgSOqst88Oe347KKGFd1W6FdK9vCeX3etatof7tpes7d9KaruQ/ECU7ne3+EqtRybhcgxXFfLmyqqQm6s78loMfKFWijO/O/WpmF3vDL8BBIebX+OXb/LvXP7+B85GFaI7oxH8uLl6/ZZ0AxH2uWR/UDsmaeElm+6fsJQQI5iXgGt+rJBb7kdPMBupTd52CRRcBoA3CX8Lc/rSd6Tgzoa2LLhjvPp4xjPX1nLn0SZX8VG19MoRdqS3GpNXyV38B1BLBwixiVStdhEAANCfAABQSwMEFAAACAAA7JubT9jd8f1yKAAAcigAABgAAABUaHVtYm5haWxzL3RodW1ibmFpbC5wbmeJUE5HDQoaCgAAAA1JSERSAAAAxgAAAQAIAwAAAN+D+XIAAAMAUExURQ8pLzRWV0FPNltbWWFcWGdlYmx5bHh2eX17gWx+/3l7/36CfG6DhmyAnXmBjHmPoXmC/4h4eZ1ubKlwZ41qgopziJNuiJ5/jpZ0mpV/srF1gLN/lYN8/4mAbYuJeJWGfJiQeKmWfoaJiYeHloiXjYmYmZeJiZWMl5mWiJmWmYuJqYeeoIuUo42Uq4qdo46dqoabsJeLpJiYppeatougmZGgj5ekmpuzm4yjqI2js5ilqZSmspShu5Krspuhsp2ivJuqs5qqv5Wwopuzt6SIiKSMk6Wbi6OUlaSTm6OelKGcnKqUk6mVnKyalKybm7OFjLKOkriYjLWamaOOoq+Pt6WbpaSVs7iborOVtaWii6SilKKjm6Wpm6ykk6ujm6yrlaypnae3mrSombmymqinqKeptaq0qai1t7aop7Wstbe1qbi3uIiG/4qQ/5OK/5aU/5evwJy3wp6g/6Gb/qmrxqq1xKy31LOrwra3xrW51Kqr/623/7qn/7q5/6vBq6fBurXCrrnFuarDxq3L1rrDx7rF1LnQzLnR1a7N/7zK47XK/7fW5LrV/8GfrsKonsO6nNG/ncWrqcOttMW3q8e3t9KvptCvqdO1q9a6tuK9s8OrxsW7xcq51tG7ydW80smv/8q2/9K6/8jEq8fFucnSt9PHqtPCttPEu9PMs9LKvNzAtNrFvNjNs9nLutbRuefFuubYuevivcfHx8fL08vRycvT1tPKx9LM0tPRxdPSy9TYztrRxNrTzNvaxNvZzdPT09LU29Xa1NTb3NrU0trV2tva097e3sXM4sjG/8vX5c7W/NTK4dTJ/9fb49fW/9vh287i7czk8dvj5tno9N3w+ObLw+LF0eXYyeHV0+DW2+Lb1OLc2+jR1+zc1Ond2vHe0uvO/+Lc4uXZ/+vhyebj2vHjx/Pn2fjw3efo5+fr9O3w7OXw9OTy+ezx8+z0+u74/fDm4/Ls5PLt6/nu4vjv7PHu9fby6/Pz8/L1+vb49vT5/Pn18/n1+/z69P7+/gAAAAKJ4+kAACUtSURBVHja7Z0NeBPXuefvfn/c3bvt7t6n+9Hd7m0biNonycZJc7lubXhKmwSn5SawCtvSfNQ+g0bzpsm2laJRb4sRGdvL5UJq+8RxoribMLhYhNL0zGiMLmokJEuGmwx2xk1NrSV7XSZkNMFGUoykSMx5dsRXgfIdKKGVDGON5swZ/WbO+77/98yZ4z+ivxevP6pj1DHqGHWMOkYdo45Rx6hj1DHqGHWMOkYd4wbGKKarJVoqRSiN0CPUKkXLU3fegBhDi+55OO0IfbJC/xgj5mFxnmY13IAYB4Q/5SZQI6J0ZTcjTH3yzvINiZF3gZBnBVSh3C6kYQ72RB3ZuolfL4xcTq3CifNfPP5mmtLUzNTM9MipQtFKctagBWyoEaOUlz58GNXNgmx53AKWlM2kuJZXJDL8oFmZ5B+N/uh5PCxgM8KN01f5Ryg3Sw1BJsa2CXflQ4dhYYKtW/T5z4uIS8zdyQu9Dub5EtU57pfP/88BPkCQQV6grwKns16aIDjPfa0LH/7wxY1EMWupR0e+YpiGWTLsZdpQ44f1im6kY3nDOFqtZmIT+vu6Yaq0XM2mj1gF9cPXqEpm6dTbUqFs0mypXCrZv2i2WqYV40T7OV7o6KndysfXZ8vlo3T2+Nujpz6mZ7z7nWDsa563RzFEjZi0x8e6l/sECCKVl30AmBgHFxhUIZocfd6gdPfeF/+qvDu7d/fuQ3+3O/v63r0/OPL9vXt37/2rvfQH5Re/t/t7s7tf/LX9we7dvz60e3fW/r1779699MUJ+6OJa4yhexYODHiSC7tn6Q+//V8n/unqf8D3/cOndnXgpu1Pbabv/dFhuv2FzoEfPW8XfenvXn/xpe99f+/uF//3S6//+sXv//Xr9G8e/xd/v3f36/T1X//d3+x9fe//eenFF1/f/eLfHHrpuy8e+v73X9r7Vy/99d/v/f739r7019caIx6TFE35kX01knEyHcyTmBZJg0kK4X3q6EHQaEQhwR/BNH3hu9967LHvfOS7Tzz+8ccee+Jb33r8e4898ZEnnnjiOx/5wQ8ee+Kxf2mvfvzjT3znie8+9ti3Hv/W448/9t2PP/b4xz/ynce+Uyt7g4S/7IlmUz7TKGZnfz+i+NG6GKlj1DGuJ4YOxm/Ebm2hvFtbJs/QXblLrH8Ksjman6BFiZIP/GWNdNr+l744xrxDNoZXR4odsUUkA4Y00D4dgQg9BXvB69AaR3jsXoLlhzW4sK6102A65eUx2dmZthy5O8QQY0LMlQlyEN7JMj8evWZXI3Asih/EwobmTfrfbgxjdnmg0qf3+tYoKxTEYd4Ng/6+xi7c58eDfueFQwC2MfY1dGGl99PvWvh/MWg1I90Kje7AEOYbnmb6s9e0Ue2HcEBNBXf8/CZdJsSQqLxLhEe8SjYYwUKOkD0RospESYt7hIvXryfkoLwrEi/G80CEoAYBNC0RLCVteab9TkzcMk5bKZSu0gFLRt1T1THqGNcVY4oEWZClPGJqbstQTujsyGE7ENohTDwjjF0spkWZcG+WKq4YEqJI2weUsquyGdt/IKZMi3YBFrBt9/LVxfjHdvh7Z/6efgDJ8k66bkU7HMsQuOWGNljkkujdjEBbBDdhOf5mN0SaWl2Nrvh56/5HdliZbAjgsg1T/JR30i303QaUeTiN71tHmffQTV8lTZR92B1d9KU7CeLanI0Kf3Uwaudn0ue4Lz4pzN3BLWwSH125HHzQvGAVuARkOT+5zoogRhEeCjcEiaupDVyy67x1F2pCxos2hmcVb/LzDVu9lGlsog1bXOxHE9YtYvOtLNNE79NYZjH7TX7DNweX3qE1XsWekZmqMVM6UjWyVt4oGaZRNapmvpybmaHmjEnzpULJqJYK5XzJNMqGeeGAUjRmTbVcNLJmcSZL50x7f+No3hWmOZMaZm21XCgaJdMyC6WcYVdfN/E6Rh2jjnExjFpSt/M2Jm/ImfLcp6xPYd0gU6ap0V637XVcxbSV7ta1HbiUNi4ueWtadhImJqUQEqZWxSdH31mVeGeVqufcOVMczhRilfQ1wvgntexvlBWaNnBPWZzg6RY9fZs8G1z0nkYvVRyTTPwmFkvdbNBAF88WapUVHXtw46SDmMs7oNFydlSdPA99G5/c0OfFbf6G8rVrVDub28HFoc6CILQs5Rj7H7Rb6K61FhFXNgiNLWMdP14qEDF8SfXrQMIPg7+QBy7+cAo63gPiBnapvxW5ceuTj87+Lm1DPkPypMp1E69j1DHqGHTqpC+zyjcyhk87KIxBipB+FSuCHlaMGxLD3Wmhd+R/D2v+Xw/ieH6uYfiGxMAwQuSVRBCTMh/yRmI4e8OaeF694U38w+KpYhYAVYSSCLMHs0XhLVAJLZmQiFJq/5tL03jmRMm3KlQ58bZ6liEXjqXX+2qLE4n2jt9SY8XaTerTZLYwJuvh1PG+I1EofzCMKrzb/PWpjqOUaR3XeQuRLcyvKXCVUj8WlvmiMp77Iu7lI+ShcdhouDCV45gDwHERg6BWQQR315YAUoZRrv0+TARO2HncOG5WRYFjJQUjdimRxWZKES1Z+LRRC9u+EPRhcNGvBoE+q3xaASHpftqzceKKMKY4gdki8NWST3cJLe9rSzFpoIANB+ZxD0ZrMQ3g7Txau4n3PycswDTK3jSYRQcHeAwK0Ue75U9IjS4ctL/E53EP3y/yv9QIFoIV80Eei5h3xPr8GKGfebIVbsahQ/upA8/pYB8Ceg7by0qfILqFLah5k7e/fEUYkVJQlOhUsGx/KVVR1WpK1bN/OyPHozE1qkXkUStColJEJlpUjpPg4ZShxLRSIZGJk7hBFT3hCkRlEpaFHEmRTDwivXr85lRIs6sj0ltqWsmWjuhk1wQV1Wgp+Bu/ALlEMWGMUl2P00g2UiDDJkmSfPb6mLhV11R1jN8vDJ3UbKlwav2Yuz8RIWTFzp5TpOYz5ipnFNBPFKjQQpjGqJlRrzdGB6vsId2ykA9GEoSa6KCrEMCinCYsZXGlMDOwi1dGd3RHXHPBXXGgRVTksriPyAkJ0W473gwxEaGrBJSNkOuJccuqPj/L/sTjBiBMWWlJwWgDG+1ICph291UMSlzQx8PGkCeICHEejrWMb/KjRp3JQE8Ng+4MGqSrxFYwP1C5fhhTIOEOEQf4jCRHhKqcBAgDaMNpWaEAMyWqQFzmZRwATYhFoCLr0BsGNC7liF3AVRusASlvVKBR5eTVILVOLUsrUIuodmMcO6upzhErQc25480wY0enYsW8RiauV668AFvKQyQuujCiDLycIIEkzbkOuIp2NJdTspuWX/nvWHsKcIWNCLS0GoTQG4s/hJ7K1kxDTvxkJ+6nDY5JifkmocQx6Ykv6N2yRyHYbob8wExncOAwDg6U56LB5/Xxzg9uG27tKmPkQBKiqq0Y5aMuJUgIEYphBSABYIwmE0TYD7FO3aV30mhMoDtsXxGSQPugGAeD/0ViBQn3rgzy1/o6pa6diR9sGYrdEkUOBYLJGzj85eJ6VpnWppKyod3AGHVN9fuNgQNMSlX6YxgiKt0p5VV5JK1nSCo+J2cMKqOApENem/tUOJJIJbCYncoqukZzK8EFCJwT2NZn0S9iZnJ9L3N94waLeQ6pGLMmhUZCGnp8YnrBkFcoO2EOGIrIndRt3WSE+GUCHuIdrKPVTrx/wuvL31qxKlvLZasy32+u5/srlx43To78zFdO6+mokopMDXp8LarZJ+9w9FI9wKuAcDM0EBaT8n4NERHw5zdJaBUzLGPNEsSHJILjZK5B6GVAQByPVbeYkCYhCTGX7DMwASoShX/VGxIuI/yNOlMEhTQq7hGlKbkHxwTW/vYHmJjgmllLW2WJHl0N/OR6W8Re6mvX8bNYSpxjm0mr9sfm8RLk5F1Nq/IBbUMf5Wa7sLXeyvlDPO3Ca5L+rXaC8X99E1ignbRnYOAoHfD159f3PvlhNvEpiEcEhcRfzQIWFAFs2ZqCQ3kwAln7Ih+NKBIVR19NRLsU6UbyVFrd4dYx6hjHX8XfRQZdutYYO5s1ottJuFJaMpEyZCVmDkfTYZbK8ahBpki8KNnBWIrGD6p0S2Msq5RxRqL5RGRsKk2ICdGgPBWJaIV0XiV6aK2RIqXh6KNhoseInFXGCBXNmK1PCMT1mJTJgMmytkRRMhFV0VWST0wZ/buk/ZiNkS2YRDQlH6fRJiUvBxUNz0Rn2tZdcs+IiValMN/QkJgAaADiRoFIE6abMMfv5LCXf3kD5l8O+Mjoex2dz/jnxzHff5hlIOvAm7rXbe7GaLXqzs6xrudTrWOffn9b5Ha0ZrOkbpQ29fm51Uxwwo1q+uSnnu0atIiDftzPZuc6MKs3tCaakbuBbA158rgviFBGcScbGMHiF7UwBN/XNeh3LNfWXyLGJEPQKhnF3cOrxhXZfSS+T+Jkhq20Cdw+4DYwSRBZ4ut1xWTKrG3tcGe3yFBR4grgGLtSWoIBrRontYEmbwG3a03HNiZKuM1pt9jJIR4QEwdF2kUV6GkOhdcEY63rWAhSC0YjlluMQTCOtf419jFYWxUSIs25R4gtwyAOrFvgBPfIqnUf0MRDl2IyxWO3kvKnxZqfX/TOZfHSIpNo/AE73N9Scac/wnHxR5typ8qcowPrRN3TtSJpa+S0LVaG0jnhxH5Tl3isc2I8K8FsXhAXw3BIRiakglTcBTLa+RWZiQYNW2dppEAwyKwMMgFFUTjIYpHZOk7zEBNEkERQMOB7sb1NtWAMMXImwMaRmEYGlPXO3lFlscXVdv6cbdft9xO8n1ASsC0B8rKzdQ+1eLpPChH0xrMu7NcJ5lRxWJCNy8TY6tNfkxd4uzgDtQM/3gPv+/epGyHYtwWCPt6436cyFh7CvIhDPAajQd70jPf2H3r6s3TgMN8fwPxQ/2dEBWPMGbfvyjV+YaxTIE2D/h7kumkAzchN23lvlyVikccBjJO34R7sFugyIcQHARl4G0+p530nQf9am9j6q/s9abDzqNtlFJQuE+OdhFDWhaBgUiIK08QOCoqOYzCNBTDchv0/QYqEYOHmdGd0NF+JJjGoQVnQYaIoZIiChUc7lbQSVIL5imKUIAwTOR0C8YjII7vmjCB2ROH9m9MkGRdxTK31ur0lUUByNJ6bpoooaEWQMnH7Qk/sF3KuNAExTkbIZV+NS3xZ5/Uv+nlumVqpynl31mfqmurSMPIn7quP0cK0cbY/oiefnJ6q/Mar5M7j7I6/0qf8VdHIndUPmj7LN1Wna9dOvVgDOJemgpAA6UCSCPIorTkrbj3WYykI/bn0qIYxG05lJwGK7SJwthcZ3dJpKDLK9vYSErYtJrtTSNecCw5T8dshEeDwq1JIXoWdQlQQp6sQ4qca3xUhrBB5kRLZiJHGjs8hnIQ1gigQuWeLhAlWas+j2D4vSpyPqKIktgulPNh1rr0MjFcSrZ6p5WUnYQlYtrPyqev3IyGYZNe4Nh/q8+OHGXqg1yPdJr4M2PYiKwTD1T7ob3AaTAZwj/acR7Wdi/+eUcvbhRjcOMHblUQewG4lcXs6vSDAe+OHbD/HY0+XU8b9g/55E1bf7ai8nQ/xfE8/j5eO9jXIaIbahZxy/yDv7/F3slnb2Xmf7LoMjG1MJC2YZCROYgnbWYEGCWpMm8GfExkMIqvGNN0PQhq+IXwtDLLkcpUUAgkREuEcEcSZHCTkoCitqo2aIWE5MLE/LIoOYxhiCZLNg+384F0RdyTjST4yDEExjgQaCZqCbOf/ydeCkbiLE5QRQaAyFn4VV8RRRVV4oWQ7uz2k8zIw8pfoNPIzY8d8zMngbp4RrfXZ01XThXTVCVM5ejFH94fpqY51dL1cOyX6Mc9w4j7k8QFTmXNVsn/i2D7Kie0vn7wsU2cke9ZvP5MmV3YIdv3yic7A3MjJw9C5Pcfd16FLSxXPgfEMMEF2g2AH/yQz2Kw34odJb3ip9Axa4REJvnv0q4hHWbp1YRhaWjto6+pbUtz6Z8FBSBv/iNADsYfY2SHiANTA9wwSRytioo67R+9D2gEvAKq0QiuCR8F+qzigscJ5rNbxNg+lrExY+HKQ3ufubRTsZOMp6+trmhU0ASIizH1u9pGley5TU/HESe4PI22OLOldyDdtFFVWcxg9mF0YQ+zT3tsTK0XI/rQ5sWT+pvH3Wu5ayMvrf+pzgfG0p9fDwlSD49C2cIOPNCxkByVnL7vQLTzt7RHJ/k4XcHSTe40POPDZ2tHlaZ+dQpFwQwql6SQavTeywc7IwNmEHAr/lO5AC/nO8ZCACitZFOZWeC8Po2pOUzWvmaXijJHWiuk0Keszudk5o5Q2jbHpbM40DCNLR47/0rVMJZ21zOmqZmi6oRbMdHqmMDNd5bqMTG1CpXS6mp7Omka5OJM7YtCvGUbevNsomEYlUx2p5I18JZ031NqgY3vXCn1rJjdmmNmMQfUxrZSy1xJVrVAw9HS2LkZuYE+VLZg9hWxUKczolXzlRsUgvI/DG30run3Qxjdkb9hG9ac87uvxH5+8YsV43TbqGHWMOsaHEkM5OZppS+WYNA0fzwmOSd38yaH9+JRMPbXtzKcFdNMWqrXBdtXTlO6xLsTTBatVmv6NrD6pk+nPa8o2r0pTV46x6d+wtIC4lpZVaANxfInczHx7rvvuUQqLWfR1bvnX1tGHVjXITf0sNCrz0J65L7qhNbvRyXo4jG8enYf4xqydXN/Ffrm3pSVIHPqtG79CmLZm+oj7UUDt2AHyvcignDjvGyiIuAcIvtl3U8WW1ZhZIdgp+P1uTkCDa+06PhH4djeR7yGbEEsQdoje1tUtDTHmUqN4iY0rPNt670q4nxG6sfBgu8W2eUijy5log+62J+da7rqtuWnjqx22SI1BdbXbzdFnWHdz9GG2lW+2VbCIeY5jV9hV+DgEC/qX8rj1CxUO2oKYZzrdBotRZdOAaxPLs6u2xtkHGv5k9qc+0Um+FEZxupFtXMQP3ilh+G/hta0+vcEYgkckgf3nO0jLF5c1xO+6dNswjuRLeePpsK1QS2XDNKhhZ7b2+/xd5XwuS/OGaRqmnM1XjCMzVrZYMmjJrBqFbN6YMQsztoAx9yO71LFypVolRtGkj5hmxYQZs2qWTK1SrBicSs1CqVYTd8iasQ9SqD3SnZ8tzJhmqUxNe2kWzUJ5U7xYNnKcNmMXNWayf4Ce6sw+iOIZa2fZHSqf9iQMPmX6xeuM8c6nlwiMi36Nb3XZltoC8x/x3n/4QOM8goIu7GgMMrYFsC6KXXf9GWLslGwHPz82jzS1sAsH193scGLcQFlgffeCXPMT8XmoI3Y9MIRb2zzMYtrGNq5FB1rn3yFwDBsJrfmEDCsEN8Fw1zJu4Ve9FLU/8md2Rp2gZCVye12LuAc+Myg7/sS9FMWoD1YwrDsK7EPzeWYYpa8HRtU0s4Ws9Y1KQVct0zxSKGSr9EB74WiWmkezttmZxZkAoWb+rlc6SjPvU5MeOWqbonnUmKnYVlkrV7QT4FLJNu6CWTZKMzf0M7F1MVLHqGPUMS7rVczMc2VM4zIwdNAsIGCcf0qzfNKO5zJooLbNiuELRjgFIkgi6TP9rvmb5Zx5+MxPz/Nq+/w84HxwGRj9hocWXQBh2k/QvYQwwWWufj+ws1vWLOfREuIVv3EfT4H+5I5Z/Jy2XLjgWFZMxnEMg0FFVy8BETHY343aDllfAdQK3HI0yK2Fedz4nFP5or3ew8ye99QxVQ5fIsaUgAWjAIK5qlyV3eqzsdtgfrRZ6Pdgn8M9C/vnqzz7OW58EHtob4pEJ/BzE+Dmz9Mtt69WWRIlR6ksEMt5J1N0533uPgb7hsxdPQ53AMFXYPtQk/ZvDb+F2Zs2O+E1Tr1qtmGRsoH35O1cLEcVQ6XytGFkRvMSnbx59EhU+1WuMmY3UhKDLCmL0pR2wauRi8+VaCGnUWVED+vhqJZWc4bxLjVykm4K00eKu2bF6dKho0YsFjeFAlR+ByZ+HbsRp6g8e7b4vgE9VZ/QCJ90N93oGBsZ1CyhGx6jREtH7Z/LwDh4eOxU0FHFsKJNU+v4jWYpbNLq4XOEgPO/8mGdZMK58tkFrROe9eQcEW9d9Si+/RerAbKbRBinvU8ukQQcp+8gmH0P5M/dJXObwhBjCYTUsMUxEZfcK+ALDXcq9vCTHqgNo2SJKG8gkOGCkITs24SbsFggn8Mg9odxJ8bS1cM4Fje2v7GG3T/6ysIS7G9sPgolmSMHP00mdjLBwOrV/NsLGILdPG0dn/Mz+NOrsefHcIG4QW0MLQpAV2OGp26Hm7QuRg2gHkDGk5T9FAQcbnbrBHNXP4arfDWSb/SgqT3bek0vrfqpj27u2nzQQSbenKCBNavx2yhrBX2Y3l+xsNOzejX20Z4LHaVnKDaxvWszXd3P9NOefsq8vf6nTkp/hsaetLoHaADTnufS/tX4wrVcWdy4+ARGtYFBEePDYPznwoiltMxMdETdycaTR+J6NmcUsNLaTvMJxcik2NQIR/JqhOZjpLJzMd357WRZwQeV16ImqdDUiHpQSiYKqi5qUXXYkp4xVCttxEoj+c9S3YjR0FfjOWPuy9lIMY6nsge8STNOX82rupHU4gc1OY9jM8pOdnZYt0VpMZ4x5GyyNNyNSy1jCQw59Txn7RwYuAUZDnb0WU9/NyHgRFqehSjGvolkY8hL2jFr9PTz+VsqkaYf8k92zfGd8+cbAHJ3B/v0OuLs9myP3Yy9mHt2tp+PPhhZJnRYff5mFjFdlLgaZvuHPA1g4W602IuR8fZ6HnOUQ8j+1b1IXjTkxb0GcnbzqVZPhQoFHm/inb7Ish4+3LkA9/B4yHOpGPuEoOAegS23bHEa0j4ihykhbwK3cpws5hhg3LjCusUkN0PQox3IazHt7AiwMgdukV1XFXtvGWK+AcTH/WTiTcIozAoi0FYv4A5YVIF2LruFa8YqXUaQF5AYf2UPR1yUU0axwImu2gHQkhha5SRMb3MkSxQItnlBdLNLebSY4VgMHHOVNNVFh2L/XBOvqEcndtbMCzNXx8R/X/pwq8enxSnuO/FZ4UTP7P7ZGwFD/1d32y2RLvmqA7M+lPrje5YH0SO3UIAvL+Ea7/no0k9i7aP/bPRDj4EXfG2hs8n6hlu+F7lZ8daWL9m55i2VKdSK0OLWB6N/0k2cBO26wXtGdHi33sFTx6hj1DGuN0ZRm9eSTkeAqPl0xFAnm6oxq5u0MhXa9pQSi2UM9q24mI3qqkyxIdGDiaQKU6oiG9GMEK3oUqRo57xTauTl1ywxlthnpA0lr8qF+FSWWtJUOqJgkiWVSYKJXI6WLTmayCyg9u4ZVcxORSKzGTNjZ5Pd2RjN3ZScUVL27mEdR0iFzF4Oxo//Ypkt0nr7tvNO4BD7ZBcFdgv+MUwk1UUN3GhLbbY+sdvRGm+oYL5/NrbYXtrSE/vB1eeIv9LjTS/Y7sXPg2uYDrURHvNRB0NqElelGRdpZw08+OBNsz818FC33yHlPhvivV10EPMCDvHLH+LpAdb/igf3u1HZ2+lAewYlh7AAsOgm89+9vEb1cFlsd4kcQ4YBJ9ztdAeJYg6N51gv2FmCymLhbuIOhbnZl4mvQlzYg22BuswLazFTDrHNNaGKF0EjoQ+xnVjAMYiLEJRkUTUBnpSLbGszO3GQsKj27GNykS2bF1GO9dh1eLFK6FGZbG929tnKOIjcaehN+AhDWA5JaOIq28bcpU0DZp3ZwVc61alZDJxPA+vnP+NFeP+KMT7gg8THpzY8ej1M3BpORVTFiEXKdJKHmK5GF2CIZrufsuzclSqlvJBKYkIOh8ZiEZWGPpvmSBKLRkrNN06pUUPOGPsdWeWHHTglVZdMTGkU71oStpeilo8ouqaYkm68bCcXuiRXiT4t4BQphSl7t4Yjs9uah+1sSd/FUiWxTw/rxpVjYLRm2/AoS5wzlD1MexHLd+I+hzOxPt/olSxu/YFdnyjhwe4OtHqczc75vzneB9N4yL9CsAJ2KspXG0heWdbQ5unf7uETE+Tb9G9ZAqiCt/P8+4CAXWy7jjdDnkNvd3vUBdybN20NecICtTdjlP3ZHoLcM/Lifgp6Q8uC7RNXjvGWnU8mOJGAPJsH35pgApAbu0dQ1zTqJBbT9TZCYyy3tAOhPSK10M172FgJ9Xo5wQyIwholjLW5FZJbZFiOkdEbotfOgQ0DKiznCUXAtnfvmqD6MocmJm1n4Fols7CmOQEUcwxL0tuJgGUQXAwVy5h3iWT2moU/XT1nPkuubEiFee4etmqiHsXrGHWMa4ZRi7eXFPisDy9GXt1ANLKTVchGvkhiqfAWdVj/bCk2p2D27iyVcSy+OplJ3f1u8JmJjetJyqgKuqpMxwyozYlsKhFNycopQ2fRrFKpkoxK9LCcxoqm7HQaSkygk/FghZJo/KCUrAXL/MeOTfohGhmD6BoV08RaMg6ZdEpEukDJy8PkCJEj5cvFCH0eUX10Y89AIxu9fV9LrMkWm7YG5Wxpigf9tKE71vRNyQmDn9H+0mXchlbRN299Jd7R3d0hf4yn4Fq3LTbKPgjqQVsvOrRgsjXpEJqGePwTjUM47X8ADr35/Fgw2hLwEdLnBydY+N89KdUmCWsApzA6h9Z4+LE3MOsWDmICfHxFT3yFA6QraFSIvvnahn62ix35HxnU2dkfPOrpoqv/vIT7f+ynbzs7uwKuATr4H83/zJh3zA7R/bM/017o6fPLAyLtbH/tlfRrA9tnhw72Q3APHfgVaxidXSG+Z02+C+GRFx7w2RjGC7/Mbufppr514gC1Bv6TpyLaGM/TV7JDetdqD6+9gYNHB/JYwsJrG3rUHuO99mtv4iY+Jl3nznPGSvBBB+kdweHKFWCcZd1HzaNnb6ye17ztLSfulZZO/+x8h5i5ZiZelDfgTFgeiciJXAwbQIsOJGfiobgeTxnETjhfNYLPSvGdX8kGdaEoUZloU4ay5d5dpCRUrIf3yC3sLlKV9FupHCFH5JyMb8ImSaXZY7PoyOV8WNSUxRaUlRm7tkj2GmGkF+A+cA3xIral6JAfU+tLBB+biB673c7Pd1G3T7u/z9OPeeMBT9xu4XY57vYH8HaP0lAJjv0Fat+63QPI02Wh3uR8xJdw4Fm+QhYff1iquRRr2u7j7bSVb/gyWtjFatcII+lCLLh6vb2sR4lxvBgrMhaE+DZeFogM4KrIIc5NGqIscYkoEbBdmJ17uneywJBVv8hwvLDGVqsjhDClwNNM8gVZZtdgWcBrewETjocZpZ1z+dbOcR3uX/HgIjsmrln4o6nfHuYlXnxcTf7s3HZy4vqFv7qmqmPUMc6HgWvjPXOn0uATMzNVMxedYsk6bYjObwpbF01Ij5W1as9q5ZK5Cj1zMqcrnNhpp5djY4S7MwMhADBwbNGE7sId0XA3WQoyjYYhzApRW5IyJtT+gAzBYpwsVWQWsjpGSTdWXDskzDkzIHppXuiVRO/7eBQyQS57UIiExSRwwlI9wI7b78ptPyJit4DRMKpsW987BvAc7pX41p6Q9y1XJWrvTJ9x6i4w4QiN1NYuHUMPL5OcZCgQnGrVe91844Njv+ATiId23NOPVQrtiHzJs11rXO0JHnILRyjsYAwGz1c2da+b69/k776l77ZtWiPCz6faPFT+i80+73qrz886QaSkibf8v0RrcA9pGuT9A6vKmBVg2QwefPCzlZ+tb/zCYfxcDxYW4K0hO5bS2l+CiW3E++1v4dTstZA3ZlxGo4JyJt4ZMoXoLhG0oAET+RahQxGwFJGzVJGEZARiY2JAMMSMRKicDufkWDQmwnieYC1GCJI1iMCYEK3NEBXqUgQqxgVDIhVdSMV36MLd4WgaxD2KHqRTI6MhPSbidvQLXRcTgaCCY2EhohCBoEMZSZaoDmMYjCBPj619MBM3T0i4c45jK5wVGK2L6Qv9HIpy+rfvT3wwEz8mPk97wKp46uPqSZbjirdaLp1Eq1bOFLmnBHCJ/tYGW3ifcbz3qVGxT0X+2MinwvHjFT64p3qGV9TMZ9OSHnNTJQVmy0S+Nga4N0ZwhITz0tQCCl14AlfmMCaxfemVhyzh61mLKOHedEwWpQg7Q/T4/phIDEj1RJMCKZEoEWO2D5iKi+qr2UmvnCY0qorxIigGXVVRAhbMD7gDe+b4vqzwjDcV67GimpwjkVT8ijG2pj/Ge7u6vQgw5drhjsQvYk38nH+S3MaGsNcNdkJLrfsYzS339EPGafuqYP6TlSDa7MMs4E39sNVgnPDOj4Z6/EO4x9Hb6xaWc3y/1IT7eRziQX17vR9jin0hbJt+kHZWDmrv+T9m/gfzhTcbt/L6X6YdizHt8zsZFhThijF+CcAoDLiUOKbAId41EXHJthUKbrRmA5OUsKv2x9oBsnmeTZex3YTz7sXWQV70KgNh4AKBvgQQdX8nxwpfJ4AVDsUhxCiCS2RJUPSSsQMJkAMUe9sESiBOOXVVutZzm4Z3kwhknwJ8u5tiXiQkkCC7PlgUT104Zonny3Y2n56xXvhuzmlbT+xUJFczitc1VR2jjnEuDFPVr99POj02fbGfeqOqY9Qx6hh1jN9PDF9iCrl4XYiSewgmreM3KAZovjHkCVZc7cc7029QDBlykBBMkpQUElWJWreNOkYd4w9eqF/KT71R1THqGHWMOkYdo45Rx6hj1DHqGHWMOkYdo45Rx6hj1DE+pK//DxgQPncQ1axtAAAAAElFTkSuQmCCUEsDBBQACAgIAOybm08AAAAAAAAAAAAAAAAMAAAAbGF5b3V0LWNhY2hlY2RgZCiYysDA4CYNJBgZQCCPhYFBipOBYZEQA8NsVrgUSFJAHKsUE1RXiTJEKo0ZLsUM1YVFigWLVADQcBYpoAQAUEsHCM5k53tCAAAAmQAAAFBLAwQUAAgICADsm5tPAAAAAAAAAAAAAAAAFQAAAE1FVEEtSU5GL21hbmlmZXN0LnhtbK2US27DIBCG9zmFxbYytFlVKE4WlXqC9AAEDw4SDIhHFN++2IoTV5WlWMoOmOH//hkeu8PVmuoCIWqHDfmg76QClK7V2DXk5/hdf5LDfrOzArWCmPg0qMo+jPdpQ3JA7kTUkaOwEHmS3HnA1slsARP/m89H0n02M7AlN2nj4Drpho5PQsplbEUq2TcQXD0EPYSE4U4pLYHPFEbSflM9SlDaQF3SQ/8woLIxtRfp3BC26OvRBGi1qFPvoSHCe6PlaIhdsKVjD+i8dJqKDcLWePhyqHSXwygbt+xJdsxIS+k0ayrnCuvg0xoNrXoCXLLeCnQdI6beQBzMLhCGnrHVshaSeLlohJTKc3i923JGabgfr9Y9nrM9odAmsjQNqcduAaKt6IAN8VUUI3qXUy2FPMMT1+SkUYR+QOzYv99k/wtQSwcIv7BgvT8BAACIBAAAUEsBAhQAFAAACAAA7JubT17GMgwnAAAAJwAAAAgAAAAAAAAAAAAAAAAAAAAAAG1pbWV0eXBlUEsBAhQAFAAACAAA7JubTwAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAATQAAAENvbmZpZ3VyYXRpb25zMi9wb3B1cG1lbnUvUEsBAhQAFAAACAAA7JubTwAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAhQAAAENvbmZpZ3VyYXRpb25zMi9tZW51YmFyL1BLAQIUABQAAAgAAOybm08AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAALsAAABDb25maWd1cmF0aW9uczIvcHJvZ3Jlc3NiYXIvUEsBAhQAFAAACAAA7JubTwAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAA9QAAAENvbmZpZ3VyYXRpb25zMi90b29sYmFyL1BLAQIUABQAAAgAAOybm08AAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAACsBAABDb25maWd1cmF0aW9uczIvc3RhdHVzYmFyL1BLAQIUABQAAAgAAOybm08AAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAGMBAABDb25maWd1cmF0aW9uczIvaW1hZ2VzL0JpdG1hcHMvUEsBAhQAFAAACAAA7JubTwAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAoAEAAENvbmZpZ3VyYXRpb25zMi9mbG9hdGVyL1BLAQIUABQAAAgAAOybm08AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAANYBAABDb25maWd1cmF0aW9uczIvYWNjZWxlcmF0b3IvUEsBAhQAFAAACAAA7JubTwAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAEAIAAENvbmZpZ3VyYXRpb25zMi90b29scGFuZWwvUEsBAhQAFAAICAgA7JubT7T3aNIFAQAAgwMAAAwAAAAAAAAAAAAAAAAASAIAAG1hbmlmZXN0LnJkZlBLAQIUABQACAgIAOybm09JAbL6twoAAKc9AAAKAAAAAAAAAAAAAAAAAIcDAABzdHlsZXMueG1sUEsBAhQAFAAICAgA7JubT5ylL0nZAQAA8QMAAAgAAAAAAAAAAAAAAAAAdg4AAG1ldGEueG1sUEsBAhQAFAAICAgA7JubT7I/tUukBgAAhy0AAAwAAAAAAAAAAAAAAAAAhRAAAHNldHRpbmdzLnhtbFBLAQIUABQACAgIAOybm0+xiVStdhEAANCfAAALAAAAAAAAAAAAAAAAAGMXAABjb250ZW50LnhtbFBLAQIUABQAAAgAAOybm0/Y3fH9cigAAHIoAAAYAAAAAAAAAAAAAAAAABIpAABUaHVtYm5haWxzL3RodW1ibmFpbC5wbmdQSwECFAAUAAgICADsm5tPzmTne0IAAACZAAAADAAAAAAAAAAAAAAAAAC6UQAAbGF5b3V0LWNhY2hlUEsBAhQAFAAICAgA7JubT7+wYL0/AQAAiAQAABUAAAAAAAAAAAAAAAAANlIAAE1FVEEtSU5GL21hbmlmZXN0LnhtbFBLBQYAAAAAEgASAJ8EAAC4UwAAAAA=\",\n      \"file_name\": \"Test.doc\"\n    }\n  }\n</pre>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"93c29898-33a3-48cc-8a32-fed8cf1471ee","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{jobadder_client_id}}\",\r\n      \"api_un\": \"{{jobadder_user_name}}\",\r\n      \"api_pw\": \"{{jobadder_password}}\",\r\n      \"api_redirect_uri\": \"{{jobadder_redirect_uri}}\",\r\n      \"api_secret\": \"{{jobadder_client_secret}}\"\r\n    },\r\n    \"vendor\": \"jobadder\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Nov 2022 21:21:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"519"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"105167"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2022-11-30T21:21:31\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-30T21:21:32\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"jobadder\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://id.jobadder.com/connect/authorize?response_type=code&redirect_uri={{jobadder_redirect_uri}}&client_id=lzsaqckzxocurddtscursm4zcq&state=login&scope=read+write+read_job+offline_access\"\n        },\n        \"vendor\": \"jobadder\",\n        \"elapsed\": \"1.005415\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"8983f22a-7b0a-4d25-bd40-0e2ff2e6f8bd"}],"id":"a3d86f76-8a0c-4f16-8bd8-4db836e392ba","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"a3d86f76-8a0c-4f16-8bd8-4db836e392ba","description":""}],"id":"9b987c7e-f99f-421e-bc79-ebda00aa86bf","_postman_id":"9b987c7e-f99f-421e-bc79-ebda00aa86bf","description":""},{"name":"NextCrew","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"c095cf76-3821-463b-b103-6834cec4a236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<h2 id=\"request\">Request</h2>\n<p>This API request is designed to authenticate a user and establish a connection for subsequent API calls. It utilizes the <strong>POST</strong> method and targets the endpoint: <code>{{ats-connect}}/authenticate</code>.</p>\n<h3 id=\"required-parameters\">Required Parameters</h3>\n<p>The following parameters are required in the request body:</p>\n<ul>\n<li><p><strong>nextcrew_api_id</strong> (string) - Your API identifier for authentication.</p>\n</li>\n<li><p><strong>nextcrew_api_un</strong> (string) - Your username for API access.</p>\n</li>\n<li><p><strong>nextcrew_api_pw</strong> (string) - Your password for API access.</p>\n</li>\n<li><p><strong>nextcrew_api_secret</strong> (string) - Your secret key for API access.</p>\n</li>\n</ul>\n<h3 id=\"optional-parameters\">Optional Parameters</h3>\n<p>You may also include the following optional parameters:</p>\n<ul>\n<li><p><strong>api_sandbox</strong> (integer) - Set to <code>1</code> for sandbox testing. Default is <code>0</code> (FALSE).</p>\n</li>\n<li><p><strong>api_performance_dump</strong> (integer) - Set to <code>1</code> to dump all call details. Default is <code>0</code> (FALSE).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong> (integer) - Set to <code>1</code> to dump detailed response for a failed call. Default is <code>0</code> (FALSE).</p>\n</li>\n</ul>\n<h3 id=\"request-body-example\">Request Body Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{nextcrew_api_id}}\",\n      \"api_un\": \"{{nextcrew_api_un}}\",\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\n    },\n    \"vendor\": \"nextcrew\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {}\n}\n\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<p>The expected response from this request will be in JSON format and will include various fields indicating the result of the authentication attempt.</p>\n<h3 id=\"status-codes\">Status Codes</h3>\n<ul>\n<li><p><strong>200 OK</strong> - The request was successful, and the user is authenticated.</p>\n</li>\n<li><p><strong>4xx</strong> - Client error, such as invalid credentials or missing parameters.</p>\n</li>\n<li><p><strong>5xx</strong> - Server error, indicating an issue with the API service.</p>\n</li>\n</ul>\n<h3 id=\"response-example\">Response Example</h3>\n<p>A successful response may look like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_response\": {\n    \"api_data\": {\n      \"NCAccessToken\": \"\",\n      \"AKBaseApiUrl\": \"\"\n    },\n    \"api_log\": {\n      \"CALL_ATTEMPTS\": 0,\n      \"CALL_STATUS\": 0,\n      \"CALL_REQUEST\": \"\",\n      \"CLIENT_ID\": null,\n      \"CALL_TIME\": \"\",\n      \"CALL_ACTION\": \"\",\n      \"TIMESTAMP\": \"\",\n      \"APIKEY\": \"\",\n      \"MESSAGE\": \"\",\n      \"VENDOR\": \"\"\n    },\n    \"api_status\": 0,\n    \"api_xstatus\": \"\"\n  },\n  \"atsconnect_status\": 0,\n  \"atsconnect_ticket\": {\n    \"api_version\": \"\",\n    \"request\": {\n      \"values\": \"\",\n      \"call\": \"\"\n    },\n    \"vendor\": \"\",\n    \"elapsed\": \"\",\n    \"key\": \"\",\n    \"fn\": \"\"\n  },\n  \"atsconnect_message\": \"\"\n}\n\n</code></pre>\n<p>This response indicates a successful authentication with relevant data included in the <code>api_data</code> field.</p>\n<p>In summary, this endpoint is essential for establishing a secure connection to the API, enabling further interactions with the service.</p>\n<ul>\n<li><p>nextcrew_api_un - <strong>REQUIRED</strong></p>\n</li>\n<li><p>nextcrew_api_id - <strong>REQUIRED</strong></p>\n</li>\n<li><p>nextcrew_api_pw - <strong>REQUIRED</strong></p>\n</li>\n<li><p>nextcrew_api_secret - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_connection\":\n      \"api_id\": \"{{nextcrew_api_id}}\",\n      \"api_un\": \"{{nextcrew_api_un}}\",\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\n    }\n\n</code></pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"62b0e378-44c2-4fd7-af29-dbbf9595be35","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Apr 2025 19:35:56 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"613"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"679864"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"NCAccessToken\": \"x8zXP12bRqbsHYuhWzNSiczK7YaCOS7akglum9Tk5NwEP3YQRnEt0ouJzuIuTNLQ9G2jnHNmKisJuIn09PWoXl2hcKXVhoNBIUpO0KzMzydSC7YTFPzPrRXXNZlvFXr1fYTTg2Gyx00Ynwy5dvpQE7hFlXLcGF\",\n            \"AKBaseApiUrl\": \"https://api.nextcrew.com\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Auth Code\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.21165\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-04-18T19:35:56\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.278774\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"c095cf76-3821-463b-b103-6834cec4a236"}],"id":"c3944c7f-1ce4-4db2-a7de-756f8a4ee16d","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"c3944c7f-1ce4-4db2-a7de-756f8a4ee16d"},{"name":"Application","item":[{"name":"Application Get","id":"7413af76-b768-4c7b-8049-40cd2f3dacd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6bed6efb-047a-49c9-8497-776a8eb25329","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Apr 2025 20:17:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"619"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3376032"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-04-29T20:17:04\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-04-29T20:17:04\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.313268\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"7413af76-b768-4c7b-8049-40cd2f3dacd2"},{"name":"Application Get By ID","id":"422fa603-0313-4384-ab11-80033ef33b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n\n</code></pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0cbbe1f1-c78b-478d-a4de-9c4a1bbdd2fc","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Apr 2025 20:16:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"619"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3376029"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-04-29T20:16:45\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-04-29T20:16:45\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.288064\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"422fa603-0313-4384-ab11-80033ef33b9c"},{"name":"Application Set","id":"ea4e8a73-e71d-4f13-8f5c-8ae808858def","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 830180\r\n        },\r\n        \"job\": {\r\n            \"id\": 3358911\r\n        }\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>job -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\":{\"id\": 11 },\n        \"job\":{\"id\": 11}\n    }\n  }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f008b7e0-e758-4eda-90f1-7ab02d799ecb","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 830180\r\n        },\r\n        \"job\": {\r\n            \"id\": 3358911\r\n        }\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Jun 2025 17:31:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"449"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1870175"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"830180\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.158775\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-06-25T17:31:54\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate application set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"providerId\\\":830180,\\\"jobId\\\":3358911}\",\n            \"call\": \"https://api.nextcrew.com/job/3358911/assign/830180\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.473003\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Candidate application set\"\n}"}],"_postman_id":"ea4e8a73-e71d-4f13-8f5c-8ae808858def"}],"id":"77bb5d11-7446-4855-868c-b9a4bf65a2f8","_postman_id":"77bb5d11-7446-4855-868c-b9a4bf65a2f8","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"1363c650-e310-4bca-84eb-832b97b78641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li><p>id - <strong>OPTIONAL</strong> - candidate ID</p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong> - candidate email</p>\n</li>\n</ul>\n<p>ID or email is required</p>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"290d1a55-4459-4f21-8d4a-5b4cee2dd411","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 May 2025 20:35:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"545"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"5541115"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"6\",\n            \"candidates\": [\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 830176,\n                    \"last_name\": \"D\",\n                    \"first_name\": \"Jo\"\n                },\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 830180,\n                    \"last_name\": \"D\",\n                    \"first_name\": \"Jo\"\n                },\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 830186,\n                    \"last_name\": \"D\",\n                    \"first_name\": \"Jo\"\n                },\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 830187,\n                    \"last_name\": \"D\",\n                    \"first_name\": \"Jo\"\n                },\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 829325,\n                    \"last_name\": \"Dees\",\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 829326,\n                    \"last_name\": \"Mitchell\",\n                    \"first_name\": \"Joan\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Country GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.039603\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-05-06T20:35:32\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"6 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.nextcrew.com/lookup/countries\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.512057\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"6 candidates returned\"\n}"}],"_postman_id":"1363c650-e310-4bca-84eb-832b97b78641"},{"name":"Candidate Set","id":"03636c5b-3c2b-4f65-876a-4fdb51eb5b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"first_name\":\"Jon\",\r\n        \"last_name\":\"Doe\",\r\n        \"email\": \"jondoe.2025-June-25.3@mailinator.com\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"109 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"phone\":\"919.960.2241\",\r\n        \"cell_phone\":\"948.410.6219\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>description - <strong>OPTIONAL</strong> - personal statement</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"475cfce7-9a2c-4cbe-b6f4-d0c90174febc","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"first_name\":\"Jon\",\r\n        \"last_name\":\"Doe\",\r\n        \"email\": \"jondoe@mailinator.com\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"109 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"phone\":\"919.930.0244\",\r\n        \"cell_phone\":\"188.410.1214\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 22 May 2025 20:53:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"601"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"5018064"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 832055\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.23813\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-22T20:53:08\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"Jon\\\",\\\"zipCode\\\":\\\"90061\\\",\\\"country\\\":1,\\\"state\\\":\\\"Maine\\\",\\\"hrStatusId\\\":1,\\\"email\\\":\\\"jondoe@mailinator.com\\\",\\\"password\\\":\\\"PfLlmqZolb9ezbFoGzb5\\\",\\\"city\\\":\\\"Boston\\\",\\\"cellPhone\\\":\\\"188.410.1214\\\",\\\"address1\\\":\\\"109 Peony Rd\\\",\\\"homePhone\\\":\\\"919.930.0244\\\",\\\"lastName\\\":\\\"Doe\\\",\\\"loginId\\\":\\\"DnrwjsJzLUky8Sb4z8Nqz\\\"}\",\n            \"call\": \"https://api.nextcrew.com/crew\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.494805\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"03636c5b-3c2b-4f65-876a-4fdb51eb5b87"},{"name":"Candidate Update","id":"91d94b5b-5aa1-421b-9334-5a3682f72be0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 829326,\r\n        \"address1\": \"100 Lune Place\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>description - <strong>OPTIONAL</strong> - personal statement</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"dd2edd87-f43d-4d8f-9699-a723fb4175a7","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 829326,\r\n        \"address1\": \"100 Lune Place\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Apr 2025 17:20:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"449"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3375392"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"crewId\": \"829326\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.070668\",\n            \"CALL_ACTION\": \"PUT\",\n            \"TIMESTAMP\": \"2025-04-28T17:21:00\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"crewId\\\":829326,\\\"address1\\\":\\\"100 Lune Place\\\",\\\"countryId\\\":\\\"1\\\"}\",\n            \"call\": \"https://api.nextcrew.com/crew/829326\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.457466\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"91d94b5b-5aa1-421b-9334-5a3682f72be0"},{"name":"Candidate Get By ID","id":"a79a1a07-282c-40e2-8188-0fe800913cdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 829326\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data. with the ID</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 829326\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7203d03a-d9c9-49ae-ac6d-a124130014f9","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 829326\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Apr 2025 19:29:32 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"560"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1212762"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"email\": \"agaa.hn11111ff.afafn@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"100 Lune Place\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 829326,\n                    \"cell_phone\": \"288.010.1214\",\n                    \"last_name\": \"Mitchell\",\n                    \"first_name\": \"Joan\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.047716\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-04-29T19:29:32\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.nextcrew.com/crew/829326\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.32977\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"a79a1a07-282c-40e2-8188-0fe800913cdb"},{"name":"Candidate Get By Email","id":"bae89115-c9de-4bec-91e2-847f62cf925f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"email\": \"agaa.hn11111ff.afafn@mailinator.com\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data with the email address</p>\n\n<ul>\n<li>email - <strong>REQUIRED</strong> - candidate email</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"agaa.hn11111ff.afafn@mailinator.com\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3e09cc1c-0b2a-4246-bd76-69a6d4948cf3","name":"Candidate Get By Email","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"email\": \"agaa.hn11111ff.afafn@mailinator.com\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Apr 2025 19:28:57 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"495"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1212759"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Maine\"\n                    },\n                    \"id\": 829326,\n                    \"last_name\": \"Mitchell\",\n                    \"first_name\": \"Joan\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.060452\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-04-29T19:28:58\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.nextcrew.com/crew\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.297948\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"bae89115-c9de-4bec-91e2-847f62cf925f"},{"name":"Candidate Set Education","id":"d9d9d81e-8cd0-4a78-aba0-0a6d192c39ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 829326\r\n            },\r\n            \"degree\": \"Bachelor of Science\"         \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><strong>Not Implemented</strong></p>\n","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b552a56c-97c4-4f48-82c8-b4c578590bb8","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 829326\r\n            },\r\n            \"degree\": \"Bachelor of Science\"         \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 22:27:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"625"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"5543117"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education Set\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-08T22:27:09\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-08T22:27:09\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.346029\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"d9d9d81e-8cd0-4a78-aba0-0a6d192c39ed"},{"name":"Candidate Get Education","id":"b77c3ccc-d50a-406f-8c80-46c8cce9ae8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                            \"id\": 4\r\n                         }\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n                      \"id\": 829326\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e14403a6-07e0-4706-a134-13c9f6c7a26a","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                            \"id\": 4\r\n                         }\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 May 2025 22:27:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"625"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3148818"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education Set\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-08T22:27:22\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-08T22:27:22\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.234634\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"b77c3ccc-d50a-406f-8c80-46c8cce9ae8d"},{"name":"Candidate Set Work History","id":"13031a8e-a7a4-43bd-8e1e-5eebde724c46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 829326\r\n            },\r\n            \"address1\": \"123 STest Street\",\r\n            \"company_name\": \"Far Far Away\",\r\n            \"comments\": \"I ran the cash register.\",\r\n            \"start_date\": \"1992-01-05\",\r\n            \"end_date\":\"1992-01-31\",\r\n            \"title\": \"Cashier IV\",\r\n            \"city\": \"Des Moines\",\r\n            \"state\": \"Iowa\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4596d8e9-979a-4417-ab66-e541f3fee51b","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 829326\r\n            },\r\n            \"address1\": \"123 STest Street\",\r\n            \"company_name\": \"Far Far Away\",\r\n            \"comments\": \"I ran the cash register.\",\r\n            \"start_date\": \"1992-01-05\",\r\n            \"end_date\":\"1992-01-31\",\r\n            \"title\": \"Cashier IV\",\r\n            \"city\": \"Des Moines\",\r\n            \"state\": \"Iowa\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 May 2025 19:24:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"627"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3149717"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Workhistory Set\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-09T19:24:15\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-09T19:24:15\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.269223\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"13031a8e-a7a4-43bd-8e1e-5eebde724c46"},{"name":"Candidate Get Work History","id":"1e5615d1-d59b-48d5-b04d-98fd1284c9a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 4\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n                      \"id\": 4\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3c3bb63b-ea30-4b68-b731-97683141cd68","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 4\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 May 2025 19:20:17 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"625"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"394484"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Workhistory GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-09T19:20:17\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-09T19:20:17\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.262969\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1e5615d1-d59b-48d5-b04d-98fd1284c9a8"}],"id":"96463617-8573-4e7c-b28f-4bfcf3137800","_postman_id":"96463617-8573-4e7c-b28f-4bfcf3137800","description":""},{"name":"Custom","item":[{"name":"Custom","id":"40ce3a5c-ac8e-4ab1-a35a-d604711e03dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f73eced5-d85f-444b-aca9-a49ae135cd40","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Apr 2025 19:30:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"609"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1212768"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-04-29T19:30:50\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-04-29T19:30:50\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.268921\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"40ce3a5c-ac8e-4ab1-a35a-d604711e03dc"}],"id":"baf98606-6eea-4737-979a-6a2ee8e95143","_postman_id":"baf98606-6eea-4737-979a-6a2ee8e95143","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"7477265e-fcff-4b61-923f-59c705d007f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{nextcrew_api_id}}\",\n      \"api_un\": \"{{nextcrew_api_un}}\",\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\n    },\n    \"vendor\": \"nextcrew\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 829326,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n            \"file_name\": \"Resume-05-09-2025.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"496a41ca-e71c-405b-abc7-53a26cbd3bc0","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{nextcrew_api_id}}\",\n      \"api_un\": \"{{nextcrew_api_un}}\",\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\n    },\n    \"vendor\": \"nextcrew\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 829326,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n            \"file_name\": \"Resume-05-09-2025.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 May 2025 19:50:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"70474"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"5014372"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 829326\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.116897\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-12T19:50:19\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"documentCategoryId\\\":2636,\\\"fileName\\\":\\\"Resume-05-09-2025.pdf\\\",\\\"content\\\":\\\"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\\\",\\\"providerId\\\":829326,\\\"title\\\":\\\"Resume-05-09-2025.pdf\\\"}\",\n            \"call\": \"https://api.nextcrew.com/provider-document\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.382093\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"7477265e-fcff-4b61-923f-59c705d007f7"}],"id":"9296b79e-eb09-4bc1-bede-529fb6b4bb0a","_postman_id":"9296b79e-eb09-4bc1-bede-529fb6b4bb0a","description":""},{"name":"Job","item":[{"name":"Job Get","id":"dd339a37-a6cc-4517-aea4-49418e0d174f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_id\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/","description":"<h1 id=\"overview\">Overview</h1>\n<p>This API request is designed to retrieve job listings from the specified vendor, in this case, \"nextcrew\". It allows users to connect to the API and request specific job-related data.</p>\n<h1 id=\"request\">Request</h1>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint URL</strong>: <code>{{ats-connect}}/job/get/</code></p>\n</li>\n<li><p>{ \"api_connect_data\": { \"api_connection\": { \"api_id\": \"{{nextcrew_api_id}}\", \"api_un\": \"{{nextcrew_api_un}}\", \"api_pw\": \"{{nextcrew_api_pw}}\", \"api_secret\": \"{{nextcrew_api_secret}}\" }, \"vendor\": \"nextcrew\", \"api_sandbox\": 1, \"api_performance_dump\": 1, \"api_verbose_dump\": 1 }, \"api_request_data\": { \"api_request_query\": {}, \"api_request_fields\": \"job_id\" }}</p>\n<ul>\n<li><p><strong>Parameters</strong>:</p>\n<ul>\n<li><p><strong>api_connect_data</strong>: Contains the connection details for the API.</p>\n<ul>\n<li><p><strong>api_connection</strong>: Authentication details for the API.</p>\n<ul>\n<li><p><strong>api_id</strong>: Your API identifier.</p>\n</li>\n<li><p><strong>api_un</strong>: Your API username.</p>\n</li>\n<li><p><strong>api_pw</strong>: Your API password.</p>\n</li>\n<li><p><strong>api_secret</strong>: Your API secret key.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>vendor</strong>: The vendor from which to retrieve jobs (e.g., \"nextcrew\").</p>\n</li>\n<li><p><strong>api_sandbox</strong>: A flag indicating whether to use the sandbox environment (1 for true).</p>\n</li>\n<li><p><strong>api_performance_dump</strong>: A flag for performance logging (1 for true).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong>: A flag for verbose logging (1 for true).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_request_data</strong>: Contains the specifics of the job request.</p>\n<ul>\n<li><p><strong>api_request_query</strong>: An object for any query parameters (currently empty).</p>\n</li>\n<li><p><strong>api_request_fields</strong>: Specifies which fields to retrieve (e.g., \"job_id\").</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"response\">Response</h1>\n<p>The response structure includes various elements that provide information about the API call and the requested job data.</p>\n<ul>\n<li><p><strong>Status Codes</strong>:</p>\n<ul>\n<li>A successful response typically returns a status code of 0.</li>\n</ul>\n</li>\n<li><p>{ \"api_response\": { \"api_data\": { \"jobs\": [ { \"pay_rate\": \"\", \"status\": \"\", \"description\": \"\", \"date_added\": \"\", \"address\": { \"country\": \"\", \"city\": \"\", \"zip\": \"\", \"address1\": \"\", \"address2\": \"\", \"state\": \"\" }, \"title\": \"\", \"id\": \"\", \"type\": \"\", \"category\": \"\" } ], \"count\": \"\" }, \"api_log\": { \"CALL_ATTEMPTS\": 0, \"CALL_STATUS\": 0, \"CALL_REQUEST\": \"\", \"CLIENT_ID\": null, \"CALL_TIME\": \"\", \"CALL_ACTION\": \"\", \"TIMESTAMP\": \"\", \"APIKEY\": \"\", \"MESSAGE\": \"\", \"VENDOR\": \"\" }, \"api_status\": 0, \"api_xstatus\": \"\" }, \"atsconnect_status\": 0, \"atsconnect_ticket\": { \"api_version\": \"\", \"request\": { \"values\": \"\", \"call\": \"\" }, \"vendor\": \"\", \"elapsed\": \"\", \"key\": \"\", \"fn\": \"\" }, \"atsconnect_message\": \"\"}</p>\n</li>\n<li><p><strong>Successful Response</strong>: Contains job listings with details such as <code>pay_rate</code>, <code>status</code>, <code>description</code>, and <code>address</code>.</p>\n</li>\n<li><p><strong>Error Response</strong>: If there are issues with the request, the <code>api_status</code> or <code>atsconnect_status</code> may indicate an error, along with appropriate messages in the <code>api_log</code> or <code>atsconnect_message</code>.</p>\n</li>\n</ul>\n<p>This documentation aims to provide a clear understanding of how to use the API request for retrieving job data.</p>\n","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a44be1c6-485f-45d1-99b9-dce0a01618fa","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_id\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Jun 2025 18:07:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1589"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1870202"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"Not Set\",\n                    \"status\": \"Archived\",\n                    \"description\": \"<p>This is a test job</p><br>\",\n                    \"date_added\": \"2025-05-21\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"La Crosse \",\n                        \"zip\": \"54603\",\n                        \"address1\": \"1920 Oak Street \",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"title\": \"Restaurant Manager II\",\n                    \"id\": \"3364506\",\n                    \"type\": \"Temporary\",\n                    \"category\": \"Hospitality\"\n                },\n                {\n                    \"pay_rate\": \"$16.00/Hour\",\n                    \"status\": \"Archived\",\n                    \"date_modified\": \"2025-05-21\",\n                    \"description\": \"<p>Performs work as part of a team in an industrial laundry facility. Responsible for the safe, expeditious, and accurate handling of merchandise into and/or out of the laundry facility.</p><p><strong>Responsibilities/Essential Functions</strong>:</p><p>Empties trash cans in designated areas, cleans tunnel screens, and breaks down boxes; Cleans, sweeps, and, where necessary, mops, in restrooms and designated areas; Wipes down fans, walls, lights, and equipment in designated areas, as well as changes floor mats as necessary; Cleans outside the break area and lunch room, and moves empty barrels from soil dock to loading dock; Maintains safe and clean work environment, and observes best practices in all production activities; Works a schedule that is flexible to the Market Center demand.</p><p><strong>Knowledge/Skills/Abilities</strong>:</p><p>Ability to understand all required training, written, and verbal instructions; Working knowledge of basic math skills; Good verbal and written communication skills; Ability to work independently and as part of a team; Ability to meet attendance schedule; Work is based on a shift schedule, and may include weekends. Overtime required as needed.</p><p><strong>Working Environment/Safety Requirements</strong>:</p><p>Work is performed in a warehouse setting and regularly exposed to outside weather conditions, extreme heat and cold conditions as well as dust and noise. Reasonable accommodations may be made to enable individuals with disabilities to perform the essential functions; Requires the ability to move, lift, carry, push, or pull items weighing up to 25 lbs; Requires bending, reaching, pulling, and lifting; Requires the use of hands for grasping and other manipulations; Requires standing and walking for long periods of time.</p><ul><li>Education:</li><li>High school degree or equivalent preferred</li></ul><br>\",\n                    \"date_added\": \"2025-03-06\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"La Crosse \",\n                        \"zip\": \"54603\",\n                        \"address1\": \"1920 Oak Street \",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"category\": \"Hospitality\",\n                    \"title\": \"New Openings\",\n                    \"id\": \"3280399\",\n                    \"type\": \"Temporary\"\n                }\n            ],\n            \"count\": \"2\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.037174\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-06-25T18:07:17\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.nextcrew.com/jobs?take=100&page=2&privacySettingId=3\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.365724\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"2 jobs returned\"\n}"}],"_postman_id":"dd339a37-a6cc-4517-aea4-49418e0d174f"},{"name":"Job Get By ID","id":"6b613728-528b-4f89-a2f8-9e9e3ebc4942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 3364506\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - job ID</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cbae7693-0cc1-4897-bb31-9f2866b3ffd8","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 3364506\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Jun 2025 18:08:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"579"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1870205"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"status\": \"Archived\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"La Crosse\",\n                        \"zip\": \"54603\",\n                        \"address1\": \"1920 Oak Street\",\n                        \"address2\": \"\",\n                        \"state\": \"WI\"\n                    },\n                    \"category\": \"Hospitality\",\n                    \"type\": \"Temporary\",\n                    \"title\": \"Restaurant Manager II\",\n                    \"id\": \"3364506\",\n                    \"description\": \"<p>This is a test job</p>\"\n                }\n            ],\n            \"count\": \"1\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.0736790000000001\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-06-25T18:08:06\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"nextcrew\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.nextcrew.com/job/3364506\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.398616\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"6b613728-528b-4f89-a2f8-9e9e3ebc4942"}],"id":"91a9fdd7-cd28-467d-97f6-d9186d4d797a","_postman_id":"91a9fdd7-cd28-467d-97f6-d9186d4d797a","description":""},{"name":"Note","item":[{"name":"Note Set","id":"e907cbb5-cd5d-4bad-a890-1767762c8e46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4,\r\n            \"comments\": \"This is a note\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For adding a candidate message</p>\n\n<ul>\n<li><p>ID - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>comments - <strong>REQUIRED</strong> - note being added</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 4,\n        \"comments\": \"This is a note\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4f4c3d45-accf-4d42-82ba-b5b75a149e4b","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4,\r\n            \"comments\": \"This is a note\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 May 2025 19:28:57 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"613"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"394491"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note Set\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-09T19:28:57\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-05-09T19:28:57\",\n            \"CALL_HEADERS\": \"$VAR1 = {\\n          'x-api-key' => '6740374275dc47d59cba47a332e7c0f5'\\n        };\\n\",\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXBpLnVzZXI6aVBhR2FYZHZIJkBDNjlHWVljUXc=\",\n            \"PAY_LOAD\": \"{\\\"values\\\":\\\"{\\\\\\\"privateLabelId\\\\\\\":\\\\\\\"1257\\\\\\\",\\\\\\\"api_request_custom\\\\\\\":{},\\\\\\\"loginId\\\\\\\":\\\\\\\"api.user\\\\\\\"}\\\",\\\"call\\\":\\\"https://api.nextcrew.com/authenticate\\\"}\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"nextcrew\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"privateLabelId\\\":\\\"1257\\\",\\\"password\\\":\\\"iPaGaXdvH&@C69GYYcQw\\\",\\\"loginId\\\":\\\"api.user\\\"}\",\n            \"call\": \"https://api.nextcrew.com/authenticate\"\n        },\n        \"vendor\": \"nextcrew\",\n        \"elapsed\": \"0.249928\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e907cbb5-cd5d-4bad-a890-1767762c8e46"}],"id":"fedeab2e-4edf-4fcb-acd4-16e12cc58344","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"fedeab2e-4edf-4fcb-acd4-16e12cc58344","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"4aaaeaaa-4cf9-4085-b96c-0f27314dc103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{nextcrew_api_id}}\",\r\n      \"api_un\": \"{{nextcrew_api_un}}\",\r\n      \"api_pw\": \"{{nextcrew_api_pw}}\",\r\n      \"api_secret\": \"{{nextcrew_api_secret}}\"\r\n    },\r\n    \"vendor\": \"nextcrew\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4aaaeaaa-4cf9-4085-b96c-0f27314dc103"}],"id":"5c0d6f1d-c830-4f5b-87f3-66e3a3026cf8","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"5c0d6f1d-c830-4f5b-87f3-66e3a3026cf8","description":""}],"id":"e6f39079-b93f-43b9-a827-88841a9896ad","description":"<p>NextCrew</p>\n<p>Overview</p>\n<p>This integration supports authentication, candidates, job....</p>\n","event":[{"listen":"prerequest","script":{"id":"7b9c071d-aaea-4ffe-989c-09555cd74c32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43e9e9bd-22af-4382-a723-77f164175720","type":"text/javascript","exec":[""]}}],"_postman_id":"e6f39079-b93f-43b9-a827-88841a9896ad"},{"name":"PCRecruiter","item":[{"name":"Authentication","item":[{"name":"Authentication","event":[{"listen":"test","script":{"id":"3e8d1c30-e5f3-4eff-9bdc-8293a241b83d","exec":["pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Response time is within acceptable range\", function () {","  pm.expect(pm.response.responseTime).to.be.below(1000);","});","","","pm.test(\"Api response object should have the correct structure\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData.api_response).to.be.an('object');","    pm.expect(responseData.api_response.api_data).to.exist;","    pm.expect(responseData.api_response.api_log).to.exist;","    pm.expect(responseData.api_response.api_status).to.exist;","    pm.expect(responseData.api_response.api_xstatus).to.exist;","});","","","pm.test(\"Verify the presence and structure of atsconnect_ticket object\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.atsconnect_ticket).to.exist.and.to.be.an('object');","});","","","pm.test(\"Check for the presence and structure of 'api_log' object\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.api_response.api_log).to.exist.and.to.be.an('object');","});","// Test to check if the password is visible in each object of the response","pm.test(\"Password is not visible in the response objects\", function () {","    const responseData = pm.response.json();","","    const checkPasswordVisibility = (obj) => {","        for (let key in obj) {","            if (typeof obj[key] === 'object') {","                checkPasswordVisibility(obj[key]);","            } else if (key.toLowerCase().includes('password') && obj[key]) {","                pm.expect.fail(`Password is visible in the response: ${key}`);","            }","        }","    };","","    checkPasswordVisibility(responseData);","});"],"type":"text/javascript","packages":{}}}],"id":"89d434e5-a040-47cb-9110-7b41c2ba3248","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_app_id\": \"{{api_app_id}}\",\n      \"api_key\": \"{{api_key}}\",\n      \"api_pw\": \"{{api_pw}}\",\n      \"api_un\": \"{{api_un}}\",\n      \"api_database_id\": \"{{api_database_id}}\"\n    },\n    \"vendor\": \"pcrecruiter\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {}\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/authenticate","description":"<p>This endpoint allows you to authenticate and connect to the ATS system. The request should be sent as an HTTP POST to {{ats-connect}}/authenticate with a payload containing the necessary API connection data.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p><code>api_connect_data</code> (object)</p>\n<ul>\n<li><p><code>api_connection</code> (object)</p>\n<ul>\n<li><p><code>api_app_id</code> (string): The ID of the API application.</p>\n</li>\n<li><p><code>api_key</code> (string): The API key for authentication.</p>\n</li>\n<li><p><code>api_pw</code> (string): The API password.</p>\n</li>\n<li><p><code>api_un</code> (string): The API username.</p>\n</li>\n<li><p><code>api_database_id</code> (string): The ID of the database.</p>\n</li>\n</ul>\n</li>\n<li><p><code>vendor</code> (string): The vendor name, e.g., \"pcrecruiter\".</p>\n</li>\n<li><p><code>api_sandbox</code> (number): Indicates whether the API is in sandbox mode (1 for true, 0 for false).</p>\n</li>\n<li><p><code>api_performance_dump</code> (number): Indicates whether to dump API performance data (1 for true, 0 for false).</p>\n</li>\n<li><p><code>api_verbose_dump</code> (number): Indicates whether to dump verbose API data (1 for true, 0 for false).</p>\n</li>\n</ul>\n</li>\n<li><p><code>api_request_data</code> (object): Additional request data, if any.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be in JSON format with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_response\": {\n    \"api_data\": {},\n    \"api_log\": {\n      \"CALL_ATTEMPTS\": 0,\n      \"CALL_STATUS\": 0,\n      \"CALL_REQUEST\": \"\",\n      \"CLIENT_ID\": null,\n      \"CALL_TIME\": \"\",\n      \"CALL_ACTION\": \"\",\n      \"TIMESTAMP\": \"\",\n      \"APIKEY\": \"\",\n      \"MESSAGE\": \"\",\n      \"VENDOR\": \"\"\n    },\n    \"api_status\": 0,\n    \"api_xstatus\": \"\"\n  },\n  \"atsconnect_status\": 0,\n  \"atsconnect_ticket\": {\n    \"api_version\": \"\",\n    \"request\": {\n      \"values\": \"\",\n      \"call\": \"\"\n    },\n    \"vendor\": \"\",\n    \"elapsed\": \"\",\n    \"key\": \"\",\n    \"fn\": \"\"\n  },\n  \"atsconnect_message\": \"\"\n}\n\n</code></pre>\n<p>This schema represents the structure of the response object returned upon authentication and connection to the ATS system.</p>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89d434e5-a040-47cb-9110-7b41c2ba3248"}],"id":"3e224dea-c802-48ee-bc37-1284fac89408","_postman_id":"3e224dea-c802-48ee-bc37-1284fac89408","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"ddbadc3c-5831-474b-938a-7d125ff9b39d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n        \"api_app_id\": \"{{api_app_id}}\",\n        \"api_key\": \"{{api_key}}\",\n        \"api_pw\": \"{{api_pw}}\",\n        \"api_un\": \"{{api_un}}\",\n        \"api_database_id\": \"{{api_database_id}}\"\n    },\n    \"vendor\": \"pcrecruiter\", \n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 140784484319417,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n        \"file_name\": \"Resume-2025-05-06.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8261b611-9371-4800-a96d-1cfb41b6b0de","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\", \n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 4,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n            \"file_name\": \"Resume-03-12-2025.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Mar 2025 17:55:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"380"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"33502"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 4\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.035305\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2025-03-13T17:55:25\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/file/add\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.118121\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"ddbadc3c-5831-474b-938a-7d125ff9b39d"}],"id":"fdb4e597-50dd-4f7a-815a-54cabe659e4d","_postman_id":"fdb4e597-50dd-4f7a-815a-54cabe659e4d","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"5d7f6703-9bbc-4512-abbc-68d608c5f1c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 140784484319417\r\n        // \"email\": \"akira0004@mailinator.com\"\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"94976ddf-e762-4832-a3d7-c2d689fc11bb","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"5d7f6703-9bbc-4512-abbc-68d608c5f1c7"},{"name":"Candidate Get Work History","id":"33f76ea3-b882-43d3-ad2f-36f4818bd1ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        // \"work_history_id\": 689427674811609\r\n        // \"work_history_id\": 205507537609537\r\n        \"work_history_id\": \"162467225033539\"\r\n        // \"work_history_id\": 111788139774427\r\n        // \"work_history_id\": 162179442880664\r\n        // \"id\": 161906570672792\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For retrieving candidate work history.</p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ab161c0b-5ced-4997-9e56-9ebb6a104eae","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"33f76ea3-b882-43d3-ad2f-36f4818bd1ef"},{"name":"Candidate Get Education","id":"fb071c2f-fdbb-4a36-827b-469b52c564aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        // \"work_history_id\": 689427674811609\r\n        // \"work_history_id\": 205507537609537\r\n        // \"education_id\": 578543425531744,\r\n        \"id\": 161906570672792\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For retrieving candidate work history.</p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ce69702b-b51a-40e9-a5e3-bfdbbd687261","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"fb071c2f-fdbb-4a36-827b-469b52c564aa"},{"name":"Candidate Set Work History","id":"8e722933-666d-46e4-9a60-c2b36517de45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 161906570672792,\r\n        // \"work_history_id\": 142927005485950,\r\n        \"start_date\": \"2018-06-01\",\r\n        \"end_date\": \"2022-08-15\",\r\n        \"company_name\": \"Tech Solutions Inc.\",\r\n        \"title\": \"Senior Software Engineer\",\r\n        \"description\": \"Led backend development and cloud migration efforts.\",\r\n        \"city\": \"Buffalo\",\r\n        \"state\": \"NY\",\r\n        \"country\": \"USA\",\r\n        \"zip\": \"14202\",\r\n        \"supervisor\": \"Jane Doe\",\r\n        \"supervisor_title\": \"Engineering Manager\",\r\n        \"supervisor_phone\": \"555-123-4567\",\r\n        \"supervisor_email\": \"jane.doe@techsolutions.com\",\r\n        \"starting_salary\": 85000,\r\n        \"ending_salary\": 95000,\r\n        \"termination_reason\": \"Pursued new opportunities\",\r\n        \"permission_to_contact\": \"Yes\",\r\n        \"is_current_position\": false,\r\n        \"starting_job_title\": \"Software Engineer\",\r\n        \"notes\": \"Promoted twice. Excellent performance reviews.\",\r\n        \"company_phone\": \"555-987-6543\",\r\n        \"address\": \"123 Innovation Drive, Suite 400\"\r\n\r\n        // \"start_date\": \"2012-07-01\",\r\n        // \"end_date\": \"2015-02-28\",\r\n        // \"company_name\": \"The Bowerman Group\",\r\n        // \"company_id\": \"350915079860202\",\r\n        // \"title\": \"IT Support Specialist\",\r\n        // \"description\": \"Provided technical support and assisted with internal infrastructure upgrades.\",\r\n        // \"city\": \"Syracuse\",\r\n        // \"state\": \"NY\",\r\n        // \"country\": \"USA\",\r\n        // \"zip\": \"13202\",\r\n        // \"supervisor\": \"Marla Jennings\",\r\n        // \"supervisor_title\": \"IT Director\",\r\n        // \"supervisor_phone\": \"555-222-3344\",\r\n        // \"supervisor_email\": \"mjennings@bytelogic.com\",\r\n        // \"starting_salary\": 42000,\r\n        // \"ending_salary\": 52000,\r\n        // \"termination_reason\": \"Relocated to pursue software development career\",\r\n        // \"permission_to_contact\": \"Yes\",\r\n        // \"is_current_position\": false,\r\n        // \"starting_job_title\": \"Help Desk Technician\",\r\n        // \"notes\": \"Recognized for outstanding customer support.\",\r\n        // \"company_phone\": \"555-333-4444\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For retrieving candidate work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8da3ea3a-1baa-4fa5-863b-3cffa01c4864","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"8e722933-666d-46e4-9a60-c2b36517de45"},{"name":"Candidate Set Education","id":"c36d7973-ef3a-425d-8405-774f103e8b14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 161906570672792,\r\n        // \"education_id\": 123456789,\r\n        \"school\": \"University of Innovation\",\r\n        \"address\": \"456 Academic Lane\",\r\n        \"city\": \"Springfield\",\r\n        \"state\": \"IL\",\r\n        \"zip\": \"62704\",\r\n        \"country\": \"USA\",\r\n        \"degree\": \"Bachelor's\",\r\n        \"major\": \"Computer Science\",\r\n        \"minor\": \"Mathematics\",\r\n        \"major_2\": \"Data Science\",\r\n        \"minor_2\": \"Physics\",\r\n        \"gpa\": \"3.8\",\r\n        \"grades\": \"A\",\r\n        \"start_date\": \"2014-09-01T00:00:00\",\r\n        \"end_date\": \"2018-06-15T00:00:00\",\r\n        \"comments\": \"Graduated with honors. Active in student government and tech club.\",\r\n        \"date_entered\": \"2018-06-20T00:00:00\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For retrieving candidate work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ac4f6ba4-01e4-4620-b0db-ba23547f3dd2","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"c36d7973-ef3a-425d-8405-774f103e8b14"},{"name":"Candidate Set","event":[{"listen":"test","script":{"id":"7c737af6-d99a-4273-a792-bb6e0350df6d","exec":["// Fixed duplicate test","pm.test(\"Response time is less than 1000ms\", function () {","  pm.expect(pm.response.responseTime).to.be.below(1000);","});","","pm.test(\"Validate the structure of the api_response object\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.api_response).to.exist.and.to.be.an('object');","    pm.expect(responseData.api_response.api_data).to.exist.and.to.be.an('object');","    pm.expect(responseData.api_response.api_log).to.exist.and.to.be.an('object');","    pm.expect(responseData.api_response.api_status).to.exist;","    pm.expect(responseData.api_response.api_xstatus).to.exist;","});","","pm.test(\"Api_data object contains expected fields\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.api_response.api_data).to.be.an('object');","    ","    pm.expect(responseData.api_response.api_data).to.have.property('CandidateId');  // Updated property name to \"id\"","});","","pm.test(\"Validate candidate creation and field values dynamically\", function () {","    const responseData = pm.response.json();","","    // Basic structure validation","    pm.expect(responseData).to.have.property(\"api_response\");","    pm.expect(responseData.api_response).to.have.property(\"api_data\");","    pm.expect(responseData.api_response.api_data).to.have.property(\"CandidateId\");","    pm.expect(responseData.api_response.api_data.CandidateId).to.be.a('number');","","    pm.expect(responseData.api_response).to.have.property(\"api_status\", 1);","    pm.expect(responseData.api_response).to.have.property(\"api_xstatus\", \"Candidate created successfully\");","","    // Parse the original request data","    const requestBody = JSON.parse(pm.request.body.raw);","    const requestCandidate = requestBody.api_request_data.api_request_query;","","    // Parse echoed response values","    const echoedValues = JSON.parse(responseData.atsconnect_ticket.request.values);","","    // Field mappings: request → response","    const fieldMap = {","        \"email\": \"EmailAddress\",","        \"first_name\": \"FirstName\",","        \"last_name\": \"LastName\",","        \"phone\": \"HomePhone\",","        \"cell_phone\": \"MobilePhone\",","        \"address1\": \"Address\",","        \"city\": \"City\",","        \"state\": \"State\",","        \"zip\": \"PostalCode\"","    };","","    // Validate each mapped field","    for (let key in fieldMap) {","        const requestValue = requestCandidate[key];","        const responseKey = fieldMap[key];","        const responseValue = echoedValues[responseKey];","","        pm.expect(responseValue, `Mismatch in field ${key}`).to.eql(requestValue);","","        if ([\"email\", \"phone\", \"cell_phone\"].includes(key)) {","            if (key === \"email\") {","                pm.expect(responseValue).to.match(/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/);","            } else {","                pm.expect(responseValue).to.match(/^(\\(?\\d{3}\\)?[-.\\s]?){2}\\d{4}$/);","            }","        }","","        if ([\"first_name\", \"last_name\"].includes(key)) {","            pm.expect(responseValue).to.be.a('string').and.not.empty;","        }","    }","});","","","pm.test(\"Validate the structure of the entire response\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('api_response').that.is.an('object');","    pm.expect(responseData).to.have.property('atsconnect_status').that.is.a('number');","    pm.expect(responseData).to.have.property('atsconnect_ticket').that.is.an('object');","    pm.expect(responseData).to.have.property('atsconnect_message').that.is.a('string');","});","pm.test(\"Validate atsconnect_ticket.request.values matches request input (with mapping)\", function () {","    const jsonData = pm.response.json();","","    // Parse response values (stringified JSON)","    const valuesStr = jsonData.atsconnect_ticket?.request?.values;","    pm.expect(valuesStr, \"Response 'values' field should exist\").to.be.a(\"string\");","    const responseValues = JSON.parse(valuesStr);","","    // Original request body","    const requestBody = JSON.parse(request.data);","    const requestQuery = requestBody.api_request_data.api_request_query;","","    // Define mapping from request keys to response keys","    const keyMap = {","        first_name: \"FirstName\",","        last_name: \"LastName\",","        email: \"EmailAddress\",","        state: \"State\",","        address1: \"Address\",","        zip: \"PostalCode\",","        city: \"City\",","        phone: \"HomePhone\",","        cell_phone: \"MobilePhone\"","    };","","    // Loop through mapping and validate each field","    for (let reqKey in keyMap) {","        const resKey = keyMap[reqKey];","        pm.expect(responseValues, `Response should contain ${resKey}`).to.have.property(resKey);","        pm.expect(responseValues[resKey], `Mismatch in field '${resKey}'`).to.eql(requestQuery[reqKey]);","    }","});","",""],"type":"text/javascript","packages":{}}}],"id":"06153698-de49-4fc4-b95d-8d10ee65ace7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \r\n        \"first_name\": \"Jyryll\",\r\n        \"last_name\": \"Lachica\",\r\n        \"email\": \"jlachica123@haleymarketing.com\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"159 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"phone\":\"8199300244\",        \r\n        \"cell_phone\":\"288.010.1214\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting/updating candidate data.</p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"01fa9da0-e4df-4bca-b9c4-00038b8a4b06","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"06153698-de49-4fc4-b95d-8d10ee65ace7"}],"id":"97570f91-47fd-45f1-a7ca-7b6c3da4add5","_postman_id":"97570f91-47fd-45f1-a7ca-7b6c3da4add5","description":""},{"name":"Note","item":[{"name":"Note Set","id":"3537898c-d0dd-463e-bb50-57b13bfb8ea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 140784484319417,\r\n        \"comments\": \"This is a note\"\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For setting candidate note.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5fb119b0-3d8d-4881-ad06-89ebea3c9726","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"3537898c-d0dd-463e-bb50-57b13bfb8ea9"}],"id":"2283c5c9-7cf3-4cc4-85e8-2d323bac9029","_postman_id":"2283c5c9-7cf3-4cc4-85e8-2d323bac9029","description":""},{"name":"Job","item":[{"name":"Job Get","id":"9abdc143-4222-4adc-ab19-6d66f336e012","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n        \"api_app_id\": \"{{api_app_id}}\",\r\n        \"api_key\": \"{{api_key}}\",\r\n        \"api_pw\": \"{{api_pw}}\",\r\n        \"api_un\": \"{{api_un}}\",\r\n        \"api_database_id\": \"{{api_database_id}}\"\r\n    },\r\n    \"vendor\": \"pcrecruiter\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n            // \"id\": \"St.Laurent01\"\r\n            \"title\":\"Watchmaker\"\r\n            // \"status\": \"\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/","description":"<h3 id=\"pcrecruiter-job-get-ats-connect\">PCRecruiter Job Get (ATS-Connect)</h3>\n<p>For retrieving jobs from PCRecruiter PositionsV2. When <code>id</code> is provided, retrieves a single job by <code>GET /positionsV2/{id}</code>. Without <code>id</code>, performs a search using a <code>query</code> built from the fields below and adds <code>orderby/top/skip/count</code>.</p>\n<p>Reference: <a href=\"https://www.pcrecruiter.net/APIDOCS_V2/a5d246614a00c-retrieve-a-n-position-v2-record\">PCRecruiter Positions V2 – Retrieve a(n) Position V2 record</a></p>\n<h4 id=\"request-body\">Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_app_id\": \"{{api_app_id}}\",\n      \"api_key\": \"{{api_key}}\",\n      \"api_pw\": \"{{api_pw}}\",\n      \"api_un\": \"{{api_un}}\",\n      \"api_database_id\": \"{{api_database_id}}\"\n    },\n    \"vendor\": \"pcrecruiter\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      // (See Supported Parameters below)\n    }\n  }\n}\n\n</code></pre>\n<h4 id=\"supported-parameters-api_request_query\">Supported Parameters (api_request_query)</h4>\n<ul>\n<li><p>Filters (combined with AND unless grouped):</p>\n<ul>\n<li><p><code>status</code> → Status eq '...'</p>\n</li>\n<li><p><code>title</code> → JobTitle co '...'</p>\n</li>\n<li><p><code>company_name</code> → CompanyName co '...'</p>\n</li>\n<li><p><code>keywords</code> → (JobTitle co '...' OR JobDescription co '...')</p>\n</li>\n<li><p><code>city</code> → City eq '...'</p>\n</li>\n<li><p><code>state</code> → State eq '...'</p>\n</li>\n<li><p><code>country</code> → Country eq '...'</p>\n</li>\n<li><p><code>type</code> → JobType eq '...'</p>\n</li>\n<li><p><code>department</code> → Department eq '...'</p>\n</li>\n<li><p><code>date_added_from</code> → DatePosted ge 'YYYY-MM-DD'</p>\n</li>\n<li><p><code>date_added_to</code> → DatePosted le 'YYYY-MM-DD'</p>\n</li>\n<li><p><code>pay_rate_min</code> → MinSalary/Value ge</p>\n</li>\n<li><p><code>pay_rate_max</code> → MaxSalary/Value le</p>\n</li>\n</ul>\n</li>\n<li><p>Pagination/Sorting:</p>\n<ul>\n<li><p><code>limit</code> (default 100) → top</p>\n</li>\n<li><p><code>offset</code> (default 0) → skip</p>\n</li>\n<li><p><code>order_by</code> (default DatePosted) + <code>order_direction</code> (asc|desc) → orderby (e.g., DatePosted desc)</p>\n</li>\n</ul>\n</li>\n<li><p>Vendor pass-through (optional; forwarded to PositionsV2): <code>Fields</code>, <code>FieldsPlus</code>, <code>FieldsMinus</code>, <code>Custom</code>, <code>Eeoc</code>, <code>SubrecordFilter</code> (string or array)</p>\n</li>\n<li><p>Direct by ID: <code>id</code> → calls GET /positionsV2/{id} and ignores search filters</p>\n</li>\n</ul>\n<h4 id=\"query-operators\">Query Operators</h4>\n<ul>\n<li><p>Relational: eq, ne, gt, lt, ge, le, sw (starts with), ew (ends with), co (contains)</p>\n</li>\n<li><p>Logical: AND, OR</p>\n</li>\n<li><p>Grouping: parentheses supported, e.g. (State eq 'TX' OR State eq 'CA')</p>\n</li>\n<li><p>Escape values that equal operator keywords with backslash, e.g. State eq \\OR</p>\n</li>\n</ul>\n<h4 id=\"examples\">Examples</h4>\n<ul>\n<li><p>{\"api_request_query\": { \"status\": \"Open\", \"limit\": 100, \"offset\": 0, \"order_by\": \"DatePosted\", \"order_direction\": \"desc\"}}</p>\n</li>\n<li><p>{\"api_request_query\": { \"title\": \"Developer\", \"keywords\": \"JavaScript\", \"limit\": 50, \"offset\": 0, \"order_by\": \"DatePosted\", \"order_direction\": \"desc\", \"date_added_from\": \"2025-01-01\", \"date_added_to\": \"2025-10-01\", \"pay_rate_min\": 60000, \"pay_rate_max\": 120000}}</p>\n</li>\n<li><p>{\"api_request_query\": { \"id\": \"102054701750551\" }}</p>\n</li>\n<li><p>{\"api_request_query\": { \"status\": \"Open\", \"FieldsPlus\": \"CompanyName,UserName\", \"SubrecordFilter\": [ \"Company.CompanyName eq 'Acme'\", \"Positions.JobTitle co 'Engineer'\" ]}}</p>\n</li>\n</ul>\n<p>Typical success response (shape):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"ok\",\n  \"xstatus\": \"N of M jobs returned\",\n  \"data\": {\n    \"count\": N,\n    \"total_count\": M,\n    \"jobs\": [ { \"...mapped ATS-Connect job fields...\" } ],\n    \"pagination\": { \"limit\": 50, \"offset\": 0, \"has_more\": true }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6b02baeb-0323-44f6-9cbd-c8eccd94ff81","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_id\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Feb 2025 19:46:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"8411"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"743"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"department\": \"Marketing\",\n                    \"pay_rate\": \"$100,000 - $120,000 / year\",\n                    \"name\": \"Space Travel Financial Analyst\",\n                    \"company_name\": \"Avengers\",\n                    \"experience\": \"8 - 10 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">â\\u0080\\u008a</span>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ready to take your financial skills to infinity and beyond? The Avengers are searching for a stellar Space Travel Financial Analyst to join our team. Under the mentorship of Steve Rogers and Peter Parker, you'll be responsible for managing the financial aspects of our intergalactic operations.</span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Budget Management:</strong> Oversee and manage budgets for space travel missions. Ensure that we&rsquo;re saving the universe without breaking the bank.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Cost Analysis:</strong> Analyze the costs associated with space missions, from rocket fuel to alien negotiations. Your keen eye for detail will keep our expenses in check.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Planning:</strong> Develop comprehensive financial plans for upcoming missions. Anticipate and plan for the unexpected in the vast expanse of space.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Resource Allocation:</strong> Allocate resources efficiently to ensure all missions are well-funded and equipped for success.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Expense Reporting:</strong> Track and report expenses for each mission. Ensure transparency and accountability in all financial matters.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Risk Management:</strong> Identify and mitigate financial risks associated with space travel. Provide strategic advice to Steve Rogers and Peter Parker.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Expertise:</strong> Strong background in finance, accounting, or a related field. Experience with space travel budgeting is a plus.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Analytical Skills:</strong> Exceptional analytical skills to evaluate costs, benefits, and financial risks.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Attention to Detail:</strong> Meticulous attention to detail to manage complex budgets and financial plans.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Problem-Solving:</strong> Creative problem-solving skills to navigate the unique challenges of intergalactic finances.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Communication:</strong> Excellent communication skills to present financial information to the Avengers team.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Epic Mentorship:</strong> Work alongside Captain America, Steve Rogers, and your friendly neighborhood Spider-Man, Peter Parker.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intergalactic Adventures:</strong> Be part of missions that take you across the cosmos.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Advanced Technology:</strong> Access to cutting-edge financial tools and technology from Stark Industries.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Team Collaboration:</strong> Join a team dedicated to saving the world and beyond.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">If you&rsquo;re ready to apply your financial expertise to the adventures of space travel and contribute to the Avengers&rsquo; mission of protecting the universe, we want to hear from you!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Submit your application and embark on an exciting journey with the Avengers. For more information, contact Steve Rogers and Peter Parker at Avengers HQ. Your interstellar financial adventure awaits!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Steve Rogers and Peter Parker, Avengers HQ</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">&ldquo;Balancing the universe&rsquo;s budget, one mission at a time.&rdquo;</span></p>\\n</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"id\": 5,\n                    \"title\": \"Space Travel Financial Analyst\"\n                },\n                {\n                    \"department\": \"Sales\",\n                    \"pay_rate\": \"$65,000 - $85,000 / month\",\n                    \"name\": \"Assistant Regional Manager\",\n                    \"company_name\": \"Dunder Mifflin Scranton\",\n                    \"experience\": \"3 - 5 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">â\\u0080\\u008a\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you ready to climb the corporate ladder and make paper great again? Dunder Mifflin Scranton is on the lookout for a dynamic and enthusiastic Assistant Regional Manager to join our team. Reporting to David Wallace and Ryan Howard, you&rsquo;ll play a crucial role in managing the daily operations of the Scranton branch.</p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Team Support:</strong> Assist the Regional Manager in overseeing branch operations, ensuring everything runs smoothly from sales to supplies.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Sales Strategy:</strong> Contribute to the development and implementation of effective sales strategies to drive revenue growth.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Customer Relations:</strong> Maintain strong relationships with clients, providing exceptional service to keep them satisfied and loyal.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Operational Efficiency:</strong> Monitor and improve operational processes to enhance productivity and efficiency within the branch.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Employee Engagement:</strong> Motivate and support team members, fostering a positive and collaborative work environment.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Problem-Solving:</strong> Address and resolve any issues that arise in the office, from customer complaints to supply shortages.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Reporting:</strong> Prepare and present regular reports on sales performance, operational metrics, and other key indicators to senior management.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Leadership Skills:</strong> Proven ability to lead and inspire a team, with strong interpersonal and communication skills.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Sales Acumen:</strong> Solid understanding of sales principles and techniques, with a track record of achieving sales targets.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Organizational Skills:</strong> Excellent organizational and multitasking abilities to manage various tasks efficiently.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Problem-Solving:</strong> Creative problem-solving skills to handle unexpected challenges in a fast-paced environment.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Experience:</strong> Previous experience in a managerial or supervisory role, preferably in sales or office management.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Career Growth:</strong> Opportunity to grow within the company and eventually become the Regional Manager.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Supportive Team:</strong> Work with a dedicated team in a fun and friendly office atmosphere.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Professional Development:</strong> Access to training and development programs to enhance your skills and advance your career.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Competitive Salary:</strong> Attractive compensation package with performance-based incentives.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Join Dunder Mifflin Scranton and be part of a company that values hard work, dedication, and a good sense of humor. If you&rsquo;re ready to take on this exciting role and make a significant impact, we want to hear from you!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Submit your application and become a key player in the success of Dunder Mifflin Scranton. For more information, contact David Wallace and Ryan Howard. Your journey to becoming the next Assistant Regional Manager starts here!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">David Wallace and Ryan Howard, Dunder Mifflin Scranton</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">&ldquo;Where every paper counts, and every employee makes a difference.&rdquo;</p>\\n</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"id\": 6,\n                    \"title\": \"Assistant Regional Manager\"\n                },\n                {\n                    \"department\": \"Culinary\",\n                    \"pay_rate\": \"$200 - $300 / week\",\n                    \"name\": \"Asst. Chef\",\n                    \"company_name\": \"Javu Restaurant\",\n                    \"experience\": \"1 - 3 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you ready to spice up your culinary career? Javu Restaurant, home to the finest fusion cuisine this side of Manhattan, is seeking a talented and enthusiastic Assistant Chef to join our kitchen team. Reporting to the culinary mastermind Monica Geller Bing, you&rsquo;ll play a vital role in creating mouthwatering dishes that delight our guests and keep them coming back for more.</p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Sous Sensation:</strong> Assist Chef Monica in executing her culinary vision with precision and flair. From prep work to plating, you&rsquo;ll be Monica&rsquo;s right-hand culinary connoisseur.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Recipe Revolution:</strong> Collaborate with Chef Monica to develop and refine innovative recipes that showcase the bold flavors and unique ingredients of Javu&rsquo;s cuisine.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Kitchen Command:</strong> Maintain order and efficiency in the kitchen, ensuring smooth operations during busy service hours. Think fast, act fast, cook fast!</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Ingredient Investigation:</strong> Source the freshest, highest quality ingredients from local suppliers and farmers&rsquo; markets. We only serve the best to our discerning diners.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Taste Testing:</strong> Participate in regular taste tests and menu samplings to ensure that every dish meets Chef Monica&rsquo;s exacting standards of taste and presentation.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Creative Collaboration:</strong> Bring your own culinary creativity to the table and contribute ideas for new dishes, specials, and seasonal menus.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Culinary Chops:</strong> Solid culinary skills with a passion for cooking and a keen palate for flavors. Formal culinary training or equivalent experience preferred.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Team Player:</strong> Ability to work collaboratively in a fast-paced kitchen environment. We&rsquo;re a tight-knit team, so a positive attitude and good communication skills are a must.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Adaptability:</strong> Flexibility to adapt to changing menus, priorities, and kitchen dynamics. No two days are the same at Javu, and we thrive on variety.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Attention to Detail:</strong> Meticulous attention to detail to ensure that every dish meets our exacting standards of taste, presentation, and consistency.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Passion for Food:</strong> A genuine love for food and a desire to delight our guests with memorable dining experiences. After all, food is our love language at Javu!</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Culinary Creativity:</strong> Opportunity to work alongside Chef Monica Geller Bing, a culinary genius with a passion for pushing culinary boundaries.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Gourmet Education:</strong> Learn from the best in the business and expand your culinary repertoire with new techniques, ingredients, and cuisines.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Restaurant Rewards:</strong> Enjoy discounts on delicious meals and drinks at Javu Restaurant, because even chefs need to indulge now and then.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Career Growth:</strong> Room for growth and advancement within our growing restaurant group. Your culinary career is only limited by your imagination.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Join Javu Restaurant and embark on a culinary adventure unlike any other. If you&rsquo;re ready to unleash your culinary creativity and become part of our kitchen dream team, we want to hear from you!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Submit your application and let your culinary talents shine at Javu Restaurant. For more information, contact Monica Geller Bing. Get ready to stir up some magic in our kitchen!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Monica Geller Bing, Javu Restaurant</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">&ldquo;Where passion meets palate, and every dish tells a story.&rdquo;</p>\\n</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"id\": 3,\n                    \"title\": \"Asst. Chef\"\n                },\n                {\n                    \"department\": \"Human Resource\",\n                    \"pay_rate\": \"$170,000 - $190,000 / year\",\n                    \"name\": \"Head of Talent Acquisition\",\n                    \"company_name\": \"Avengers\",\n                    \"experience\": \"5 - 7 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">&nbsp;</div>\\n<h1 style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">Job Description: Head of Talent Acquisition</h1>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<p style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">The Head of Talent Acquisition is responsible for leading and managing the talent acquisition team. The ideal candidate will have a proven track record of success in talent acquisition, sourcing, and hiring.</p>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<p style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">Responsibilities:</p>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<ul style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<li>Lead and manage the talent acquisition team</li>\\n<li>Develop and execute talent acquisition strategies</li>\\n<li>Source and recruit top talent</li>\\n<li>Conduct interviews and make hiring decisions</li>\\n<li>Develop and maintain relationships with key stakeholders</li>\\n<li>Monitor and evaluate the performance of the talent acquisition team</li>\\n</ul>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<p style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">Qualifications:</p>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<ul style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<li>Bachelor's degree in human resources, business, or a related field</li>\\n<li>5+ years of experience in talent acquisition</li>\\n<li>Proven track record of success in sourcing, recruiting, and hiring top talent</li>\\n<li>Strong leadership and management skills</li>\\n<li>Excellent communication and interpersonal skills</li>\\n<li>Ability to work independently and as part of a team</li>\\n</ul>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<p style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">&nbsp;</p>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">&nbsp;</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"id\": 4,\n                    \"title\": \"Head of Talent Acquisition\"\n                },\n                {\n                    \"department\": \"Admin\",\n                    \"pay_rate\": \"$5,000 - $8,000 / month\",\n                    \"name\": \"(K)night Security Specialist\",\n                    \"company_name\": \"Wayne Enterprises\",\n                    \"experience\": \"5 - 7 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you a vigilant guardian of the night, ready to defend the realm of Wayne Enterprises from the shadows? Wayne Enterprises is seeking a dynamic and resourceful individual to join our elite security team as a (K)night Security Specialist. Under the watchful eye of Bruce Wayne himself, you'll protect our corporate headquarters and ensure the safety of our employees, clients, and classified secrets.</p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Dark Knight Duties:</strong> Embrace the mantle of the Dark Knight as you patrol the halls of Wayne Enterprises, ever vigilant against threats both mundane and malevolent. With Bruce Wayne as your mentor, you'll learn the art of stealth and the science of surveillance, honing your skills to perfection.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Vigilante Vigilance:</strong> Keep a watchful eye on our state-of-the-art security systems, detecting and neutralizing any anomalies or intrusions with the efficiency of a trained operative. From monitoring CCTV feeds to conducting perimeter sweeps, you'll be the first line of defense against any threat to our corporate sanctum.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Gotham Guardian:</strong> Collaborate with local law enforcement agencies and private security firms to coordinate security operations and respond to emergent threats in Gotham City. Whether it's apprehending petty thieves or thwarting supervillain schemes, you'll be a beacon of hope in the dark streets of Gotham.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Batcave Backup:</strong> Assist Bruce Wayne in maintaining the security of his clandestine crime-fighting operations, ensuring the secrecy and integrity of the Batcave and its associated assets. Your discretion and loyalty will be crucial in safeguarding Batman's identity and protecting his allies.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Wayne Wisdom:</strong> Learn from the best and absorb the wisdom of Bruce Wayne, a master strategist and martial artist with decades of experience in the field of security and surveillance. His mentorship will empower you to become a formidable force for justice in Gotham City and beyond.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Dark Knight Diploma:</strong> A background in law enforcement, military service, or private security, with a proven track record of excellence in security operations. Previous experience in covert operations or clandestine surveillance is highly desirable.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Gotham Grit:</strong> A fearless attitude and a commitment to upholding the values of justice and integrity, even in the face of adversity. Familiarity with the unique challenges of urban security in Gotham City is a plus.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Bat-Skills:</strong> Proficiency in a wide range of security technologies and techniques, including CCTV surveillance, access control systems, and threat assessment protocols. Additional training in hand-to-hand combat and tactical firearms is advantageous.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Wayne Wits:</strong> Exceptional problem-solving skills and the ability to think quickly on your feet, adapting to rapidly changing situations with grace and precision. A keen intellect and a sharp eye for detail are essential traits for success in this role.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Bat-Benefits:</strong> A commitment to the greater good and a desire to make a positive impact on the world. In addition to a competitive salary and benefits package, you'll have the opportunity to work alongside Bruce Wayne and contribute to his ongoing mission to protect Gotham City from the forces of darkness.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Wayne Wealth:</strong> Competitive salary and benefits package, including medical, dental, and vision coverage, as well as retirement savings options and generous vacation days.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Bat-Bonds:</strong> Join a tight-knit team of security professionals who share a common goal of protecting Wayne Enterprises and serving the greater good. Forge lasting bonds of camaraderie and friendship as you work together to safeguard our corporate interests.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Batmobile Access:</strong> Access to state-of-the-art security vehicles and equipment, including the latest in surveillance technology and tactical gear. From Batmobiles to Batarangs, you'll have everything you need to maintain order and keep Gotham safe.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Wayne Wisdom:</strong> Learn from the best and receive mentorship from Bruce Wayne himself, gaining invaluable insights into the world of security and surveillance from a true master of the craft.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Batcave Benefits:</strong> Gain access to the legendary Batcave and become part of Batman's inner circle, assisting in his ongoing mission to protect Gotham City from the forces of evil. Your contributions will be instrumental in preserving the safety and security of the citizens of Gotham.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you ready to answer the call of duty and become a (K)night Security Specialist at Wayne Enterprises? Submit your application today and join Bruce Wayne in his never-ending quest for justice and security. Gotham awaits its next guardian. Apply now!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Bruce Wayne, Wayne Enterprises</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">&ldquo;Protecting Gotham City, one (K)night at a time.&rdquo;</p>\\n</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Gotham\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"id\": 1,\n                    \"title\": \"(K)night Security Specialist\"\n                },\n                {\n                    \"department\": \"R&D\",\n                    \"pay_rate\": \"$200 - $300 / week\",\n                    \"name\": \"Theoretical Physics Research Intern\",\n                    \"company_name\": \"Stanford University\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you ready to unlock the secrets of the universe and boldly go where no intern has gone before? Stanford University's Department of Theoretical Physics is seeking a brilliant and slightly eccentric individual to join our team as a Theoretical Physics Research Intern. Under the meticulous guidance of Dr. Sheldon Cooper, you'll dive headfirst into the mind-bending world of theoretical physics and embark on a journey of intellectual exploration that will challenge your intellect and expand your horizons.</p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Cosmic Conundrums:</strong> Dive deep into the mysteries of the cosmos and explore the fundamental principles that govern the universe. From black holes to quantum mechanics, you'll tackle the biggest questions in physics with Sheldon as your guide.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Equation Euphoria:</strong> Roll up your sleeves and immerse yourself in the world of equations, formulas, and mathematical marvels. With Sheldon's expertise, you'll decipher complex equations and uncover the beauty hidden within their elegant simplicity.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Revelations:</strong> Assist Dr. Cooper in conducting groundbreaking research that pushes the boundaries of theoretical physics. Your keen analytical mind and insatiable curiosity will be invaluable assets as you unravel the mysteries of the universe.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Lab Liaison:</strong> Collaborate with fellow researchers and scientists in Stanford's state-of-the-art laboratories. From late-night brainstorming sessions to heated debates over coffee, you'll be at the heart of the action, surrounded by the brightest minds in the field.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Presentation Prowess:</strong> Sharpen your communication skills and learn to articulate your ideas with clarity and precision. Under Sheldon's mentorship, you'll have the opportunity to present your research findings at conferences and seminars, making your mark on the world of physics.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Quantum Quotient:</strong> A passion for theoretical physics and a solid understanding of advanced mathematical concepts. Previous coursework or research experience in physics, mathematics, or related fields is highly desirable.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Analytical Acumen:</strong> Strong analytical and problem-solving skills, with the ability to think critically and creatively about complex scientific problems.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Rigor:</strong> Excellent research skills and attention to detail, with the ability to conduct thorough literature reviews and analyze experimental data.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Collaborative Spirit:</strong> A team player with excellent interpersonal skills, able to work effectively in a collaborative research environment.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intellectual Curiosity:</strong> An insatiable curiosity about the nature of the universe and a relentless drive to unravel its mysteries. A healthy skepticism and a willingness to question conventional wisdom are encouraged.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intellectual Stimulation:</strong> Engage in intellectually stimulating research projects that will challenge and inspire you.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Mentorship:</strong> Receive guidance and mentorship from Dr. Sheldon Cooper, a renowned theoretical physicist with a passion for pushing the boundaries of scientific knowledge.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Opportunities:</strong> Access to cutting-edge research facilities and resources at Stanford University, including state-of-the-art laboratories and computational resources.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Networking:</strong> Connect with leading scientists and researchers in the field of theoretical physics, expanding your professional network and forging valuable connections for your future career.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Personal Growth:</strong> Develop valuable skills and expertise that will serve you well in your academic and professional pursuits, laying the foundation for a successful career in theoretical physics.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Join Dr. Sheldon Cooper and the Stanford University research team on a quest to unravel the mysteries of the cosmos. If you're ready to boldly go where no intern has gone before, apply now!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Submit your application and embark on an extraordinary journey of discovery with Dr. Sheldon Cooper at Stanford University. For more information, contact Sheldon Cooper. Warp speed ahead!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Sheldon Cooper, Stanford University</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">&ldquo;Where the pursuit of knowledge knows no bounds, and curiosity is the engine of discovery.&rdquo;</p>\\nâ\\u0080\\u008a</div>\",\n                    \"date_added\": \"2024-12-28\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"Singapore\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 2,\n                    \"title\": \"Theoretical Physics Research Intern\",\n                    \"type\": \"Contingent\"\n                }\n            ],\n            \"count\": \"6\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.622758\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-25T19:47:00\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"6 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/job/list/?include_count=true&include_description=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.699309\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"6 jobs returned\"\n}"}],"_postman_id":"9abdc143-4222-4adc-ab19-6d66f336e012"}],"id":"74845a65-2704-4157-b4aa-bbd1c8b7a225","_postman_id":"74845a65-2704-4157-b4aa-bbd1c8b7a225","description":""},{"name":"Application","item":[{"name":"Application Get","id":"3853a2f8-334b-4c82-adf5-33cb6bf3accc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"api_connect_data\": {\r\n        \"api_connection\": {\r\n            \"api_app_id\": \"{{api_app_id}}\",\r\n            \"api_key\": \"{{api_key}}\",\r\n            \"api_pw\": \"{{api_pw}}\",\r\n            \"api_un\": \"{{api_un}}\",\r\n            \"api_database_id\": \"{{api_database_id}}\"\r\n        },\r\n        \"vendor\": \"pcrecruiter\",\r\n        \"api_sandbox\": 1,\r\n        \"api_performance_dump\": 1,\r\n        \"api_verbose_dump\": 1\r\n    },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": \"210019226847858\"\r\n            // \"email\": \"akira0004@mailinator.com\"\r\n        }\r\n    }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<h2 id=\"get-application\">GET Application</h2>\n<p>Retrieve one or more applications from PCRecruiter.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET /application</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>All parameters are sent in the <code>api_request_data.api_request_query</code> object.</p>\n<h4 id=\"operation-1-get-application-by-id\">Operation 1: Get Application by ID</h4>\n<p>Retrieve a specific application by its application ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>application_id</code></td>\n<td>integer</td>\n<td><strong>Yes</strong></td>\n<td>The unique SendoutId/InterviewId of the application</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"vendor\": \"pcrecruiter\",\n    \"client_id\": \"your_client_id\",\n    \"api_token\": \"your_api_token\"\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"application_id\": 12345\n    }\n  }\n}\n</code></pre>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"ok\",\n  \"xstatus\": \"1 application returned\",\n  \"data\": {\n    \"applications\": [\n      {\n        \"id\": \"12345\",\n        \"candidate_id\": \"67890\",\n        \"job_id\": \"54321\",\n        \"status\": \"Active\",\n        \"stage\": \"Interview\",\n        \"date_added\": \"2024-01-15T10:30:00Z\",\n        \"date_updated\": \"2024-01-20T14:45:00Z\",\n        \"source\": \"Job Board\",\n        \"interview_date\": \"2024-01-25T09:00:00Z\",\n        \"interview_type\": 11,\n        \"candidate_name\": \"John Doe\",\n        \"candidate_email\": \"john.doe@email.com\",\n        \"position_title\": \"Software Engineer\"\n      }\n    ],\n    \"count\": 1,\n    \"totalCount\": 1\n  }\n}\n</code></pre>\n<hr />\n<h4 id=\"operation-2-search-applications-by-job-id\">Operation 2: Search Applications by Job ID</h4>\n<p>Retrieve all applications for a specific job/position.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>integer</td>\n<td><strong>Yes</strong></td>\n<td>The JobId to filter applications by</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>integer</td>\n<td>No</td>\n<td>Number of records to skip (default: 0)</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>No</td>\n<td>Maximum number of records to return (default: 100)</td>\n</tr>\n<tr>\n<td><code>order_by</code></td>\n<td>string</td>\n<td>No</td>\n<td>Field to sort by (default: \"LastModified\")</td>\n</tr>\n<tr>\n<td><code>order_direction</code></td>\n<td>string</td>\n<td>No</td>\n<td>Sort direction: \"asc\" or \"desc\" (default: \"desc\")</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"vendor\": \"pcrecruiter\",\n    \"client_id\": \"your_client_id\",\n    \"api_token\": \"your_api_token\"\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 54321,\n      \"offset\": 0,\n      \"limit\": 50,\n      \"order_by\": \"LastModified\",\n      \"order_direction\": \"desc\"\n    }\n  }\n}\n</code></pre>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"ok\",\n  \"xstatus\": \"5 applications returned\",\n  \"data\": {\n    \"applications\": [\n      {\n        \"id\": \"12345\",\n        \"candidate_id\": \"67890\",\n        \"job_id\": \"54321\",\n        \"status\": \"Active\",\n        \"stage\": \"Interview\",\n        \"date_added\": \"2024-01-15T10:30:00Z\",\n        \"date_updated\": \"2024-01-20T14:45:00Z\"\n      },\n      {\n        \"id\": \"12346\",\n        \"candidate_id\": \"67891\",\n        \"job_id\": \"54321\",\n        \"status\": \"Active\",\n        \"stage\": \"Phone Screen\",\n        \"date_added\": \"2024-01-16T11:00:00Z\",\n        \"date_updated\": \"2024-01-21T09:30:00Z\"\n      }\n    ],\n    \"count\": 5,\n    \"totalCount\": 47\n  }\n}\n</code></pre>\n<hr />\n<h3 id=\"response-fields\">Response Fields</h3>\n<p>All applications returned include the following fields (when available):</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Unique application/interview ID (SendoutId)</td>\n</tr>\n<tr>\n<td><code>application_id</code></td>\n<td>string</td>\n<td>Pipeline ID</td>\n</tr>\n<tr>\n<td><code>candidate_id</code></td>\n<td>string</td>\n<td>Unique candidate ID</td>\n</tr>\n<tr>\n<td><code>job_id</code></td>\n<td>string</td>\n<td>Unique job/position ID</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Application status</td>\n</tr>\n<tr>\n<td><code>stage</code></td>\n<td>string</td>\n<td>Current interview stage</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>string</td>\n<td>ISO 8601 date when application was created</td>\n</tr>\n<tr>\n<td><code>date_updated</code></td>\n<td>string</td>\n<td>ISO 8601 date of last modification</td>\n</tr>\n<tr>\n<td><code>source</code></td>\n<td>string</td>\n<td>Candidate source/referral source</td>\n</tr>\n<tr>\n<td><code>priority</code></td>\n<td>string</td>\n<td>Application priority level</td>\n</tr>\n<tr>\n<td><code>rating</code></td>\n<td>string</td>\n<td>Candidate rating</td>\n</tr>\n<tr>\n<td><code>notes</code></td>\n<td>string</td>\n<td>Application notes</td>\n</tr>\n<tr>\n<td><code>user_name</code></td>\n<td>string</td>\n<td>Managing recruiter username</td>\n</tr>\n<tr>\n<td><code>interview_type</code></td>\n<td>integer</td>\n<td>Type of interview (0-21)</td>\n</tr>\n<tr>\n<td><code>interview_date</code></td>\n<td>string</td>\n<td>Scheduled interview date (ISO 8601)</td>\n</tr>\n<tr>\n<td><code>interview_time</code></td>\n<td>string</td>\n<td>Scheduled interview time</td>\n</tr>\n<tr>\n<td><code>interviewer</code></td>\n<td>string</td>\n<td>Person conducting interview</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td>string</td>\n<td>Interview location</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td>string</td>\n<td>Interview duration</td>\n</tr>\n<tr>\n<td><code>outcome</code></td>\n<td>string</td>\n<td>Interview outcome</td>\n</tr>\n<tr>\n<td><code>feedback</code></td>\n<td>string</td>\n<td>Interview feedback</td>\n</tr>\n<tr>\n<td><code>company_id</code></td>\n<td>string</td>\n<td>Associated company ID</td>\n</tr>\n<tr>\n<td><code>company_name</code></td>\n<td>string</td>\n<td>Company name</td>\n</tr>\n<tr>\n<td><code>position_title</code></td>\n<td>string</td>\n<td>Job title</td>\n</tr>\n<tr>\n<td><code>candidate_name</code></td>\n<td>string</td>\n<td>Full candidate name</td>\n</tr>\n<tr>\n<td><code>candidate_email</code></td>\n<td>string</td>\n<td>Candidate email</td>\n</tr>\n<tr>\n<td><code>salary_offered</code></td>\n<td>number</td>\n<td>Salary offer amount</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>string</td>\n<td>Proposed/actual start date</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>string</td>\n<td>End date if applicable</td>\n</tr>\n<tr>\n<td><code>offer_date</code></td>\n<td>string</td>\n<td>Date offer was made</td>\n</tr>\n<tr>\n<td><code>acceptance_date</code></td>\n<td>string</td>\n<td>Date offer was accepted</td>\n</tr>\n<tr>\n<td><code>rejection_date</code></td>\n<td>string</td>\n<td>Date rejected</td>\n</tr>\n<tr>\n<td><code>withdrawal_date</code></td>\n<td>string</td>\n<td>Date candidate withdrew</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"error-responses\">Error Responses</h3>\n<h4 id=\"missing-required-parameters\">Missing Required Parameters</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Missing required id (job id) for application_get\",\n  \"data\": {}\n}\n</code></pre>\n<h4 id=\"authentication-error\">Authentication Error</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Missing PCRecruiter base URL or auth token\",\n  \"data\": {}\n}\n</code></pre>\n<h4 id=\"application-not-found\">Application Not Found</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"404 Not Found\",\n  \"data\": {}\n}\n</code></pre>\n<h4 id=\"invalid-json-response\">Invalid JSON Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Invalid JSON response\",\n  \"data\": {}\n}\n</code></pre>\n<hr />\n","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"53fe07e8-e084-446a-880c-23a053c64011","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"3853a2f8-334b-4c82-adf5-33cb6bf3accc"},{"name":"Application Set","id":"10a45f6d-6ccd-47c0-a65b-7b307445aedd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"api_connect_data\": {\n        \"api_connection\": {\n            \"api_app_id\": \"{{api_app_id}}\",\n            \"api_key\": \"{{api_key}}\",\n            \"api_pw\": \"{{api_pw}}\",\n            \"api_un\": \"{{api_un}}\",\n            \"api_database_id\": \"{{api_database_id}}\"\n        },\n        \"vendor\": \"pcrecruiter\",\n        \"api_sandbox\": 1,\n        \"api_performance_dump\": 1,\n        \"api_verbose_dump\": 1\n    },\n    \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 210019226847858,\n            \"candidate_id\": \"140784484319417\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/application/set","description":"<h2 id=\"postput-application\">POST/PUT Application</h2>\n<p>Create a new application or update an existing one.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>POST /application</code> (for both create and update)</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>All parameters are sent in the <code>api_request_data.api_request_query</code> object.</p>\n<h4 id=\"required-parameters-for-create\">Required Parameters (for Create)</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>candidate_id</code></td>\n<td>integer</td>\n<td><strong>Yes</strong></td>\n<td>The CandidateId in PCRecruiter</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td>integer</td>\n<td><strong>Yes</strong></td>\n<td>The JobId (position) in PCRecruiter</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"optional-parameters-for-create\">Optional Parameters (for Create)</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n<th>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>interview_type</code></td>\n<td>integer</td>\n<td>No</td>\n<td>Interview type (0-21). Note: 0 is Placement and requires different endpoint</td>\n<td>11</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>No</td>\n<td>Application status</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>stage</code></td>\n<td>string</td>\n<td>No</td>\n<td>Interview stage</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>source</code></td>\n<td>string</td>\n<td>No</td>\n<td>Candidate source</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>priority</code></td>\n<td>string</td>\n<td>No</td>\n<td>Application priority</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>rating</code></td>\n<td>string</td>\n<td>No</td>\n<td>Candidate rating</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>notes</code></td>\n<td>string</td>\n<td>No</td>\n<td>Application notes</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>user_name</code></td>\n<td>string</td>\n<td>No</td>\n<td>Managing recruiter username</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>interview_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Scheduled interview date (YYYY-MM-DD or ISO 8601)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>interview_time</code></td>\n<td>string</td>\n<td>No</td>\n<td>Scheduled interview time (HH:MM:SS)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>interviewer</code></td>\n<td>string</td>\n<td>No</td>\n<td>Person conducting interview</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td>string</td>\n<td>No</td>\n<td>Interview location</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td>string</td>\n<td>No</td>\n<td>Interview duration</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>salary_offered</code></td>\n<td>number</td>\n<td>No</td>\n<td>Salary offer amount</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Proposed/actual start date (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>End date (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>offer_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Date offer was made (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>acceptance_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Date offer accepted (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>rejection_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Date rejected (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>withdrawal_date</code></td>\n<td>string</td>\n<td>No</td>\n<td>Date candidate withdrew (YYYY-MM-DD)</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"additional-parameters-for-update\">Additional Parameters (for Update)</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>application_id</code></td>\n<td>integer</td>\n<td><strong>Yes</strong> (for update)</td>\n<td>The existing SendoutId to update</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note</strong>: When <code>application_id</code> is provided, the operation performs an UPDATE. Without it, a new application is created.</p>\n<hr />\n<h3 id=\"create-application-example\">Create Application Example</h3>\n<p><strong>Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"vendor\": \"pcrecruiter\",\n    \"client_id\": \"your_client_id\",\n    \"api_token\": \"your_api_token\"\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"candidate_id\": 67890,\n      \"job_id\": 54321,\n      \"status\": \"Active\",\n      \"stage\": \"Initial Review\",\n      \"source\": \"Job Board\",\n      \"priority\": \"Medium\",\n      \"interview_type\": 11,\n      \"notes\": \"Candidate applied through company website\",\n      \"user_name\": \"recruiter1\"\n    }\n  }\n}\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"ok\",\n  \"xstatus\": \"Application created successfully\",\n  \"data\": {\n    \"application_id\": \"12345\",\n    \"candidate_id\": \"67890\",\n    \"job_id\": \"54321\"\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"update-application-example\">Update Application Example</h3>\n<p><strong>Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"vendor\": \"pcrecruiter\",\n    \"client_id\": \"your_client_id\",\n    \"api_token\": \"your_api_token\"\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"application_id\": 12345,\n      \"candidate_id\": 67890,\n      \"job_id\": 54321,\n      \"status\": \"Active\",\n      \"stage\": \"Interview Scheduled\",\n      \"interview_date\": \"2024-01-25\",\n      \"interview_time\": \"09:00:00\",\n      \"interviewer\": \"Jane Smith\",\n      \"location\": \"Conference Room A\",\n      \"notes\": \"Phone screening completed, scheduling in-person interview\"\n    }\n  }\n}\n\n</code></pre>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"ok\",\n  \"xstatus\": \"Application updated successfully\",\n  \"data\": {\n    \"application_id\": \"12345\",\n    \"candidate_id\": \"67890\",\n    \"job_id\": \"54321\"\n  }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"error-responses-set-operations\">Error Responses (SET Operations)</h3>\n<h4 id=\"missing-required-fields\">Missing Required Fields</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Missing required candidate_id or job_id\",\n  \"data\": {}\n}\n\n</code></pre>\n<h4 id=\"missing-authentication\">Missing Authentication</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Missing PCRecruiter base URL or auth token\",\n  \"data\": {}\n}\n\n</code></pre>\n<h4 id=\"application-not-found-for-update\">Application Not Found (for Update)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"404 Not Found\",\n  \"data\": {}\n}\n\n</code></pre>\n<h4 id=\"data-mapping-error\">Data Mapping Error</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"Error - Data mapping to PCRecruiter format failed or resulted in empty payload\",\n  \"data\": {\n    \"original_body\": { /* request data */ }\n  }\n}\n\n</code></pre>\n<h4 id=\"pcrecruiter-api-error\">PCRecruiter API Error</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"error\",\n  \"xstatus\": \"400 Bad Request\",\n  \"data\": {}\n}\n\n</code></pre>\n<hr />\n<h2 id=\"field-type-reference\">Field Type Reference</h2>\n<h3 id=\"interview-types\">Interview Types</h3>\n<p>PCRecruiter supports interview types 0-21. Common values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Placement (requires different API endpoint)</td>\n</tr>\n<tr>\n<td>11</td>\n<td><strong>Default</strong> - Other</td>\n</tr>\n<tr>\n<td>2-21</td>\n<td>Custom interview types (configured per PCRecruiter instance)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"date-formats\">Date Formats</h3>\n<p>All date fields accept the following formats:</p>\n<ul>\n<li><p><strong>ISO 8601</strong>: <code>2024-01-25T09:00:00Z</code></p>\n</li>\n<li><p><strong>Date Only</strong>: <code>2024-01-25</code> (YYYY-MM-DD)</p>\n</li>\n<li><p><strong>Date with Time</strong>: <code>2024-01-25 09:00:00</code></p>\n</li>\n</ul>\n<p>Dates are converted to PCRecruiter's expected format (YYYY-MM-DDTHH:MM:SS) automatically.</p>\n<hr />\n<h2 id=\"complete-integration-example\">Complete Integration Example</h2>\n<h3 id=\"creating-a-complete-application-flow\">Creating a Complete Application Flow</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"vendor\": \"pcrecruiter\",\n    \"client_id\": \"your_client_id\",\n    \"api_token\": \"your_api_token\",\n    \"api_key\": \"your_api_key\"\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"candidate_id\": 67890,\n      \"job_id\": 54321,\n      \"status\": \"Active\",\n      \"stage\": \"Phone Screen Scheduled\",\n      \"source\": \"Indeed\",\n      \"priority\": \"High\",\n      \"rating\": \"A\",\n      \"interview_type\": 11,\n      \"interview_date\": \"2024-01-25\",\n      \"interview_time\": \"14:00:00\",\n      \"interviewer\": \"Jane Smith\",\n      \"location\": \"Phone\",\n      \"duration\": \"30 minutes\",\n      \"notes\": \"Strong technical background. Previous experience matches job requirements.\",\n      \"user_name\": \"recruiter1\"\n    }\n  }\n}\n\n</code></pre>\n<hr />\n","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10a45f6d-6ccd-47c0-a65b-7b307445aedd"}],"id":"8db38a74-5fa6-4170-b3a6-aa23d32567b0","_postman_id":"8db38a74-5fa6-4170-b3a6-aa23d32567b0","description":""}],"id":"f089cd89-b788-4b3d-9841-e4cb8d74bef3","_postman_id":"f089cd89-b788-4b3d-9841-e4cb8d74bef3","description":""},{"name":"StaffTrak","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"f6deb67d-a860-40f8-9134-56e22de56bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - Provided User Id - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Provided Password - <b>REQUIRED</b></p>\n</li>\n<li><p>api_id - Member Alias - <b>REQUIRED</b></p>\n</li>\n<li><p>api_url - Base API URL - <b>REQUIRED</b></p>\n</li>\n<li><p>api_secret - Client ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n<pre>\n      \"api_un\": \"{{api_un}}\",\n      \"api_pw\": \"{{api_pw}}\",\n      \"api_id\": \"{{api_id}}\",\n      \"api_url\": \"{{api_url}}\",\n      \"api_secret\": \"{{api_secret}}\"\n    }\n</pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b139b61c-49fb-4846-9e30-8b9615b90c85","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:10:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1072"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081169"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"STBaseApiUrl\": \"https://development.stafftrak.net/OrjbApiv2/\",\n            \"STAccessToken\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1bmlxdWVfbmFtZSI6IkhhbGV5VXNlciIsInN1YiI6IjEiLCJuYW1lIjoiSGFsZXlVc2VyIiwibWVtYmVySWQiOiIyNzYwMCIsIklEIjoiSGFsZXlVc2VyIiwiU2Vzc2lvbklkIjoiNzk3ZTM1NjMtMmJjNi00NTdhLThhZGMtMzgzMjYzMDVmYWJjIiwibmJmIjoxNTgzNTg5NDQ3LCJleHAiOjE1ODM2NzIyNDcsImlhdCI6MTU4MzU4OTQ0NywiaXNzIjoiaHR0cDovL2RldmVsb3BtZW50LnN0YWZmdHJhay5uZXQiLCJhdWQiOiJodHRwOi8vZGV2ZWxvcG1lbnQuc3RhZmZ0cmFrLm5ldCJ9.aHTlXjQ9zsQ7M9gpINPDlcNpqQQVlWpD3yzjDp86iNexxXZnTn5WRcbk0bcV1BAZq6O-hJwM5fLqvFjjtumdtBb9RCHjPVCw0RJLwRWSVnbXBpcqIXOrRtPtKnOO65KhNMRvOJkQ82r-70nOawrp1UJmaYKDZpjOZtpw1hb2y0nuD58CbBM4j0C9lkxXl41YK9_wVkGnki-qa1GP-DmIDDDvOYcaQyB8jZkO8QjtyI_MvS-ZxqrkgZBt-KH3c3rRP2pdZiI76MtDGipcMp6fO2BGg1-14M6clrfDX2F6VqohmWLqkwz6LKXV31vEIXmsqbJrpDnVgfHJhU-TqWr4pg\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Access Token\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.272614\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:10:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"stafftrak\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.446485\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"f6deb67d-a860-40f8-9134-56e22de56bff"}],"id":"075108bb-2cff-4512-8940-5d75a0bc77df","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"075108bb-2cff-4512-8940-5d75a0bc77df"},{"name":"Application","item":[{"name":"Application Get By ID","id":"744a3f7e-9489-4b80-ae48-284ebad5469b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2ae78723-c302-4a3a-a778-2e4c3e1dbead","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 08 Mar 2020 17:15:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"497"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081390"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-08T17:15:16\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-08T17:15:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.399903\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"744a3f7e-9489-4b80-ae48-284ebad5469b"},{"name":"Application Get","id":"7bdc788b-5a43-4d73-bc2e-3c75b343262c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b5a8b069-101c-44a8-96c9-51e1f871413b","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 08 Mar 2020 17:14:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"497"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081387"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-08T17:14:42\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-08T17:14:42\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.416257\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"7bdc788b-5a43-4d73-bc2e-3c75b343262c"},{"name":"Application Set","id":"6adf1d68-5d2f-47de-b653-6885fc12dd1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": { \"id\": \"763414\"},\r\n\t\t\"candidate\":{\r\n\t\t\t\"email\": \"NewResume.17.December.2025.2@mailinator.com\",\r\n\t\t\t\"first_name\": \"Test\",\r\n\t\t\t\"last_name\": \"Testing\",\r\n\t\t\t\"address1\": \"999 Test Street\",\r\n\t\t\t\"city\": \"Memphis\",\r\n\t\t\t\"state\": \"Ontario\",\r\n\t\t\t\"zip\": \"12345\",\r\n\t\t\t\"country\": \"USA\",\r\n\t\t\t\"cell_phone\": \"+1 888 123.1211\"\r\n\t\t}\r\n\t\t}\r\n  \t}\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>job<ul>\n<li>id - <strong>REQUIRED</strong> - for which the applicant wants to apply, id fetched form the list of job postings</li>\n</ul>\n</li>\n<li>candidate<ul>\n<li>first_name - <strong>REQUIRED</strong> - applicant first name</li>\n<li>last_name - <strong>OPTIONAL</strong> - applicant last name</li>\n<li>city - <strong>OPTIONAL</strong> - applicant city</li>\n<li>state - <strong>OPTIONAL</strong> - applicant state</li>\n<li>zip - <strong>OPTIONAL</strong> - applicant zip code</li>\n<li>country - <strong>OPTIONAL</strong> - applicant country</li>\n<li>email - <b>REQUIRED</b> - email id of the applicant</li>\n<li>cell_phone - <b>OPTIONAL</b></li>\n</ul>\n</li>\n<li>file_name - <b>OPTIONAL</b></li>\n<li>file_data - <b>OPTIONAL</b> - file upload .pdf, .doc are acceptable</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c9LY+FLhon0i9YXLbuP5zEk=\"},\n        \"candidate\":{\n            \"first_name\": \"Testing\",\n            \"email\": \"tst@testing.biz\",\n            \"cell_phone\": 9009999999\n        },\n        \"file_name\": \"Resume.doc\",\n        \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\" \n        }\n  }\n  </pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"76ebacd9-a3ae-4390-b453-a716162e5f6f","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": { \"id\": \"761602\"},\r\n\t\t\"candidate\":{\r\n\t\t\t\"email\": \"TS@yahoo.us\",\r\n\t\t\t\"first_name\": \"T N\",\r\n\t\t\t\"last_name\": \"Tup\",\r\n\t\t\t\"address1\": \"97 Test Street\",\r\n\t\t\t\"city\": \"Memphis\",\r\n\t\t\t\"state\": \"TN\",\r\n\t\t\t\"zip\": 39129,\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"phone\": 999991289\r\n\t\t},\r\n\t\t\"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEAMgAsADAAMAAwACAAZwBsAG8AYgBhAGwAIAB1AHMAZQByAHMALgANAEUAbgB0AGUAcgBwAHIAaQBzAGUAIABJAG0AcABsAGUAbQBlAG4AdABhAHQAaQBvAG4AcwANAEsAUABJACAARABhAHMAaABiAG8AYQByAGQAcwAgACYAIABTAGMAbwByAGUAYwBhAHIAZABzAA0ARABhAHQAYQAgAE0AaQBuAGkAbgBnACAAJgAgAEEAbgBhAGwAeQB0AGkAYwBzAA0ADQBSAGkAcwBrACAATQBhAG4AYQBnAGUAbQBlAG4AdAANAEIASQAsACAARQBSAFAAIAAmACAAQgBpAGcAIABEAGEAdABhACAAUABsAGEAdABmAG8AcgBtAHMADQBTAEEAUAAvAFMAQQBTACAAUwBvAGwAdQB0AGkAbwBuAHMADQANABQgIAA5AC4AMgAlACAAcgBlAHYAZQBuAHUAZQAgAGcAcgBvAHcAdABoACAAKAAyADAAMQA2ACkADQAUICAAVQBwACAAdABvACAANAA1ACUAIABpAG4AIABlAGYAZgBpAGMAaQBlAG4AYwB5ACAAZwBhAGkAbgBzAA0ADQAUICAAJAA1ADcANQBLACAAYwBhAHAAaQB0AGEAbAAtAGUAeABwAGUAbgBzAGUAIAByAGUAZAB1AGMAdABpAG8AbgANABQgIAAkADEALgAxAE0AIABsAGEAYgBvAHIALQBjAG8AcwB0ACAAcwBhAHYAaQBuAGcAcwANAA0AFCAgADkANwAlACAAYQBjAGMAbwB1AG4AdAAtAHIAZQB0AGUAbgB0AGkAbwBuACAAcgBhAHQAZQBzAA0AFCAgADEAMAAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAcgBlAGYAZQByAHIAYQBsAHMADQANAA0ADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAICAAAFggAABgIAAAaCAAAHAgAADAIAAAyCAAARAgAAJQIAACWCAAA5AgAAOYIAAA2CQAAOAkAAFgJAABaCQAAdAkAAI4JAACQCQAAuAkAANIJAADUCQAAFAoAAC4KAAAwCgAASg0AAEwNAABODQAAfA4AAH4OAACADgAAgg4AAIQOAACGDgAAiA4AAIoOAAAaEQAAHBEAAGgSAABqEgAA6QDk5ADQv62Zrb8Ah3ZnAHZnAHZnAHZnAL8Av78A5OTkAL+/vwC/AAAAHDoIADsIAENKGAA2CAA1CABeSgYAT0oGAFFKBgAAIDBKHQA6CAA7CABDShgANggANQgAXkoGAE9KBgBRSgYAACMwSh0AOggAOwgAQ0oYADYIAD4qATUIAF5KBgBPSgYAUUoGACcwSh4AOggAOwgAQ0oYAECIAAA2CAA+KgE1CABeSgYAT0oGAFFKBgAjOggAOwgAQ0oYAECIAAA2CAA+KgE1CABeSgYAT0oGAFFKBgAgOggAOwgAQ0oYAECIAAA2CAA1CABeSgYAT0oGAFFKBgAAJzBKHQA6CAA7CABDShgAQIgAADYIADUIAV5KBgBcCAFPSgYAUUoGAAkDagAAAABVCAErQioAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAoahIAAOoTAADsEwAAIBQAAAwVAAAOFQAAEBUAAEQVAABGFQAASBUAAEoVAACEFQAAiBUAAIoVAACMFQAAyhUAAMwVAADOFQAA0BUAAAAWAAAEFgAABhYAAAgWAAA+FgAAQBYAAEIWAABEFgAAdhYAAHwWAADvAOsA59/QAOff0ADn39AA59/QAOff0ADn39AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcOggAOwgAQ0oYADYIADUIAF5KBgBPSgYAUUoGAAAOOggAOwgAUEoDAF5KAwAABjoIADsIAAAGNQgBXAgBACA6CAA7CABDShgAQIgAADYIADUIAF5KBgBPSgYAUUoGABwACAAAFAgAABYIAAAcCAAA5ggAAFoJAAD5AAAAAAAAAAAAAAAA+QAAAAAAAAAAAAAAAMsAAAAAAAAAAAAAAACUAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOSUAFiQBSWYBAAAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA2IAASZGgBAAADJAFhJAExJAFehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAC0kAAMkAGEkABOkAAAUpBsBJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAQMPAFDGCICAgAABAwAAJ2QAAAAAUcYIAAAAAAAAAAAMJAFBJAAGAAADJABhJABBJAAABVoJAACQCQAA1AkAADAKAADFAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5JQAWJAFJZgEAAAASZGgBAAADJABhJABehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAADklABYkAUlmAQAAABJkaAEAAAMkAGEkAF6EAABdhAAAYIQAABOkAAAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAOSUAFiQBSWYBAAAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAADMAoAADIKAABMDQAAfg4AAK4AAAAAAAAAAAAAAAB3AAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOyAACiYAC0YDAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA2IAASZGgBAAADJABhJAAxJAFehAAAXYQAAGCEAAATpAAAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAFAAABYkARckAUlmAQAAAAjWMAACAADJE/QmgAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAnWBAABAAES1hQAAAD/////AAAAAAAA/////wAAAHDWFAAAAP////8AAAAAAAD/////AAAANNYGAAEBAwAANNYGAAECAwAANNYGAAEEAwAANNYGAAEIAwAAZjQAAzQAAAN+DgAAhg4AAIgOAAAcEQAAahIAAOwTAAAiFAAAxAAAAAAAAAAAAAAAAMQAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAAiQAAAAAAAAAAAAAAAIkAAAAAAAAAAAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5IAAKJgALRgEAAyQAYSQADcYFAAEAAABehAAAXYQAAGCE5f4TpEsAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAOyAACiYAC0YEAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkADsgAAomAAtGAAADJABhJAAxJAENxgUAAQAAAF6EAABdhAAAYIQAABOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAABiIUAABaFAAAihQAAIwUAACsFAAAxQAAAAAAAAAAAAAAAIsAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkgAAomAAtGAgADJABhJAANxgUAAQAAAF6EAABdhAAAYITl/hOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAAQAAADkgAAomAAtGAQADJABhJAANxgUAAQAAAF6EAABdhAAAYITl/hOkSwAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAAOSAACiYAC0YBAAMkAGEkAA3GBQABAAAAXoQAAF2EAABghOX+E6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAAErBQAAOYUAAAKFQAADBUAAEYVAACGFQAAiBUAAMwVAAACFgAABBYAAMUAAAAAAAAAAAAAAACLAAAAAAAAAAAAAAAAiQAAAAAAAAAAAAAAAFQAAAAAAAAAAAAAAABUAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAFQAAAAAAAAAAAAAAABUAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAABAAAAAQAANSAAEmRoAQAAAyQAYSQAXoQAAF2EAABghAAAE6QAABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAABAAAAOSAACiYAC0YCAAMkAGEkAA3GBQABAAAAXoQAAF2EAABghOX+E6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkAAA5IAAKJgALRgIAAyQAYSQADcYFAAEAAABehAAAXYQAAGCE5f4TpEsAFKSWACRkAAAAAE7GCAAAAAAAAAAAJWQAAAAAT8YIAAAAAAAAAAAmZAAAAABQxggAAAAAAAAAACdkAAAAAFHGCAAAAAAAAAAAQSQAAAkEFgAAQBYAAHgWAAB6FgAAfBYAAH4WAADKAAAAAAAAAAAAAAAAygAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAADGAAAAAAAAAAAAAAAAigAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOyAACiYAC0YEAAMkAGEkADEkAQ3GBQABAAAAXoQAAF2EAABghAAAE6RLABSklgAkZAAAAABOxggAAAAAAAAAACVkAAAAAE/GCAAAAAAAAAAAJmQAAAAAUMYIAAAAAAAAAAAnZAAAAABRxggAAAAAAAAAAEEkADsAAQAAAAEAADUgABJkaAEAAAMkAGEkAF6EAABdhAAAYIQAABOkAAAUpJYAJGQAAAAATsYIAAAAAAAAAAAlZAAAAABPxggAAAAAAAAAACZkAAAAAFDGCAAAAAAAAAAAJ2QAAAAAUcYIAAAAAAAAAABBJAAABTMAPDAAH7DQLyCw4D0hsG4EIrBuBCOQbgQkkG4EMlAAADGQWAIwcACAAAAzUAAAKDIADjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgBvAG8AdAAgAEUAbgB0AHIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYABQD//////////wEAAAAGCQIAAAAAAMAAAAAAAABGAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAAAAAAABAEMAbwBtAHAATwBiAGoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgACAAIAAAAEAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAAAEATwBsAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAIA/////wMAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABQAAAAAAAAAMQBUAGEAYgBsAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAgD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAA1hwAAAAAAAAFAFMAdQBtAG0AYQByAHkASQBuAGYAbwByAG0AYQB0AGkAbwBuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAACAAUAAAAHAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAACsAAAAAAAAAFcAbwByAGQARABvAGMAdQBtAGUAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAIABgAAAP//////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAADUqAAAAAAAATwBiAGoAZQBjAHQAUABvAG8AbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAQD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAFAEQAbwBjAHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBtAGEAdABpAG8AbgAAAAAAAAAAAAAAOAACAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAB0AAAAAAAAAA==\"\r\n\t\t}\r\n  \t}\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 22:47:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"6709"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"167022"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"personId\": \"0040071286\",\n            \"message\": \"REGISTERED\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.141671\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-11T22:47:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"stafftrak\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"resume\\\":\\\"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\\\",\\\"country\\\":\\\"US\\\",\\\"firstName\\\":\\\"T N\\\",\\\"referenceId\\\":\\\"761602\\\",\\\"street\\\":\\\"97 Test Street\\\",\\\"phone\\\":\\\"999991289\\\",\\\"email\\\":\\\"TS@yahoo.us\\\",\\\"city\\\":\\\"Memphis\\\",\\\"province\\\":\\\"TN\\\",\\\"lastName\\\":\\\"Tup\\\",\\\"postalCode\\\":\\\"39129\\\"}\",\n            \"call\": \"https://www5.stafftrak.net/orjbapiv2-test/HaleyMarketing/Applicants\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.559591\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"6adf1d68-5d2f-47de-b653-6885fc12dd1b"}],"id":"78f8cc6c-ce4a-4e28-9bb5-733e5e711895","_postman_id":"78f8cc6c-ce4a-4e28-9bb5-733e5e711895","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"64ebb163-9504-4e2a-b51f-6c84da6f8afa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d328f851-bd0f-4dc0-8ae1-0f6b15937e2d","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:04:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"498"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166287"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:04:53\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:04:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.693953\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"64ebb163-9504-4e2a-b51f-6c84da6f8afa"},{"name":"Candidate Set","id":"2f05c22e-24c4-4e3d-a6ce-1791efff75ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>Not implemented by StaffTrak.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5b0c7dd1-d4e5-4abc-b6d4-0b917ed2ff26","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:06:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"498"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081166"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:06:05\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:06:05\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.547864\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"2f05c22e-24c4-4e3d-a6ce-1791efff75ae"},{"name":"Candidate Update","id":"a94ecf16-ecc2-458c-9840-600088eb0861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6d8ba708-3bf7-46e8-b923-a2db9d683a33","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:14:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"498"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166293"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:14:09\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:14:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.393019\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a94ecf16-ecc2-458c-9840-600088eb0861"},{"name":"Candidate Get By ID","id":"a1cd11c2-fc50-420a-a83c-43475bdc316c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9aa2da88-f622-4830-a36f-c87d1a0f2028","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:14:56 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"498"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081172"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:14:56\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:14:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.197497\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a1cd11c2-fc50-420a-a83c-43475bdc316c"},{"name":"Candidate Set Education","id":"4feba5ed-7df2-41b2-9fca-b6f7a8c4dcc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0fabcfdf-5162-4c8e-9e09-ab2122364401","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:16:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"504"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166296"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:16:51\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:16:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.394111\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"4feba5ed-7df2-41b2-9fca-b6f7a8c4dcc3"},{"name":"Candidate Get Education","id":"01e16203-eca8-4137-9865-2472ec9355f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1e42b781-3341-4a77-8c04-2f0774f12f3c","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:17:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"505"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081178"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:17:45\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:17:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.413434\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"01e16203-eca8-4137-9865-2472ec9355f2"},{"name":"Candidate Set Work History","id":"83d4f8e0-2e16-4c08-8650-e89d4098232b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fdb90cbb-0296-413d-94f9-261581cd37ce","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:18:58 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"509"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081181"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:18:59\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:18:59\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.414609\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"83d4f8e0-2e16-4c08-8650-e89d4098232b"},{"name":"Candidate Get Work History","id":"cd06e91a-06d6-4f5d-b6b3-4305b6100d2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b44d23aa-feb8-46a8-8344-f10b0cf1e6a6","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 14:19:56 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"509"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081184"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T14:19:56\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T14:19:56\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.163885\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"cd06e91a-06d6-4f5d-b6b3-4305b6100d2d"}],"id":"7b946d4f-6ebc-41b5-8ded-a829c788c642","_postman_id":"7b946d4f-6ebc-41b5-8ded-a829c788c642","description":""},{"name":"Custom","item":[{"name":"Custom","id":"c89a29fc-8e93-427c-9526-5c00d14f25b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to StaffTrak via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1b05e0cf-5e39-4e2e-9f21-5760a94a3f2f","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 01:16:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"495"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081116"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T01:16:10\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T01:16:11\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.45541\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c89a29fc-8e93-427c-9526-5c00d14f25b5"}],"id":"38498bc0-70ae-41c4-a201-fb98856e5dc4","_postman_id":"38498bc0-70ae-41c4-a201-fb98856e5dc4","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"23e5e05d-c349-412b-accd-98e9ae91a0fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"31c2806c-f22c-4a92-8244-916b0a8d2668","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 01:18:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"497"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166242"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T01:18:06\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T01:18:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.432608\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"23e5e05d-c349-412b-accd-98e9ae91a0fe"}],"id":"60ef0914-aa3e-4b43-9f51-6af30266fbf9","_postman_id":"60ef0914-aa3e-4b43-9f51-6af30266fbf9","description":""},{"name":"Job","item":[{"name":"Job Get","id":"c5eaf2b0-ba08-4193-99f4-85767872f8aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"06e2b73a-8fb1-41e8-b527-5d3e050b0291","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Mar 2020 20:18:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3101"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3016374"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"totalCount\": 3,\n            \"count\": 3,\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"15.5 per HOUR\",\n                    \"status\": 1,\n                    \"description\": \"Armor People Link is a full service employment agency with offices in Brampton, Mississauga and Scarborough. We have more than 45 years of experience helping our associates find their ideal position. We work with top companies in various industries including warehousing, logistics, retail, hospitality and manufacturing. The key to our success is our associates success!\\n\\nOur client, a national retailer, is looking to hire Shippers and Receivers capable of lifting Up to 50Lbs or more pounds. You will work in the shipping & receiving department, loading and unloading pallets and sorting items for distribution to retail locations. Our client offers a clean and safe working environment for it's employees with a strong emphasis on employee satisfaction. This client has an excellent record of hiring on a permanent basis.\\n\\rRequirements: \\n\\rDuties: Entry Level Warehouse - Shipper Receiver Jobs\\n* Sort and repackage products to be shipped to retail locations\\n* Shipping and receiving duties\\n* Loading/ Offloading of products up to 50 lbs\\n* Perform other General Labour duties as required\\n\\rQualifications: \\n\\rRequirements: Entry Level Warehouse - Shipper Receiver Jobs\\n* Must have 2 forms of government issued id\\n* Provide 2 references\\n* Ability to pass a background security check\\n* Safety boots are required on site\\n* Ability to lift more than 50 lbs\\n\\nHow to apply: Entry Level Warehouse - Shipper Receiver Jobs\\n* Submit your resume to this posting\\n* You will receive a call from the Armor team to provide further details\\n* Come prepared with Photo ID, Proof of SIN, and a clear criminal background check\\n* Get started!!\",\n                    \"date_added\": \"2019-03-04T00:00:00\",\n                    \"address\": {\n                        \"country\": \"CA\",\n                        \"city\": \"Brampton\",\n                        \"zip\": \"L6W2B6\",\n                        \"address1\": null,\n                        \"state\": \"ON\"\n                    },\n                    \"type\": \"TP\",\n                    \"id\": \"761609\",\n                    \"title\": \"Entry Level Warehouse - Shipper Receiver Jobs APLGL\",\n                    \"rep_user\": {\n                        \"email\": \"geoff@armorpeoplelink.com\",\n                        \"id\": \"\",\n                        \"last_name\": \"CLENDENNING\",\n                        \"first_name\": \"GEOFF\"\n                    }\n                },\n                {\n                    \"pay_rate\": \"15.5 per HOUR\",\n                    \"status\": 1,\n                    \"description\": \"Armor People Link is a full service employment agency with office across the GTA. We have more than 40 years of operating experience focused on helping our associates find productive, safe jobs and we are an equal opportunity employer across all ages and ethnicities. We are continually sourcing new positions from top quality companies in the warehouse, logistic, Retail,manufacturing,hospitality and customer service sectors.\\n\\nGeneral Labour Warehouse Jobs- Full time warehouse jobs\\n\\nJob requirements:Our client is a large national retailer with warehouses in Mississauga and Brampton serving all of Canada. We are seeking a large number of General Labour workers to perform Warehouse Work .General Labour duties include sorting and repackaging of products to be shipped to retail locations across Canada. These are long-term, temporary assignments with the potential to be hired on full-time. The work environment is clean, safe and friendly.\\n\\nCompany culture:Our client is a leading national retailer with distribution throughout Canada. These jobs are at their three warehouses in Brampton and Mississauga, serving all of Canada. Our client regularly hires on the best of its temporary associates each year, providing you with an opportunity for full-time advancement. Merit is based on timelines, flexibility and productive work.\\n\\nWage: Light Packaging - Full time warehouse jobs\\n* $15.50- $16/- hourly, depending on shift.\\n\\rRequirements: \\n\\rMust be able to work on-going Monday through Friday shifts:\\n$15.50 - Days (6:45 AM - 3:00 PM)\\n$16.00 - Afternoons (3:45 PM - 12:00 AM)\\nLocation: Airport Road and American Drive ( National Retail company)\\n\\nWork requirements: Light Packaging - Full time warehouse jobs\\n* CSA approved steel-toed safety boots are required on site\\n* Associates are required to be prompt and on-time\\n* You must be comfortable working in a fast paced, productivity-focused environment\\n* Must be comfortable lifting up to 30 lbs\\n* Ability to pass the Background check\\n\\rQualifications: \\n\\rHow to apply for :Light Packaging - Full time warehouse jobs\\n* Submit your resume to this Indeed posting\\n* You will receive a call from the Armor team to arrange a registration appointment\\n* Come prepared with Photo ID, Proof of SIN, and a clear criminal background check\\n\\nRegistration: Light Packaging - Full time warehouse jobs\\n* You must have 2 pieces of government issued id's\\n* 2 references\\n* Be able to pass a background security check\\n\\nGet started!!\\nOur Brampton and Mississauga Office Locations:\\n\\nMississauga\\n75 Watline Ave, Suite 116 Main Floor\\nWalk-in Registration for Mississauga: 9am to 3pm;Monday to Friday\\n\\nBrampton:\\n239 Queen St. E., Unit 6A - We are in the same building as BSW beauty supplies\\n\\nWalk-in Registration for Brampton: 9am to 3pm,Monday to Friday\\n\\n*MUST BE 18 YEARS OF AGE\",\n                    \"date_added\": \"2019-03-04T00:00:00\",\n                    \"address\": {\n                        \"country\": \"CA\",\n                        \"city\": \"Mississauga\",\n                        \"zip\": \"L6W2B6\",\n                        \"address1\": null,\n                        \"state\": \"ON\"\n                    },\n                    \"type\": \"TP\",\n                    \"id\": \"761602\",\n                    \"title\": \"General Labour Warehouse Jobs - APLGL\",\n                    \"rep_user\": {\n                        \"email\": \"recruiting@armorpeoplelink.com\",\n                        \"id\": \"\",\n                        \"last_name\": \"CLENDENNING\",\n                        \"first_name\": \"GEOFF\"\n                    }\n                },\n                {\n                    \"pay_rate\": \" \",\n                    \"status\": 8,\n                    \"description\": \"This is a rotating shift.  The shift will change every two weeks. \\n\\nMorning Shift : 7 am-3:15pm- Pay rate - $15.50/hour\\nAfternoon Shift : 3pm- 11:15pm-Pay rate - $15.95/hour\\nNight Shift : 11:15pm-7:15am-pay rate - $16.25/hour\\n\\nDuties/Responsibilities:\\t\\n\\u0007\\tDiscusses with Shift Supervisor priorities, deadlines and machine assignments\\n\\u0007\\tDiscusses with Set Up Operator any machine issues\\n\\u0007\\tOversees machine operation & makes minor adjustments as needed\\n\\u0007\\tEnters information onto computer & prints labels\\n\\u0007\\tMakes boxes\\n\\u0007\\tRetrieves pallets\\n\\u0007\\tLifts bundles of bags from conveyor \\n\\u0007\\tInspects bags for defects and conducts quality tests\\n\\u0007\\tTransfers bags into boxes\\n\\u0007\\tLoads boxes onto pallets \\n\\nSkills/Abilities:\\t \\n\\u0007\\tAbility to stand for long periods of time with frequent lifting and pulling\\n\\u0007\\tAbility to lift bags and boxes (up to 10lbs) on a frequent basis\\n\\u0007\\tAbility to lift up to 50lbs (with a partner) for bag drop tests\\n\\rRequirements: \\n\\rManufacturing/production experience preferred.  \\nPrevious experience with shift work, specifically nights, is required.\\nMust be able to stand for extended periods of time.\\nPhysically fit.\\n\\nTHESE ARE TEMP-TO-PERM OPPORTUNITIES.\\n\\rQualifications: \\n\\rMust have a clear criminal background.\",\n                    \"date_added\": \"2018-02-06T00:00:00\",\n                    \"address\": {\n                        \"country\": \"CA\",\n                        \"city\": \"BRAMPTON - Dixie & Steeles area\",\n                        \"zip\": \"L6W3J3\",\n                        \"address1\": null,\n                        \"state\": \"ON\"\n                    },\n                    \"type\": \"TH\",\n                    \"id\": \"761198\",\n                    \"title\": \"Packer/Machine Operator\",\n                    \"rep_user\": {\n                        \"email\": \"recruiting@armorpeoplelink.com\",\n                        \"id\": \"\",\n                        \"last_name\": \"Abbott\",\n                        \"first_name\": \"Karen\"\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.061819\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-03-26T20:18:23\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"stafftrak\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"3 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://www5.stafftrak.net/orjbapiv2-test/HaleyMarketing/Feeds/APL\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.4502\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"3 jobs returned\"\n}"}],"_postman_id":"c5eaf2b0-ba08-4193-99f4-85767872f8aa"},{"name":"Job Get By ID","id":"1fefb395-baa3-4641-80ed-b9cf55b3c7c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"cc3efc64-ebf4-4dbb-9d40-c3661650b4ac","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 09 Mar 2020 21:12:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"495"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166800"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-09T21:12:45\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-09T21:12:45\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.511669\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"1fefb395-baa3-4641-80ed-b9cf55b3c7c3"},{"name":"Job Search","id":"16be74e4-ee30-41a9-b31d-d0ab82a62515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"811c9eeb-1fae-4f01-86b3-9c29500e2b75","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 09 Mar 2020 21:13:23 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"497"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081696"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-09T21:13:23\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-09T21:13:24\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.394375\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"16be74e4-ee30-41a9-b31d-d0ab82a62515"}],"id":"493d9b9c-2a9d-491d-a2e4-cf537d4fa60a","_postman_id":"493d9b9c-2a9d-491d-a2e4-cf537d4fa60a","description":""},{"name":"Note","item":[{"name":"Note Set","id":"96ec3cc7-010f-4e77-b93d-b97f6e03e1e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"45f4b267-d83e-40e2-a610-605c8fec83a3","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 01:12:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"496"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"166239"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T01:12:28\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T01:12:29\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.410123\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"96ec3cc7-010f-4e77-b93d-b97f6e03e1e2"}],"id":"c37a5ab4-5e24-47ab-b250-c50692a1ff85","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"c37a5ab4-5e24-47ab-b250-c50692a1ff85","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"22d2b8c5-05e7-45ff-8a58-67968034f5bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f9ab1872-d0c8-452c-8fd5-27e2a8987f31","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"stafftrak\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 07 Mar 2020 01:07:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"500"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3081113"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-03-07T01:07:13\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-03-07T01:07:14\",\n            \"APIKEY\": \"xxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"stafftrak\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"password\\\":\\\"xxxxxxxxxxxxxx\\\",\\\"clientId\\\":\\\"8c146afd-df66-4a77-a169-4ad4a0eb8c9d\\\",\\\"userId\\\":\\\"HaleyUser\\\"}\",\n            \"call\": \"https://development.stafftrak.net/OrjbApiv2/APL/Authentication\"\n        },\n        \"vendor\": \"stafftrak\",\n        \"elapsed\": \"0.452354\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"22d2b8c5-05e7-45ff-8a58-67968034f5bc"}],"id":"9df8ae5c-c574-47e2-b7e5-155da3b43235","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"9df8ae5c-c574-47e2-b7e5-155da3b43235","description":""}],"id":"62c52055-fa75-4cc8-aa53-75ecc430d89d","description":"<p><a href=\"https://development.stafftrak.net/ORJBAPIv2/swagger/index.html?urls.primaryName=ORJB%20API%20\">https://development.stafftrak.net/ORJBAPIv2/swagger/index.html?urls.primaryName=ORJB%20API%20</a>\n<a href=\"https://development.stafftrak.net/ORJBAPIv2/swagger/index.html?urls.primaryName=ORJB%20Feeds%20and%20Webhooks%20Api\">https://development.stafftrak.net/ORJBAPIv2/swagger/index.html?urls.primaryName=ORJB%20Feeds%20and%20Webhooks%20Api</a></p>\n","_postman_id":"62c52055-fa75-4cc8-aa53-75ecc430d89d"},{"name":"TargetRecruit","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"c4f532f7-9bd4-45a7-ab71-a96e7af109ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - Your Target Recruit Email Address - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your Target Recruit Password - <b>REQUIRED</b></p>\n</li>\n<li><p>api_url - URL to access Target Recruit - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2addaeef-ea05-42d1-9676-fc7953c12ac2","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:16:49 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"343"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199290"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"password\": \"api_pw\",\n                \"url\": \"https://avtrrt-developer-edition.na87.force.com/services/apexrest/AVTRRT\",\n                \"username\": \"emailtocandidate@p-2cn81lx6fxp7v8kw0sv7eo9j5uty70dmrooq1i707kyvh2qezp.4-ibu3eac.na2.apex.salesforce.com\"\n            },\n            \"xstatus\": \"Authenticated\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.015391\",\n        \"key\": \"xxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"c4f532f7-9bd4-45a7-ab71-a96e7af109ce"}],"id":"ae0a3b58-dfa2-4426-a422-ae620303c42b","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"ae0a3b58-dfa2-4426-a422-ae620303c42b"},{"name":"Application","item":[{"name":"Application Set","id":"79bb6287-fb70-46f1-9886-d8e5f506e452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0   \r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For setting application data.</p>\n\n<ul>\n<li><p>candidate</p>\n<ul>\n<li>id - REQUIRED - if email is not supplied</li>\n<li>email - REQUIRED - if ID is not supplied</li>\n</ul>\n</li>\n<li><p>job</p>\n<ul>\n<li>id - Target Recruit trJobNumber - <b>REQUIRED</b></li>\n</ul>\n</li>\n<li><p>first_name - Applicant first name - <b>OPTIONAL</b></p>\n</li>\n<li><p>last_name - Applicant last name - <b>OPTIONAL</b></p>\n</li>\n<li><p>phone - Applicant phone number - <b>OPTIONAL</b></p>\n</li>\n<li><p>cell_phone - Applicant mobile number - <b>OPTIONAL</b></p>\n</li>\n<li><p>referral_source -primarySource - <b>OPTIONAL</b></p>\n</li>\n<li><p>pay_rate - <b>OPTIONAL</b></p>\n</li>\n<li><p>ending_salary - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n \"api_request_data\": {\n    \"api_request_query\": {\n        \"email\": \"97t@yahoo.com\",\n        \"first_name\": \"Test\",\n        \"last_name\": \"Two\",\n        \"phone\": 191783172938,\n        \"cell_phone\": 1930239283,\n        \"rep_user\": \"Haley Marketing\",\n        \"referral_source\": \"Linked In\",\n        \"pay_rate\": \"\",\n        \"ending_salary\": \"\"\n    }\n  }\n</pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2412a10e-1651-4db7-8ae4-749c1b296add","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0   \r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:21:20 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"466"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272116"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T17:21:20\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T17:21:20\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.026155\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"79bb6287-fb70-46f1-9886-d8e5f506e452"},{"name":"Application Get","id":"538b1767-37bc-48b0-b263-60f4012bce1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a2941f08-02de-4265-a65f-f978fa4b6f01","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:22:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"466"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199293"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T17:22:55\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T17:22:55\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.002747\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"538b1767-37bc-48b0-b263-60f4012bce1c"},{"name":"Application Get By ID","id":"c8d42a53-7329-42da-87d3-9780eef14167","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0e794eba-62db-4fbf-a4ca-5e0b8e59b271","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:25:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"465"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272119"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T17:25:28\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T17:25:28\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.005923\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c8d42a53-7329-42da-87d3-9780eef14167"}],"id":"7a0af2b2-2a03-4696-b183-37f4a9d311f0","_postman_id":"7a0af2b2-2a03-4696-b183-37f4a9d311f0","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"4937184e-5975-46c1-aadb-15078c5d672e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3138f499-1613-4513-b652-c61c9d8e056c","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:26:38 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"464"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272122"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T17:26:38\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T17:26:38\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.004809\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"4937184e-5975-46c1-aadb-15078c5d672e"},{"name":"Candidate Get By ID","id":"f80967ba-da09-4a7f-bd5a-0918f5480612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data by ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fdce4b2e-952c-422c-ae2e-6d1e4f64f19c","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 17:29:27 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"462"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272125"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T17:29:27\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T17:29:27\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.003333\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f80967ba-da09-4a7f-bd5a-0918f5480612"},{"name":"Candidate Set","id":"01062d15-f2bc-43e7-8b1e-e0297420be5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"  \r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"last_name\": \"T\",\r\n\t\t\"email\": \"testing.two.20.October.2025.1@mailinator.com\"\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>id - Target Recruit candidate id - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>job_id - Target Recruit trJobNumber - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - acts as secondary check for existing candidate - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - Applicant first name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - Applicant last name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - Applicant phone number - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - Applicant mobile number - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source -primarySource - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>pay_rate - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>ending_salary - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> \"api_request_data\": {\n    \"api_request_query\": {\n        \"email\": \"97t@yahoo.com\",\n        \"first_name\": \"Test\",\n        \"last_name\": \"Two\",\n        \"phone\": 191783172938,\n        \"cell_phone\": 1930239283,\n        \"rep_user\": \"Haley Marketing\",\n        \"referral_source\": \"Linked In\",\n        \"pay_rate\": \"\",\n        \"ending_salary\": \"\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"fb21bff1-24ad-4f03-a753-9e2a5dffbda1","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n      \"api_secret\": \"{{TargetRecruit_secret}}\"    \r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\": \"97t@yahoo.com\",\r\n        \"first_name\": \"Test\",\r\n        \"last_name\": \"Two\",\r\n        \"phone\": 191783172938,\r\n        \"cell_phone\": 1930239283,\r\n        \"rep_user\": \"Haley Marketing\",\r\n        \"referral_source\": \"Linked In\",\r\n        \"pay_rate\": \"\",\r\n        \"ending_salary\": \"\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jan 2020 19:44:09 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"670"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"275236"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.568889\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2020-01-29T19:44:10\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"targetrecruit\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate SET\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"source\\\":\\\"Haley Marketing\\\",\\\"applicantFirstName\\\":\\\"Test\\\",\\\"applicantPhone\\\":191783172938,\\\"applicantEmail\\\":\\\"97t@yahoo.com\\\",\\\"secreteKey\\\":\\\"xxxxxxxxxxxxxxxx\\\",\\\"applicantLastName\\\":\\\"Two\\\",\\\"applicantMobile\\\":1930239283,\\\"primarySource\\\":\\\"Linked In\\\"}\",\n            \"call\": \"https://avtrrt-developer-edition.na87.force.com/services/apexrest/AVTRRT/createApplicantFromHM\"\n        },\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.6118\",\n        \"key\": \"xxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate SET\"\n}"}],"_postman_id":"01062d15-f2bc-43e7-8b1e-e0297420be5d"},{"name":"Candidate Update","id":"6fc6090f-0239-4e81-8091-a7c6b4fc38c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\":6094\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4021b484-002b-4e25-bc93-bdaa09912ca1","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 17477,            \"count\": 5,            \"candidates\": [                {                    \"email\": \"???@what.com\",                    \"address\": {                        \"city\": \"???\",                        \"zip\": \"12345\",                        \"address1\": \"??3-17-1\",                        \"address2\": null,                        \"state\": \"WA\"                    },                    \"id\": 4294972616,                    \"phone\": \"(312) 456-4645\",                    \"first_name\": \"????\",                    \"last_name\": \"????\"                },                {                    \"address\": {                        \"city\": \"1\",                        \"zip\": \"11121\",                        \"address1\": \"1\",                        \"address2\": null,                        \"state\": \"IN\"                    },                    \"id\": 4295003776,                    \"phone\": \"(121) 121-2121\",                    \"first_name\": \"1\",                    \"last_name\": \"1\",                    \"cell_phone\": \"(561) 351-2531\"                },                {                    \"address\": {                        \"city\": \"Eagan\",                        \"zip\": \"55122\",                        \"address1\": \"123\",                        \"address2\": null,                        \"state\": \"MN\"                    },                    \"id\": 4295016700,                    \"first_name\": \"Behavorial test\",                    \"last_name\": \"100.00\"                },                {                    \"address\": {                        \"city\": \"Eagan\",                        \"zip\": \"55121\",                        \"address1\": \"123 street st\",                        \"address2\": null,                        \"state\": \"MN\"                    },                    \"id\": 16408,                    \"first_name\": \"Jeff1\",                    \"last_name\": \"1099 Test 12\"                },                {                    \"address\": {                        \"city\": \"21\",                        \"zip\": \"321351351\",                        \"address1\": \"12\",                        \"address2\": null,                        \"state\": \"IN\"                    },                    \"id\": 4295003774,                    \"phone\": \"(321) 653-1352\",                    \"first_name\": \"123\",                    \"last_name\": \"123\"                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Candidate GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.108501,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-30T13:21:30\",            \"APIKEY\": \"xxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295003774/addresses?skip=0&take=5\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"1.968246\",        \"key\": \"xxxxxxxxxxxxxxxx\",        \"fn\": \"_api_candidate\"    },    \"atsconnect_message\": \"\"}"}],"_postman_id":"6fc6090f-0239-4e81-8091-a7c6b4fc38c0"},{"name":"Candidate Get Education","id":"83b4dfe7-de1e-49ee-8ad7-930b4301f6ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"53749055-1305-4172-a69a-91dafe901da2","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:00:00 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"471"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272134"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:00:00\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:00:00\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.003256\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"83b4dfe7-de1e-49ee-8ad7-930b4301f6ab"},{"name":"Candidate Set Work History","id":"40f63ad1-48a9-4e81-8892-45cdc86bc3c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"634d46cd-920d-4c6a-b2c4-68777902680d","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:23:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"474"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199342"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:23:44\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:23:44\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.002616\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"40f63ad1-48a9-4e81-8892-45cdc86bc3c7"},{"name":"Candidate Set Education","id":"a6c75304-c78e-484c-9356-7117a8a6440c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"87bf6710-6425-439f-8215-9a05c4a1d378","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:01:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"471"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199305"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:01:52\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:01:52\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.003476\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a6c75304-c78e-484c-9356-7117a8a6440c"},{"name":"Candidate Get Work History","id":"f55cbac2-4376-4c1f-b67c-c4dfcedde070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For getting a candidate's work history.</p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0f63d38f-f3e2-4c24-8e72-7c6e16da1c2f","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:22:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"474"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199339"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:22:54\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:22:54\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.004297\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f55cbac2-4376-4c1f-b67c-c4dfcedde070"}],"id":"651259df-5c66-4b02-a8e8-18751f1b44ed","_postman_id":"651259df-5c66-4b02-a8e8-18751f1b44ed","description":""},{"name":"Custom","item":[{"name":"Custom","id":"5213eded-3fea-4b5c-ae8c-29ac45ed1bbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\n    },\n    \"vendor\": \"targetrecruit\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n    \"api_request_data\": {\n    \t    \"api_request_query\": {},\n        \"api_custom_action\": \"PUT\",\n        \"api_custom_call\": \"\"\n    }\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to TargetRecruit via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n    \"api_request_data\": {\n            \"api_request_query\": {},\n        \"api_custom_action\": \"PUT\",\n        \"api_custom_call\": \"\"\n    }\n</pre>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ee50ba2c-9b9a-4fb9-b8fb-d489d1927eab","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n       \"api_connection\": {\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\n        },\n        \"vendor\":\"targetrecruit\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":0,\n        \"api_verbose_dump\":0\n    },\n    \"api_request_data\": {\n    \t    \"api_request_query\": {},\n        \"api_custom_action\": \"PUT\",\n        \"api_custom_call\": \"\"\n    }\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:27:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"459"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199345"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:27:22\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:27:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.004602\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"5213eded-3fea-4b5c-ae8c-29ac45ed1bbc"}],"id":"7a73ae33-6c33-42e3-85ae-7b02219862b2","_postman_id":"7a73ae33-6c33-42e3-85ae-7b02219862b2","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"039b98f9-462f-4230-a851-08c97c82eacd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"908a3616-3da8-4c11-b073-447c844298f1","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"documentId\": 53336        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"File Upload\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.641516,            \"CALL_ACTION\": \"POST-FILE\",            \"TIMESTAMP\": \"2018-04-17T22:17:36\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295079948/Documents\",            \"values\": \"\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.719246\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_file\"    },    \"atsconnect_message\": \"\"}"},{"id":"afafc648-0a3d-4cd4-b564-e73313510ca8","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:28:19 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"462"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272170"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:28:19\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:28:19\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.00382\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"039b98f9-462f-4230-a851-08c97c82eacd"}],"id":"f24622dd-4cc2-4358-9adf-f3f2ff1c7fc9","_postman_id":"f24622dd-4cc2-4358-9adf-f3f2ff1c7fc9","description":""},{"name":"Job","item":[{"name":"Job Get","id":"8c333a58-7239-482c-a991-27f3923962db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\",\n      \"api_strip_url\":\"0\"\n    },\n    \"vendor\": \"targetrecruit\",\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n      \"api_request_fields\":\"payRange\"\n  }\n  \n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {}\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"dd847c91-58a5-4a14-ba1d-5b4a531612d6","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"  \r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:40:37 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"757"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272179"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {\n                \"totalCount\": 20,\n                \"count\": 20,\n                \"jobs\": [\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"5964\",\n                        \"title\": \"Oracle Specialist\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6035\",\n                        \"title\": \"UK Test 3\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6036\",\n                        \"title\": \"Oracle Specialist New\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6083\",\n                        \"title\": \"1\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6084\",\n                        \"title\": \"2\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6085\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6086\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6087\",\n                        \"title\": \"4\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6088\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6089\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6090\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6091\",\n                        \"title\": \"8\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6092\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6093\",\n                        \"title\": \"10\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6094\",\n                        \"title\": \"NY\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6095\",\n                        \"title\": \"12\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6096\",\n                        \"title\": \"13\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6097\",\n                        \"title\": \"Automation processs\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6098\",\n                        \"title\": \"Automation processs\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": null,\n                            \"zip\": null,\n                            \"state\": null\n                        },\n                        \"id\": \"6099\",\n                        \"title\": \"NY\"\n                    }\n                ]\n            },\n            \"xstatus\": \"20 jobs returned\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.433502\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2020-01-08T18:40:37\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"targetrecruit\"\n        },\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://avtrrt-developer-edition.na87.force.com/services/apexrest/AVTRRT/jobXMLFeed?source=HaleyMarketing\"\n        },\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.489458\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"20 jobs returned\"\n}"}],"_postman_id":"8c333a58-7239-482c-a991-27f3923962db"},{"name":"Job Get By ID","id":"7e7c75ff-990b-4f5c-a589-bc8221a71e1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": 9999\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 9999\n    }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7678c610-fc24-446e-8020-6d80d9c53629","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    \t\"id\": 9999\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:32:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"457"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199348"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:32:51\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:32:51\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.020581\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"7e7c75ff-990b-4f5c-a589-bc8221a71e1e"},{"name":"Job Search","id":"a782654d-d16c-47e1-861c-11acd34b506b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"id\": 9999\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 9999\n    }\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"be14b6b9-0a61-40ad-b11f-bc145c1d0d50","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"id\": 9999\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:35:53 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"458"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272176"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:35:53\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:35:53\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.009628\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a782654d-d16c-47e1-861c-11acd34b506b"}],"id":"1209b2a5-6a9c-4d30-b268-2045cd32da9a","_postman_id":"1209b2a5-6a9c-4d30-b268-2045cd32da9a","description":""},{"name":"Note","item":[{"name":"Note Set","id":"3ab7226d-c22f-484f-8be1-f4a38f92e786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a757ee0b-d9e3-4dea-a909-3507ecb84968","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:37:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"459"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"199351"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2020-01-08T18:37:54\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2020-01-08T18:37:54\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"targetrecruit\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.004395\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"3ab7226d-c22f-484f-8be1-f4a38f92e786"}],"id":"eb176881-bc64-4892-a19f-9593fa5652a6","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"eb176881-bc64-4892-a19f-9593fa5652a6","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"48675e20-0415-496a-a10d-c6bddb85c5a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\",\r\n\t  \"api_secret\": \"{{TargetRecruit_secret}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": \"0031W00002SYn0FQAT\",\r\n        \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\r\n        \"file_name\": \"Resume.doc\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - Target Recruit trApplicantId - <b>REQUIRED</b></p>\n</li>\n<li><p>file_data - base64 decoded string - <b>REQUIRED</b></p>\n</li>\n<li><p>file_name - name of file - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"0031W00002SYn0FQAT\",\n        \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZP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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\n        \"file_name\": \"Resume.doc\"\n    }\n  }\n}\n</pre>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"35bb7942-5e3c-4be8-8fd3-669c36c82b00","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{TargetRecruit_EmailToCandidate_address}}\",\r\n      \"api_pw\": \"{{TargetRecruit_api_pw}}\",\r\n      \"api_url\": \"{{TargetRecruit_api_url}}\"\r\n    },\r\n    \"vendor\": \"targetrecruit\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": \"0031W00002SYn0FQAT\",\r\n        \"file_data\": \"0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAOwADAP7/CQAGAAAAAAAAAAAAAAABAAAAKQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9//////////7////+////BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAD+////FAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACQAAAAlAAAAJgAAACcAAAAoAAAA/v///yoAAAD+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/v///wAAAAAAAAAAAQAAAP7////+////BAAAAAUAAAD+////BwAAAP7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8BAP7/AwoAAP////8GCQIAAAAAAMAAAAAAAABGGAAAAE1pY3Jvc29mdCBXb3JkLURva3VtZW50AAoAAABNU1dvcmREb2MAEAAAAFdvcmQuRG9jdW1lbnQuOAD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAABAAAA4IWf8vlPaBCrkQgAKyez2TAAAAB8AAAABgAAAAEAAAA4AAAACQAAAEAAAAAKAAAATAAAAAsAAABYAAAADAAAAGQAAAANAAAAcAAAAAIAAADp/QAAHgAAAAIAAAAyAAAAQAAAAABkSIoAAAAAQAAAAADmH25iuLoBQAAAAIBlOra7ZNUBQAAAAIDVB+BUtNUBAAAAAAAAAAAAAAAAAAAAAAAAAAD+/wAAAQACAAAAAAAAAAAAAAAAAAAAAAACAAAAAtXN1ZwuGxCTlwgAKyz5rkQAAAAF1c3VnC4bEJOXCAArLPmuXAAAABgAAAABAAAAAQAAABAAAAACAAAA6f0AABgAAAABAAAAAQAAABAAAAACAAAA6f0AAAAAAAAAAAAAAAAAABIAKAAKAAEAWwAPAAAAAAAAAAAAZgAAEPH/AgBmAAAABgBOAG8AcgBtAGEAbAAAABQAAAAxJAEqJAE3JAE1JAEzJAFBJAAzAEIqAE9KAwBRSgMAQ0oYAG1ICQRzSAkES0gCAFBKBABuSAQIdEgECF5KBQBhShgAX0g5BAAAAAAAAAAAAAAAAAAAAAAA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SgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAgAAAAAAAAAADBAAAF6EAABghAAAFcYFAAEAAAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EhgVghOX+FcYFAAGGBQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6ESQhghOX+FcYFAAFJCAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EDAtghOX+FcYFAAEMCwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6Ezw1ghOX+FcYFAAHPDQZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EkhBghOX+FcYFAAGSEAZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EVRNghOX+FcYFAAFVEwZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6EGBZghOX+FcYFAAEYFgZPSgcAUUoHAF5KCAABALfwAQAAABcAAAAAAAAAAAAAAAAAAAAAAAAADBAAAF6E2xhghOX+FcYFAAHbGAZPSgcAUUoHAF5KCAABALfwAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAAAQAAAP8AAAAAAAAAAAAAAgAAAAAAAAAAABAAAF6EAABghAAAFcYFAAEAAAYAAAEAAAD/AAAAAAAAAAAAAAIAAAAAAAAAAAAQAABehAAAYIQAABXGBQABAAAGAAABAAAA/wAAAAAAAAAAAAACAAAAAAAAAAAAEAAAXoQAAGCEAAAVxgUAAQAABgAABQAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAA/////////////////////////////wUAAAAHAFcAVwA4AE4AdQBtADEABwBXAFcAOABOAHUAbQAyAAcAVwBXADgATgB1AG0AMwAHAFcAVwA4AE4AdQBtADQAAAAAAAAAPwcAAAAAAAACEAAAAAAAAAA/BwAAUAAACAAAAAAMAAAARxaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAcgBpAGEAbAAAAGkWkAEAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAGkAYgBlAHIAYQB0AGkAbwBuACAAUwBlAHIAaQBmAAAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AAAA3BpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgBTAGkAbQBTAHUAbgAAADUGkAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAGEAbgBnAGEAbAAAAEsEkAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAG8AYgBvAHQAbwAAAHMAYQBuAHMALQBzAGUAcgBpAGYAAAA1BJABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwB5AG0AYgBvAGwAAABfBJABAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwBwAGUAbgBTAHkAbQBiAG8AbAAAAEEAcgBpAGEAbAAgAFUAbgBpAGMAbwBkAGUAIABNAFMAAABTJpABABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATABpAGIAZQByAGEAdABpAG8AbgAgAFMAYQBuAHMAAABBAHIAaQBhAGwAAABHBpABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBpAGMAcgBvAHMAbwBmAHQAIABZAGEASABlAGkAAAA1BJABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQBhAG4AZwBhAGwAAABCAAQAAQiNGAAAxQIAAGgBAAAAAGms+0VprPtFaaz7RQEAAAAAAPoAAAAjBwAAAQAZAAAABACDkBkAAAD6AAAAIwcAAAEAGQAAABkAAAAAAAAAJwMAIAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAACAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOylAQFNIAkEAADwEr8AAAAAAAAwAAAAAAAIAAB+FgAADgBDYW9sYW44MAAAAAAAAAAAAAAAAAAAAAAAAAkEFgA1KgAAAAAAAAAAAAD2BQAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAQAAAAAAAP//DwAMAAAAAgAAAP//DwAOAAAABwAAAP//DwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAaAUAAAAAAABoBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIBgAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBgAAFAAAAHAGAAA8AAAAAAAAAAAAAAAyFwAAQgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQaAABiAgAAAAAAAAAAAAAdFwAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsLAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAYAAH8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAUAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMULAACOAAAAYRYAAGgAAAAIBgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMkWAABIAAAAAAAAAAAAAAARFwAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVABlAHMAdAAgAFQAaABpAHMADQANAAgACAANAEUAeABwAGUAcgBpAGUAbgBjAGUACwBBAEIAQwAgAEIAQQBOAEsAoAAoAEcAbABvAGIAYQBsACAAZgBpAG4AYQBuAGMAaQBhAGwAIABzAGUAcgB2AGkAYwBlAHMAIABvAHIAZwBhAG4AaQB6AGEAdABpAG8AbgApAKAAFCAgAFMAbwBtAGUAdABvAHcAbgAsACAARwBBACAAoAAgAKAAIACgACAAoAAgAKAAMgAwADAAOAAgAHQAbwAgAFAAcgBlAHMAZQBuAHQADQBCAHUAcwBpAG4AZQBzAHMAIABBAG4AYQBsAHkAcwB0ACAASQBJACAALwAgAEIAdQBzAGkAbgBlAHMAcwAgAEEAbgBhAGwAeQBzAHQAIABJACwAoAAyADAAMQAzACAAdABvACAAUAByAGUAcwBlAG4AdAANAEQAYQB0AGEAIABBAG4AYQBsAHkAcwB0ACwAoAAyADAAMQAxACAAdABvACAAMgAwADEAMwAHAEMAcgBlAGQAaQB0ACAAUgBpAHMAawAgAEEAbgBhAGwAeQBzAHQALACgADIAMAAxADAAIAB0AG8AIAAyADAAMQAxAA0AUQB1AGEAbABpAHQAeQAgAEEAcwBzAHUAcgBhAG4AYwBlACAAKABRAEEAKQAgAEUAbgBnAGkAbgBlAGUAcgAsAKAAMgAwADAAOAAgAHQAbwAgADIAMAAxADAABwAHAEUAYQByAG4AZQBkACAAcwBlAHYAZQByAGEAbAAgAHAAcgBvAG0AbwB0AGkAbwBuAHMAIABkAHUAZQAgAHQAbwAgAGUAeABlAG0AcABsAGEAcgB5ACAAdwBvAHIAawAgAHAAZQByAGYAbwByAG0AYQBuAGMAZQAuACAAQwB1AHIAcgBlAG4AdABsAHkAIABvAHYAZQByAHMAZQBlACAAaQBuAGkAdABpAGEAdABpAHYAZQBzACAAZABlAHMAaQBnAG4AZQBkACAAdABvACAAYQBkAHYAYQBuAGMAZQAgAGMAbwBuAHQAaQBuAHUAbwB1AHMAIABpAG0AcAByAG8AdgBlAG0AZQBuAHQALAAgAGMAbwBtAHAAZQB0AGkAdABpAHYAZQAgAGEAZAB2AGEAbgB0AGEAZwBlACAAYQBuAGQAIABwAHIAbwBmAGkAdABhAGIAbABlACAAZwByAG8AdwB0AGgALgAgAEwAZQBhAGQAIABiAHUAcwBpAG4AZQBzAHMAIABwAHIAbwBjAGUAcwBzACAAYQBuAGQAIAB3AG8AcgBrAGYAbABvAHcAIABtAGEAcABwAGkAbgBnAC8AYQBuAGEAbAB5AHMAaQBzACAAdQBzAGkAbgBnACAAZABhAHQAYQAgAGMAYQBwAHQAdQByAGUAIABhAG4AZAAgAG0AbwBkAGUAbABpAG4AZwAgAHQAZQBjAGgAbgBvAGwAbwBnAGkAZQBzACwAIABtAGUAdABoAG8AZABzACAAYQBuAGQAIAB0AG8AbwBsAHMALgAgAEEAbgBhAGwAeQB6AGUAIABiAHUAcwBpAG4AZQBzAHMALAAgAHUAcwBlAHIAIABhAG4AZAAgAHQAZQBjAGgAbgBpAGMAYQBsACAAcgBlAHEAdQBpAHIAZQBtAGUAbgB0AHMAIABmAG8AcgAgAHAAcgBvAHAAbwBzAGUAZAAgAFMAQQBTACwAIAB3AGUAYgAtAGIAYQBzAGUAZAAgAGEAbgBkACAAcwB5AHMAdABlAG0AIABzAG8AbAB1AHQAaQBvAG4AcwAuAA0AIABDAG8AbQBwAGwAZQB0AGUAZAAgAGkAbgAtAGQAZQBwAHQAaAAgAGEAbgBhAGwAeQBzAGUAcwAgAGYAbwByACAAYgB1AHMAaQBuAGUAcwBzAC0AbwBwAHQAaQBtAGkAegBhAHQAaQBvAG4AIABwAHIAbwBqAGUAYwB0AHMALAAgAHIAZQBwAG8AcgB0AGkAbgBnACAAdABvAG8AbABzACwAIABiAGEAYwBrAC0AbwBmAGYAaQBjAGUAIABwAHIAbwBnAHIAYQBtAHMAIABhAG4AZAAgAHAAYQB5AG0AZQBuAHQALQBwAHIAbwBjAGUAcwBzAGkAbgBnACAAYQBwAHAAcwAuACAATQBlAGEAcwB1AHIAYQBiAGwAZQAgAG8AdQB0AGMAbwBtAGUAcwA6AA0ACAAIAAgADQANACAAUAByAG8AdgBpAGQAZQBkACAAZQB4AGUAYwB1AHQAaQB2AGUAcwAgAHcAaQB0AGgAIABhAG4AYQBsAHkAdABpAGMAcwAgAGEAbgBkACAAZABlAGMAaQBzAGkAbwBuAC0AcwB1AHAAcABvAHIAdAAgAHQAbwBvAGwAcwAgAHUAcwBlAGQAIABhAHMAIAB0AGgAZQAgAGIAYQBzAGkAcwAgAGYAbwByACAAcgBlAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACwAIABjAG8AbgBzAG8AbABpAGQAYQB0AGkAbwBuACAAYQBuAGQAIAByAGUAbABvAGMAYQB0AGkAbwBuACAAcwB0AHIAYQB0AGUAZwBpAGUAcwAuAFAAYQByAHQAbgBlAHIAZQBkACAAdwBpAHQAaAAgAGQAZQB2AGUAbABvAHAAZQByAHMAIAB0AG8AIABhAHUAdABvAG0AYQB0AGUAIABtAGEAbgB1AGEAbAAgAHAAcgBvAGMAZQBzAHMAZQBzACwAIABzAGEAdgBpAG4AZwAgAHQAaQBtAGUAIABhAG4AZAAgAG0AbwBuAGUAeQAgAHcAaABpAGwAZQAgAGQAZQBjAHIAZQBhAHMAaQBuAGcAIABlAHIAcgBvAHIAcwAuACAAQwByAGUAZABpAHQAZQBkACAAYQBzACAAYQAgAHAAcgBpAG0AYQByAHkAIABkAHIAaQB2AGkAbgBnACAAZgBvAHIAYwBlACAAYgBlAGgAaQBuAGQAIABhACAANQAlACAAaQBuAGMAcgBlAGEAcwBlACAAaQBuACAAbQBhAHIAZwBpAG4AcwAgAHQAaABpAHMAIABmAGkAcwBjAGEAbAAgAHkAZQBhAHIALgANAEMAbwBsAGwAYQBiAG8AcgBhAHQAZQBkACAAdwBpAHQAaAAgAHMAdABhAGsAZQBoAG8AbABkAGUAcgAgAGcAcgBvAHUAcABzACAAYQBjAHIAbwBzAHMAIAB0AGgAZQAgAG8AcgBnAGEAbgBpAHoAYQB0AGkAbwBuACAAdABvACAAZQBuAHMAdQByAGUAIABiAHUAcwBpAG4AZQBzAHMAIABhAG4AZAAgAHQAZQBjAGgAbgBvAGwAbwBnAHkAIABhAGwAaQBnAG4AbQBlAG4AdAAuACAAUAByAG8AcABvAHMAZQBkACAAcwBvAGwAdQB0AGkAbwBuAHMAIABtAGUAZQB0AGkAbgBnACAAZABlAGYAaQBuAGUAZAAgAHMAcABlAGMAaQBmAGkAYwBhAHQAaQBvAG4AcwAgAGEAbgBkACAAbgBlAGUAZABzAC4ADQBQAGUAcgBmAG8AcgBtAGUAZAAgAHEAdQBhAGwAaQB0AHkAIABhAHMAcwB1AHIAYQBuAGMAZQAsACAAcwB5AHMAdABlAG0AIABpAG4AdABlAGcAcgBhAHQAaQBvAG4AIABhAG4AZAAgAHUAcwBlAHIAIABhAGMAYwBlAHAAdABhAG4AYwBlACAAdABlAHMAdABpAG4AZwAgAGYAYQBjAGkAbABpAHQAYQB0AGkAbgBnACAAbwBuAC0AdABpAG0AZQAsACAAbwBuAC0AYgB1AGQAZwBlAHQAIABhAG4AZAAgAGEAYwBjAGwAYQBpAG0AZQBkACAAHCBnAG8ALQBsAGkAdgBlAB0gIABvAGYAIABlAG4AdABlAHIAcAByAGkAcwBlACAAaQBtAHAAbABlAG0AZQBuAHQAYQB0AGkAbwBuAHMAIABmAG8AcgAgAHUAcAAgAHQAbwAgADEA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\",\r\n        \"file_name\": \"Resume.doc\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:42:46 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"299"},{"key":"X-SASnode","value":"ats-connect-release"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"272182"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"status\": \"ok\",\n            \"data\": {},\n            \"xstatus\": \"Sent email to emailtocandidate@p-2cn81lx6fxp7v8kw0sv7eo9j5uty70dmrooq1i707kyvh2qezp.4-ibu3eac.na2.apex.salesforce.com\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"Resume Parse\"\n        },\n        \"vendor\": \"targetrecruit\",\n        \"elapsed\": \"0.281514\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Sent email to emailtocandidate@p-2cn81lx6fxp7v8kw0sv7eo9j5uty70dmrooq1i707kyvh2qezp.4-ibu3eac.na2.apex.salesforce.com\"\n}"}],"_postman_id":"48675e20-0415-496a-a10d-c6bddb85c5a0"}],"id":"e8094c9a-f859-4017-9bd2-3bb9bf139320","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"e8094c9a-f859-4017-9bd2-3bb9bf139320","description":""}],"id":"6d147ff7-2b97-4534-8138-e609641178c7","description":"<p>TargetRecruit</p>\n<p><a href=\"https://TargetRecruit.com\">https://TargetRecruit.com</a> (<a href=\"https://targetrecruit.com/\">https://targetrecruit.com/</a>) </p>\n<p>Overview</p>\n<p>This integration is fairly limited. It only supports,* authorization, retrieving jobs, creating/updating candidates and requesting a resume parse*.</p>\n<p>API Docs</p>\n<p><a href=\"https://docs.google.com/document/d/1A0lvLYhEdMV-higEWa_6uLAP4yomFtC87BZOldRqFSM/edit\">https://docs.google.com/document/d/1A0lvLYhEdMV-higEWa_6uLAP4yomFtC87BZOldRqFSM/edit</a></p>\n","event":[{"listen":"prerequest","script":{"id":"e1ae871d-77d8-4606-a2e5-b18552966492","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e75547f6-4250-4dc6-9e0b-69b33ec53c01","type":"text/javascript","exec":[""]}}],"_postman_id":"6d147ff7-2b97-4534-8138-e609641178c7"},{"name":"Tempworks","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"78c68324-9f2f-4099-94fe-b40133748a89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - Your Tempworks AccountSid - <b>REQUIRED</b></p>\n</li>\n<li><p>api_pw - Your Tempworks AuthToken - <b>REQUIRED</b></p>\n</li>\n<li><p>api_url - Your Self-Hosted Tempworks base URL - <b>OPTIONAL</b> - default: api.ontempworks.com</p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5f2f2d17-d9fb-4b27-8bc9-bb287d49bd8e","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 12 Nov 2022 21:30:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"425"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1085353"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Authentication\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.234742\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-12T21:30:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.28002\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"78c68324-9f2f-4099-94fe-b40133748a89"}],"id":"82defc26-f867-492b-ab5a-c92f1ffacb86","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"82defc26-f867-492b-ab5a-c92f1ffacb86"},{"name":"Application","item":[{"name":"Application Set","id":"ccfefa13-abf1-46dc-bb64-8370725dd6e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 41099,\r\n            \"status\": 1\r\n        },\r\n        \"job\": {\r\n            \"id\": 477\r\n        }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For creating a candidate application</p>\n\n<ul>\n<li>candidate -&gt; ID - <strong>REQUIRED</strong> - candidate ID</li>\n<li>candidate -&gt; status - <strong>OPTIONAL</strong> - candidate status to mark the application. Default: 1 - Applicant is being considered as a candidate.</li>\n<li>job -&gt; ID - <strong>REQUIRED</strong> - job ID, for which the application is being submitted</li>\n</ul>\n","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b277caa2-1847-4ffa-af8f-be647244f007","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"AssignmentRestrictionSessionId\": [                \"There are unapproved assignment restriction results for the assignment restriction session with an Id of f06292e1-25a2-4cf7-83f8-d9032d59e4a4.\"            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 0,            \"CALL_STATUS\": 0,            \"CALL_REQUEST\": \"Application SET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.355309,            \"CALL_ACTION\": \"POST\",            \"TIMESTAMP\": \"2018-05-01T14:34:56\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Error\",            \"VENDOR\": \"tempworks\",            \"ERROR_TYPE\": \"ATS\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"{\\\"AssignmentRestrictionSessionId\\\":\\\"f06292e1-25a2-4cf7-83f8-d9032d59e4a4\\\",\\\"JobOrderCandidateStatusId\\\":1,\\\"employeeId\\\":4295016700}\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/JobOrders/4295088898/candidates\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"1.128406\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_application\"    },    \"atsconnect_message\": \"An error occured. Please see api_response/api_data for detailed response from the origin ATS\"}"},{"id":"cabfcddd-4062-4111-a742-bd300a3b84c3","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 41099,\r\n            \"status\": 1\r\n        },\r\n        \"job\": {\r\n            \"id\": 479\r\n        }\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Jan 2023 22:22:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"541"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"762504"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": \"7553e51c-64a4-4725-bb10-c5ddacc66613\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.104373\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2023-01-24T22:22:32\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Application set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"AssignmentRestrictionSessionId\\\":\\\"7553e51c-64a4-4725-bb10-c5ddacc66613\\\",\\\"JobOrderCandidateStatusId\\\":1,\\\"employeeId\\\":41099}\",\n            \"call\": \"https://api.ontempworks.com/JobOrders/479/candidates\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.704044\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Application set\"\n}"}],"_postman_id":"ccfefa13-abf1-46dc-bb64-8370725dd6e2"},{"name":"Application Get By ID","id":"f663e2c8-415b-4c53-ba29-41d58121be3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n\"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"job\": {\r\n                \"id\": \"477\"\r\n               },\r\n        \"id\": \"54695a07-945a-44c9-97ee-2132205095e4\"                           \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<ul>\n<li>job -&gt; ID - <strong>REQUIRED</strong> - job ID, for which the application is being submitted</li>\n<li>id - <strong>REQUIRED</strong> - ID (assignment restriction ID)</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"\"api_request_data\": {\n    \"api_request_query\": {\n        \"job\": {\n                \"id\": \"477\"\n               },\n        \"id\": \"54695a07-945a-44c9-97ee-2132205095e4\"                           \n    }\n  }\n\n</code></pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f0ef334b-089a-405c-b539-813356bd2b32","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n\"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"job\": {\r\n                \"id\": \"477\"\r\n               },\r\n        \"id\": \"54695a07-945a-44c9-97ee-2132205095e4\"                           \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Feb 2023 21:28:43 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"589"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"197194"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"application\": [\n                {\n                    \"date_applied\": \"2023-02-09\",\n                    \"candidate\": {\n                        \"id\": 41099\n                    },\n                    \"id\": \"54695a07-945a-44c9-97ee-2132205095e4\",\n                    \"rep_user\": \"HaleyMarketing.Demo\",\n                    \"job\": {\n                        \"id\": 477\n                    }\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.149646\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-02-09T21:28:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 application result returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/JobOrders/477/assignmentRestrictions/54695a07-945a-44c9-97ee-2132205095e4?skip=0&take=1\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.427017\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"1 application result returned\"\n}"}],"_postman_id":"f663e2c8-415b-4c53-ba29-41d58121be3f"},{"name":"Application Get","id":"ca62bb9c-7fa6-484d-b4d2-faaf24ce3479","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>\n","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"51940964-5c90-4e84-b7ba-6da3eddd250e","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n\t\"api_sandbox\":1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1    \r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Jan 2023 18:01:22 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"441"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"696800"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2023-01-25T18:01:22\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2023-01-25T18:01:22\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"tempworks\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.269675\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"ca62bb9c-7fa6-484d-b4d2-faaf24ce3479"}],"id":"c9e39429-1c61-4634-931b-1e155191ac9f","_postman_id":"c9e39429-1c61-4634-931b-1e155191ac9f","description":""},{"name":"Branch","item":[{"name":"Branch Get","id":"e469207f-8d72-459d-9476-967b5f538d80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/branch/get","description":"<p>For retrieving all branches.</p>\n\n<ul>\n<li><p>branch - <b>OPTIONAL</b></p>\n</li>\n<li><p>offset - <b>OPTIONAL</b></p>\n</li>\n<li><p>limit - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {}\n</pre>","urlObject":{"path":["branch","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"435a8ba4-1923-4192-ab57-967a9af02c27","name":"Branch Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/branch/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 21 Jun 2025 18:16:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1361"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1868236"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/branch/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"13\",\n            \"branches\": [\n                {\n                    \"emailAddress\": \"WestPalmBeach.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Administrative\",\n                    \"branchName\": \"Administrative\",\n                    \"employerId\": 0,\n                    \"branchId\": 14,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"PALM BEACH GARDENS\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"11211 PROSPERITY FARMS RD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE C-210\",\n                        \"postalCode\": \"33410\"\n                    },\n                    \"phoneNumber\": \"561-694-6700\"\n                },\n                {\n                    \"emailAddress\": \"BocaRaton.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Boca Raton\",\n                    \"branchName\": \"Boca Raton\",\n                    \"employerId\": 0,\n                    \"branchId\": 0,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Delray Beach\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"186 NW 5th Ave\",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": \"33444\"\n                    },\n                    \"phoneNumber\": \"561-272-6636\"\n                },\n                {\n                    \"emailAddress\": \".\",\n                    \"isActive\": false,\n                    \"region\": null,\n                    \"branchFullName\": \"Delray Beach\",\n                    \"branchName\": \"Delray Beach\",\n                    \"employerId\": 0,\n                    \"branchId\": 1,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"DELRAY BEACH\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"500 NE 5TH AVE \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"UNIT 3\",\n                        \"postalCode\": \"33484\"\n                    },\n                    \"phoneNumber\": \"561-272-8585\"\n                },\n                {\n                    \"emailAddress\": \"FortPierce.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Fort Pierce\",\n                    \"branchName\": \"Fort Pierce\",\n                    \"employerId\": 0,\n                    \"branchId\": 2,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Port Saint Lucie\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"584 NW UNIVERSITY BLVD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": \"34986\"\n                    },\n                    \"phoneNumber\": \"772-464-7771\"\n                },\n                {\n                    \"emailAddress\": \".\",\n                    \"isActive\": false,\n                    \"region\": null,\n                    \"branchFullName\": \"FTP Ind\",\n                    \"branchName\": \"FTP Ind\",\n                    \"employerId\": 0,\n                    \"branchId\": 3,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"fl\",\n                        \"municipality\": null,\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"1309 DELAWARE \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": null\n                    },\n                    \"phoneNumber\": \"772-466-3211\"\n                },\n                {\n                    \"emailAddress\": \".\",\n                    \"isActive\": false,\n                    \"region\": null,\n                    \"branchFullName\": \"Grant\",\n                    \"branchName\": \"Grant\",\n                    \"employerId\": 0,\n                    \"branchId\": 12,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": null,\n                        \"dateAddressStandardized\": null,\n                        \"street1\": null,\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": null\n                    },\n                    \"phoneNumber\": \"4\"\n                },\n                {\n                    \"emailAddress\": \".\",\n                    \"isActive\": false,\n                    \"region\": null,\n                    \"branchFullName\": \"Nortel\",\n                    \"branchName\": \"Nortel\",\n                    \"employerId\": 0,\n                    \"branchId\": 4,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"BOCA RATON\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"3700 AIRPORT RD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE 208\",\n                        \"postalCode\": \"33431\"\n                    },\n                    \"phoneNumber\": \"561-392-4468\"\n                },\n                {\n                    \"emailAddress\": \"WestPalmBeach.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Palm Beach Gardens\",\n                    \"branchName\": \"Palm Beach Gardens\",\n                    \"employerId\": 0,\n                    \"branchId\": 5,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Palm Beach Gardens\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"11211 PROSPERITY FARMS RD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE C\",\n                        \"postalCode\": \"33410\"\n                    },\n                    \"phoneNumber\": \"561-688-9330\"\n                },\n                {\n                    \"emailAddress\": \".\",\n                    \"isActive\": false,\n                    \"region\": null,\n                    \"branchFullName\": \"Port St. Lucie\",\n                    \"branchName\": \"Port St. Lucie\",\n                    \"employerId\": 0,\n                    \"branchId\": 6,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"PORT ST LUCIE\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"2500 SE MIDPORT RD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE 100\",\n                        \"postalCode\": \"34952\"\n                    },\n                    \"phoneNumber\": \"772-335-8280\"\n                },\n                {\n                    \"emailAddress\": \"\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Riviera Beach\",\n                    \"branchName\": \"Riviera Beach\",\n                    \"employerId\": 0,\n                    \"branchId\": 7,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Riviera Beach\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"1905 BROADWAY AVE \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": \"33404\"\n                    },\n                    \"phoneNumber\": \"561-842-8622\"\n                },\n                {\n                    \"emailAddress\": \"Stuart.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Stuart\",\n                    \"branchName\": \"Stuart\",\n                    \"employerId\": 0,\n                    \"branchId\": 8,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Stuart\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"1650 S KANNER \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": null,\n                        \"postalCode\": \"34994\"\n                    },\n                    \"phoneNumber\": \"772-287-5359\"\n                },\n                {\n                    \"emailAddress\": \"\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Support Center\",\n                    \"branchName\": \"Support Center\",\n                    \"employerId\": 0,\n                    \"branchId\": 9,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"PALM BEACH GARDENS\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"11211 PROSPERITY FARMS RD \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE C210\",\n                        \"postalCode\": \"33410\"\n                    },\n                    \"phoneNumber\": \"561-694-2902\"\n                },\n                {\n                    \"emailAddress\": \"VeroBeach.FL@manpower.com\",\n                    \"isActive\": true,\n                    \"region\": null,\n                    \"branchFullName\": \"Vero Beach\",\n                    \"branchName\": \"Vero Beach\",\n                    \"employerId\": 0,\n                    \"branchId\": 10,\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"location\": null,\n                        \"region\": \"FL\",\n                        \"municipality\": \"Vero Beach\",\n                        \"dateAddressStandardized\": null,\n                        \"street1\": \"2155 15TH AVE \",\n                        \"countryCode\": 840,\n                        \"attentionTo\": null,\n                        \"street2\": \"STE A\",\n                        \"postalCode\": \"32960\"\n                    },\n                    \"phoneNumber\": \"772-562-4330\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Branch GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.174445\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-06-21T18:16:19\",\n            \"APIKEY\": \"ZDNkYTc3MDM5MWZkNDZlN2E1MTEzOTc5ODk2ZjFkODA6ZDg5NGFlNmFkYTMyNDMzMWFjMWFiMWY5NDYzMTZhM2U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"13 branches returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/DataLists/branches?skip=0&take=50\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.24748\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_branch\"\n    },\n    \"atsconnect_message\": \"13 branches returned\"\n}"}],"_postman_id":"e469207f-8d72-459d-9476-967b5f538d80"}],"id":"0ed3e1aa-f4cb-45c4-a3ae-0af17c6b38a4","event":[{"listen":"prerequest","script":{"id":"94bcead0-9c2f-4a53-a98b-ed8cfffa433d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"98461013-cf0f-4cf5-8536-656a853c5999","type":"text/javascript","exec":[""]}}],"_postman_id":"0ed3e1aa-f4cb-45c4-a3ae-0af17c6b38a4","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"a925e9e7-e784-4fb2-82b3-a70ba31482a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all candidate data.</p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b82a6b9e-f70b-4a3e-8134-f1861643209c","name":"Candidate Get with Limit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"limit\": 5\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Jan 2024 22:55:14 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"963"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"821677"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"5\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-282-3351\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Aaron\",\n                    \"email\": \"nowage@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41268\",\n                    \"first_name\": \"Flynn\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-335-1463\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Connor\",\n                    \"email\": \"fygujin@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41267\",\n                    \"first_name\": \"Tarik\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 682-505-7413\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Debra\",\n                    \"email\": \"miduqajom@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"92358\",\n                        \"address1\": \"Etiwanda Peak\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"41320\",\n                    \"first_name\": \"Priscilla\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"+1 888-648-5454\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Haider\",\n                    \"email\": \"nhaider@haleymarketing.com\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Bay Shore\",\n                        \"zip\": \"11706\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41386\",\n                    \"first_name\": \"Naqi\",\n                    \"washed_status\": \"Unfamiliar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 212-303-4582\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Ivor\",\n                    \"email\": \"gilarolej@mailinator.com\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10009\",\n                        \"address1\": \"Manhattan (New York), NY 10009\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41319\",\n                    \"first_name\": \"Jena\",\n                    \"washed_status\": \"Familiar\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.217478\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-01-11T22:55:17\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"5 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/41319/Status?skip=0&take=5\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"2.859988\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"5 candidates returned\"\n}"},{"id":"f8939d48-cf61-4cf7-8cce-3f0e127234ec","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 31 Jan 2024 21:21:37 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3495"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"758726"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"142\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-282-3351\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Aaron\",\n                    \"email\": \"nowage@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41268\",\n                    \"first_name\": \"Flynn\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-335-1463\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Connor\",\n                    \"email\": \"fygujin@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41267\",\n                    \"first_name\": \"Tarik\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 682-505-7413\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Debra\",\n                    \"email\": \"miduqajom@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"92358\",\n                        \"address1\": \"Etiwanda Peak\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"41320\",\n                    \"first_name\": \"Priscilla\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"+1 888-648-5454\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Haider\",\n                    \"email\": \"nhaider@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Bay Shore\",\n                        \"zip\": \"11706\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41386\",\n                    \"first_name\": \"Naqi\",\n                    \"washed_status\": \"Unfamiliar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 212-303-4582\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Ivor\",\n                    \"email\": \"gilarolej@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10009\",\n                        \"address1\": \"Manhattan (New York), NY 10009\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41319\",\n                    \"first_name\": \"Jena\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"K\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41096\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"A\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.991.1211\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"email\": \"bkodo@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Wheaton\",\n                        \"zip\": \"13069\",\n                        \"address1\": \"109 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41099\",\n                    \"first_name\": \"Al\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.123.1231\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41095\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41121\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"K\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"899.190.0000\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"191 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41124\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"K\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.5555\",\n                    \"email\": \"tshoemaker@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41135\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41139\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41140\",\n                    \"first_name\": \"K\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41093\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"T\",\n                    \"last_name\": \"K\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Ka\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"test@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41128\",\n                    \"first_name\": \"Ka\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41094\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Ks\",\n                    \"last_name\": \"Ka\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41098\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Ag\",\n                    \"last_name\": \"Kaa\",\n                    \"cell_phone\": \"999.123.1231\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Kd\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"boojkhjkhi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41185\",\n                    \"first_name\": \"Km\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kgkkagaglmljols\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5b7agagl0Pkhlki98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41191\",\n                    \"first_name\": \"Pokagaklmsklgfk\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41097\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Aa\",\n                    \"last_name\": \"Kl\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"KM\",\n                    \"cell_phone\": \"899.110.0000\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13066\",\n                        \"address1\": \"39 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41108\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"KM\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kod\",\n                    \"cell_phone\": \"999.111.0090\",\n                    \"email\": \"bjkhjkhi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41186\",\n                    \"first_name\": \"Kim\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kods\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"bjkhjiy5khi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41187\",\n                    \"first_name\": \"Kims\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdlmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5khi98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41189\",\n                    \"first_name\": \"Kikkmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdlmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5Pkhi98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41190\",\n                    \"first_name\": \"Pikkmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5khi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41188\",\n                    \"first_name\": \"Kikmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"L\",\n                    \"cell_phone\": \"899.190.0900\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13069\",\n                        \"address1\": \"1999 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41125\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Z\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytest@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41473\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"3RD\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"t8917825@gmail.com\",\n                    \"employee_status\": \"inactive\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41387\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytest@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41471\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytest@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41472\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 718-288-3672\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lewis\",\n                    \"email\": \"rlewis@inbox.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11235\",\n                        \"address1\": \"2900 East 29th Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41212\",\n                    \"first_name\": \"Robert\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41461\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41462\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41463\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41464\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"th@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41357\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"a@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41358\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"aa@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41359\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"aaa@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41360\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"b@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41361\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"bb@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41362\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"bbb@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41363\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"c@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41364\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"cc@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41365\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"ccc@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41366\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"d@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41367\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"e@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41368\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"ee@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41369\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"eeelll@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41377\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"aaelll@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41378\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"aaollllkkkkk@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41379\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"email\": \"aaollkkk@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41380\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41465\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee123@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41466\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41092\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"O\",\n                    \"last_name\": \"M\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 404-263-8705\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mcdowell\",\n                    \"email\": \"vatewihezy@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41199\",\n                    \"first_name\": \"Lois\"\n                },\n                {\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41084\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Answer\",\n                    \"last_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"k0j3@mailinator.com\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Me\",\n                    \"cell_phone\": \"123.456.7893\",\n                    \"email\": \"boo@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41086\",\n                    \"first_name\": \"Aser\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"818.123.1211\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Me\",\n                    \"cell_phone\": \"998.511.1900\",\n                    \"email\": \"mail2@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41103\",\n                    \"first_name\": \"N\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mem\",\n                    \"email\": \"kjhj84s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"399 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"31051\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Tp\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"toe@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31050\",\n                    \"first_name\": \"Booger\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"cell_phone\": \"899.140.0000\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"391 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41112\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41122\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31053\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31048\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"eee@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41370\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Unfamiliar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mep\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41091\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13062\",\n                        \"address1\": \"119 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Oserp\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mes\",\n                    \"email\": \"k0j823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"10062\",\n                        \"address1\": \"909 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41085\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Aswer\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mes\",\n                    \"email\": \"4s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41204\",\n                    \"first_name\": \"Tapping\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mimrands\",\n                    \"email\": \"kjhj8s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83061\",\n                        \"address1\": \"190 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41256\",\n                    \"first_name\": \"Tup\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-638-1508\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Normanly\",\n                    \"email\": \"fyluneq@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41198\",\n                    \"first_name\": \"Caryn\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"One\",\n                    \"cell_phone\": \"31061@mailinator.com\",\n                    \"email\": \"31061@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31061\",\n                    \"first_name\": \"Another\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 219-884-2431\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Paul\",\n                    \"email\": \"todufejate@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41318\",\n                    \"first_name\": \"Arsenio\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 563-376-5501\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Quinn\",\n                    \"email\": \"wujoro@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41321\",\n                    \"first_name\": \"Eugenia\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31064\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"As\",\n                    \"last_name\": \"Ra\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31065\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Ans\",\n                    \"last_name\": \"Ram\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31055\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31054\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41120\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"File Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"41113\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"File Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"41104\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"email\": \"tiffany@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41290\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41153\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41151\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker030823@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41144\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoe030723-5@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41143\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"email\": \"tshoe030723-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41142\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41215\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2901\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Lockport\",\n                        \"zip\": \"14094\",\n                        \"address1\": \"6028 Sheridan Drive Suite 200\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41214\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41213\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41192\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+18886962907\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-7@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41203\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2908\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-8@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41202\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2909\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-9@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41201\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2905\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41200\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042123@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41195\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41194\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-744-5569\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0713-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41259\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-745-7456\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0713-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41258\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41192\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"email\": \"tshoe030723-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41142\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoe030723-5@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41143\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker030823@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41144\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41151\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41153\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-899-6363\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0717-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive Suite 410\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41264\",\n                    \"first_name\": \"tester\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-555-2111\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"testerchange\",\n                    \"email\": \"tshoemaker042023-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41193\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 916-899-5555\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Testerton\",\n                    \"email\": \"testerton@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41336\",\n                    \"first_name\": \"Test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"This\",\n                    \"cell_phone\": \"999.511.1400\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41102\",\n                    \"first_name\": \"First\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 864-964-4001\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Tyler\",\n                    \"email\": \"qepy@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"41261\",\n                    \"first_name\": \"Jillian\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Z\",\n                    \"email\": \"thisorthat@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83061\",\n                        \"address1\": \"190 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41230\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"A\"\n                },\n                {\n                    \"email\": \"thisjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41231\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thisjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41232\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thiskkjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41233\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thiskkkkkjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41234\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Z\",\n                    \"email\": \"nada@hotmail.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41205\",\n                    \"first_name\": \"Tapping\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Z\",\n                    \"email\": \"thisorthat@that.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41206\",\n                    \"first_name\": \"Z\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Za\",\n                    \"email\": \"thisorthata@that.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41207\",\n                    \"first_name\": \"Za\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zaz\",\n                    \"email\": \"thisorthataz@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41208\",\n                    \"first_name\": \"Zaz\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zaze\",\n                    \"email\": \"thisorthata1@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41209\",\n                    \"first_name\": \"Zaze\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lars09@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41243\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lars19@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41244\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers19@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41245\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers09@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41246\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers39@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41247\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers30@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41249\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lprs0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41250\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zeze\",\n                    \"email\": \"thisorthata3@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41210\",\n                    \"first_name\": \"Tapping\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zezes\",\n                    \"email\": \"thisorthata3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"191 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41222\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Zezes\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zick\",\n                    \"email\": \"lips0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Teos\",\n                        \"zip\": \"83079\",\n                        \"address1\": \"99 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NV\"\n                    },\n                    \"id\": \"41251\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Alo\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zick\",\n                    \"email\": \"lmps0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Teos\",\n                        \"zip\": \"83079\",\n                        \"address1\": \"99 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NV\"\n                    },\n                    \"id\": \"41252\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Alo\"\n                },\n                {\n                    \"email\": \"lmp0@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41253\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Alo\",\n                    \"last_name\": \"Zick\"\n                },\n                {\n                    \"email\": \"lmo0@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41254\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Alo\",\n                    \"last_name\": \"Zick\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"999.999.9999\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zick\",\n                    \"email\": \"loo0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41255\",\n                    \"first_name\": \"Alo\"\n                },\n                {\n                    \"email\": \"kor@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41236\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lor@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41237\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lar@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41238\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lars@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41239\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lars1@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41240\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zk\",\n                    \"email\": \"lars12@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1999 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41241\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Al\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zkj\",\n                    \"email\": \"korthat@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1999 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41235\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Aln\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.066798\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-01-31T21:22:51\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"142 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/41235/Status?skip=140&take=20\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"73.240208\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"142 candidates returned\"\n}"},{"id":"bd745f4a-c23c-44c3-8b0b-dd9a233b5c51","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 01 Feb 2024 18:37:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3572"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35772"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"143\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-282-3351\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Aaron\",\n                    \"email\": \"nowage@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41268\",\n                    \"first_name\": \"Flynn\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-335-1463\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Connor\",\n                    \"email\": \"fygujin@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Potterville\",\n                        \"zip\": \"48876\",\n                        \"address1\": \"123 Main\",\n                        \"address2\": \"\",\n                        \"state\": \"MI\"\n                    },\n                    \"id\": \"41267\",\n                    \"first_name\": \"Tarik\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 682-505-7413\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Debra\",\n                    \"email\": \"miduqajom@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"92358\",\n                        \"address1\": \"Etiwanda Peak\",\n                        \"address2\": \"\",\n                        \"state\": \"CA\"\n                    },\n                    \"id\": \"41320\",\n                    \"first_name\": \"Priscilla\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"+1 888-648-5454\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Haider\",\n                    \"email\": \"nhaider@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Bay Shore\",\n                        \"zip\": \"11706\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41386\",\n                    \"first_name\": \"Naqi\",\n                    \"washed_status\": \"Unfamiliar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 212-303-4582\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Ivor\",\n                    \"email\": \"gilarolej@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"New York\",\n                        \"zip\": \"10009\",\n                        \"address1\": \"Manhattan (New York), NY 10009\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41319\",\n                    \"first_name\": \"Jena\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"K\",\n                    \"email\": \"3@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41096\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"A\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.991.1211\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"email\": \"bkodo@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Wheaton\",\n                        \"zip\": \"13069\",\n                        \"address1\": \"109 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41099\",\n                    \"first_name\": \"Al\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.123.1231\",\n                    \"email\": \"4@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41095\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"test3@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41121\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"899.190.0000\",\n                    \"email\": \"test2@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"191 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41124\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.5555\",\n                    \"email\": \"tshoemaker@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41135\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41139\",\n                    \"first_name\": \"K\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41140\",\n                    \"first_name\": \"K\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"K\",\n                    \"email\": \"6@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41093\",\n                    \"first_name\": \"T\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Ka\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"test@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41128\",\n                    \"first_name\": \"Ka\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Ka\",\n                    \"email\": \"5@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13069\",\n                        \"address1\": \"1390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41094\",\n                    \"first_name\": \"Ks\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kaa\",\n                    \"cell_phone\": \"999.123.1231\",\n                    \"email\": \"test12@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Wheaton\",\n                        \"zip\": \"13064\",\n                        \"address1\": \"110 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41098\",\n                    \"first_name\": \"Ag\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Kd\",\n                    \"cell_phone\": \"999.111.0000\",\n                    \"email\": \"boojkhjkhi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13064\",\n                        \"address1\": \"391 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41185\",\n                    \"first_name\": \"Km\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kgkkagaglmljols\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5b7agagl0Pkhlki98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41191\",\n                    \"first_name\": \"Pokagaklmsklgfk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Kl\",\n                    \"email\": \"2@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"1190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41097\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Aa\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"KM\",\n                    \"cell_phone\": \"899.110.0000\",\n                    \"email\": \"test4@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13066\",\n                        \"address1\": \"39 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41108\",\n                    \"first_name\": \"KM\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kod\",\n                    \"cell_phone\": \"999.111.0090\",\n                    \"email\": \"bjkhjkhi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41186\",\n                    \"first_name\": \"Kim\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kods\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"bjkhjiy5khi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41187\",\n                    \"first_name\": \"Kims\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdlmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5khi98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41189\",\n                    \"first_name\": \"Kikkmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdlmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5Pkhi98@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41190\",\n                    \"first_name\": \"Pikkmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Kokdmjs\",\n                    \"cell_phone\": \"991.111.0090\",\n                    \"email\": \"hjiy5khi8@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13067\",\n                        \"address1\": \"371 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41188\",\n                    \"first_name\": \"Kikmsk\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"L\",\n                    \"cell_phone\": \"899.190.0900\",\n                    \"email\": \"test1@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13069\",\n                        \"address1\": \"1999 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41125\",\n                    \"first_name\": \"Z\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytester@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41473\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"3RD\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"t8917825@gmail.com\",\n                    \"employee_status\": \"inactive\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41387\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytest@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41471\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lachica\",\n                    \"email\": \"jytest@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"13060\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41472\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Jyryll\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 718-288-3672\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Lewis\",\n                    \"email\": \"rlewis@inbox.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"New York\",\n                        \"zip\": \"11235\",\n                        \"address1\": \"2900 East 29th Street\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41212\",\n                    \"first_name\": \"Robert\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"email\": \"DupTest@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41474\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Duplicate\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41461\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41462\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41463\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41464\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"th@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41357\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"a@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41358\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"aa@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41359\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"aaa@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41360\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"b@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41361\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"bb@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41362\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"bbb@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41363\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"c@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41364\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"cc@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41365\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"ccc@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41366\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"d@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41367\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"e@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41368\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"ee@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41369\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"eeelll@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41377\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"aaelll@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41378\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                },\n                {\n                    \"email\": \"aaollllkkkkk@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41379\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"aaollkkk@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41380\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41465\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"eee123@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41466\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Zora\",\n                    \"last_name\": \"Look\"\n                },\n                {\n                    \"email\": \"7@gmail.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41092\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"O\",\n                    \"last_name\": \"M\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 404-263-8705\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mcdowell\",\n                    \"email\": \"vatewihezy@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41199\",\n                    \"first_name\": \"Lois\"\n                },\n                {\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41084\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"Answer\",\n                    \"last_name\": \"Me\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"k0j3@mailinator.com\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Me\",\n                    \"cell_phone\": \"123.456.7893\",\n                    \"email\": \"boo@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41086\",\n                    \"first_name\": \"Aser\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"818.123.1211\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Me\",\n                    \"cell_phone\": \"998.511.1900\",\n                    \"email\": \"mail2@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41103\",\n                    \"first_name\": \"N\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mem\",\n                    \"email\": \"kjhj84s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"399 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"ME\"\n                    },\n                    \"id\": \"31051\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Tp\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"999.123.1231\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"toe@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31050\",\n                    \"first_name\": \"Booger\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"cell_phone\": \"899.140.0000\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"391 Paony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41112\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41122\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31053\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"31048\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"eee@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41370\",\n                    \"first_name\": \"Tap\",\n                    \"washed_status\": \"Unfamiliar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mep\",\n                    \"email\": \"8@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13062\",\n                        \"address1\": \"119 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41091\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Oserp\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mes\",\n                    \"email\": \"k0j823232774s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"10062\",\n                        \"address1\": \"909 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41085\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Aswer\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Mes\",\n                    \"email\": \"4s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"id\": \"41204\",\n                    \"first_name\": \"Tapping\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Mimrands\",\n                    \"email\": \"kjhj8s3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83061\",\n                        \"address1\": \"190 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41256\",\n                    \"first_name\": \"Tup\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 716-638-1508\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Normanly\",\n                    \"email\": \"fyluneq@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41198\",\n                    \"first_name\": \"Caryn\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"One\",\n                    \"cell_phone\": \"31061@mailinator.com\",\n                    \"email\": \"31061@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31061\",\n                    \"first_name\": \"Another\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 219-884-2431\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Paul\",\n                    \"email\": \"todufejate@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41318\",\n                    \"first_name\": \"Arsenio\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 563-376-5501\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Quinn\",\n                    \"email\": \"wujoro@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41321\",\n                    \"first_name\": \"Eugenia\"\n                },\n                {\n                    \"email\": \"10@gmail.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31064\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"first_name\": \"As\",\n                    \"last_name\": \"Ra\"\n                },\n                {\n                    \"email\": \"9@gmail.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31065\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Ans\",\n                    \"last_name\": \"Ram\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31055\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"31054\",\n                    \"first_name\": \"Tiffany\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"File Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"41120\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"File Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"41113\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"File Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"cell_phone\": \"8886962900\",\n                    \"email\": \"tiffany072821-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Milltown\",\n                        \"zip\": \"70543\",\n                        \"address1\": \"10 Paper Road\",\n                        \"address2\": \"\",\n                        \"state\": \"MA\"\n                    },\n                    \"id\": \"41104\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Shoemaker\",\n                    \"email\": \"tiffany@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41290\",\n                    \"first_name\": \"Tiffany\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41153\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41151\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker030823@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41144\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoe030723-5@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41143\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"email\": \"tshoe030723-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41142\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41215\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2901\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Lockport\",\n                        \"zip\": \"14094\",\n                        \"address1\": \"6028 Sheridan Drive Suite 200\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41214\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41213\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41192\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+18886962907\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-7@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41203\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2908\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-8@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41202\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2909\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723-9@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41201\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2905\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41200\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042123@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41195\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41194\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"+1 888-744-5569\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0713-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41259\",\n                    \"first_name\": \"test\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0522-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41215\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker042023@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41192\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"cell_phone\": \"+1 888-696-2900\",\n                    \"email\": \"tshoe030723-2@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41142\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoe030723-5@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41143\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker030823@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41144\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41151\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-696-2900\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker031723-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41153\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 888-899-6363\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"test1\",\n                    \"email\": \"tshoemaker0717-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive Suite 410\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41264\",\n                    \"first_name\": \"tester\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 716-555-2111\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"testerchange\",\n                    \"email\": \"tshoemaker042023-1@haleymarketing.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Buffalo\",\n                        \"zip\": \"14221\",\n                        \"address1\": \"6028 Sheridan Drive\",\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41193\",\n                    \"first_name\": \"test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 916-899-5555\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Testerton\",\n                    \"email\": \"testerton@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": null,\n                        \"zip\": \"00000\",\n                        \"address1\": null,\n                        \"address2\": \"\",\n                        \"state\": \"NY\"\n                    },\n                    \"id\": \"41336\",\n                    \"first_name\": \"Test\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"This\",\n                    \"cell_phone\": \"999.511.1400\",\n                    \"email\": \"test11@gmail.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"390 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41102\",\n                    \"first_name\": \"First\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"+1 864-964-4001\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Tyler\",\n                    \"email\": \"qepy@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Dolton\",\n                        \"zip\": \"60419\",\n                        \"address1\": \"Dolton, IL 60419\",\n                        \"address2\": \"\",\n                        \"state\": \"IL\"\n                    },\n                    \"id\": \"41261\",\n                    \"first_name\": \"Jillian\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"email\": \"thisorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41230\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thisjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41231\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thisjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41232\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thiskkjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41233\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"email\": \"thiskkkkkjjorthat@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41234\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"A\",\n                    \"last_name\": \"Z\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Z\",\n                    \"email\": \"nada@hotmail.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41205\",\n                    \"first_name\": \"Tapping\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Z\",\n                    \"email\": \"thisorthat@that.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41206\",\n                    \"first_name\": \"Z\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Za\",\n                    \"email\": \"thisorthata@that.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41207\",\n                    \"first_name\": \"Za\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zaz\",\n                    \"email\": \"thisorthataz@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13061\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41208\",\n                    \"first_name\": \"Zaz\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zaze\",\n                    \"email\": \"thisorthata1@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"190 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41209\",\n                    \"first_name\": \"Zaze\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lars09@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41243\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lars19@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41244\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers19@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41245\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers09@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41246\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers39@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41247\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lers30@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41249\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zek\",\n                    \"email\": \"lprs0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Tees\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1099 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41250\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"All\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"phone\": \"899.933.0244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zeze\",\n                    \"email\": \"thisorthata3@that.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41210\",\n                    \"first_name\": \"Tapping\",\n                    \"washed_status\": \"Familiar\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Zezes\",\n                    \"email\": \"thisorthata3@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13065\",\n                        \"address1\": \"191 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41222\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Zezes\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zick\",\n                    \"email\": \"lips0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Teos\",\n                        \"zip\": \"83079\",\n                        \"address1\": \"99 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NV\"\n                    },\n                    \"id\": \"41251\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Alo\"\n                },\n                {\n                    \"email\": \"lmps0@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41252\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Alo\",\n                    \"last_name\": \"Zick\"\n                },\n                {\n                    \"email\": \"lmp0@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41253\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Alo\",\n                    \"last_name\": \"Zick\"\n                },\n                {\n                    \"email\": \"lmo0@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41254\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Alo\",\n                    \"last_name\": \"Zick\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"999.999.9999\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zick\",\n                    \"email\": \"loo0@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41255\",\n                    \"first_name\": \"Alo\"\n                },\n                {\n                    \"email\": \"kor@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41236\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lor@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41237\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lar@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41238\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"email\": \"lars@mailinator.com\",\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"employee_status\": \"active\",\n                    \"id\": \"41239\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"first_name\": \"Al\",\n                    \"last_name\": \"Zk\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zk\",\n                    \"email\": \"lars1@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1999 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41240\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Al\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zk\",\n                    \"email\": \"lars12@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1999 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41241\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Al\"\n                },\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Eligible and Active\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Zkj\",\n                    \"email\": \"korthat@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"83069\",\n                        \"address1\": \"1999 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41235\",\n                    \"washed_status\": \"Familiar\",\n                    \"first_name\": \"Aln\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.073003\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-02-01T18:38:29\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"143 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/41235/Status?skip=140&take=20\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"70.516258\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"143 candidates returned\"\n}"}],"_postman_id":"a925e9e7-e784-4fb2-82b3-a70ba31482a2"},{"name":"Candidate Get By Email","id":"70b6edd1-71b6-49fe-ba6b-4fb7472b602a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\": \"bb@mailinator.com\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data by email.</p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"60213483-fcee-4507-a085-f3467fcaec8a","name":"Candidate Get By Email","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"email\": \"bb@mailinator.com\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 01 Feb 2024 18:46:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"677"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"463634"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"status\": \"Web Pending\",\n                    \"branch\": \"HaleyMarketing Demo\",\n                    \"last_name\": \"Look\",\n                    \"email\": \"bb@mailinator.com\",\n                    \"employee_status\": \"active\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Taos\",\n                        \"zip\": \"13060\",\n                        \"address1\": \"199 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"NM\"\n                    },\n                    \"id\": \"41362\",\n                    \"washed_status\": \"Unfamiliar\",\n                    \"first_name\": \"Zora\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.073545\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-02-01T18:46:07\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/41362/Status?skip=0&employeeId=41362&take=1\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.819433\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"70b6edd1-71b6-49fe-ba6b-4fb7472b602a"},{"name":"Candidate Get By ID","id":"676f11f7-9c8e-4b7c-ad51-9d9e681bd334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 1000355829\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data by ID.</p>\n\n<ul>\n<li>id - <b>REQUIRED</b> - candidate ID</li>\n</ul>\n","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"37d40e31-1ecb-4b36-b2cf-9c107eb5b923","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 1,            \"count\": 20,            \"candidates\": [                {                    \"email\": \"mathwizmjd@gmail.com\",                    \"address\": {                        \"city\": \"Amherst\",                        \"zip\": \"14226\",                        \"address1\": \"12345 Main Street\",                        \"address2\": null,                        \"state\": \"NY\"                    },                    \"id\": 4295079948,                    \"phone\": \"(555) 555-5555\",                    \"first_name\": \"Mike\",                    \"last_name\": \"Dash\"                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Candidate GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.125784,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-30T13:18:39\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295079948/addresses?skip=0&employeeId=4295079948&take=20\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.893706\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_candidate\"    },    \"atsconnect_message\": \"\"}"},{"id":"60240d44-880e-42eb-b833-83053476a162","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 31050\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 21:43:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"679"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336852"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"HaleyMarketing.Demo\",\n                    \"phone\": \"899.933.1244\",\n                    \"branch\": \"HaleyMarketing Demo_Staff\",\n                    \"last_name\": \"Memrands\",\n                    \"email\": \"kjhj823232774s3@mailinator.com\",\n                    \"id\": \"31050\",\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"90062\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"MD\"\n                    },\n                    \"first_name\": \"Tap\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.189127\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-28T21:43:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/31050/addresses?skip=0&employeeId=31050&take=1\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.680215\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"676f11f7-9c8e-4b7c-ad51-9d9e681bd334"},{"name":"Candidate Get Education History","id":"cf442d0c-318a-46a9-834c-bbf54726b4a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 31048\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education","description":"<p>For retrieving candidate education history data</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 31051\n        }\n    }\n  }\n</pre>","urlObject":{"path":["candidate","get","education"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4d572646-8f18-4b2d-82ad-8d6ada8104b9","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 2,            \"count\": 2,            \"education\": [                {                    \"graduation_date\": \"2005-01-01T00:00:00\",                    \"degree\": \"Master of Science\",                    \"end_date\": \"2005-01-01T00:00:00\",                    \"school\": \"University of Michigan\",                    \"id\": 11365                },                {                    \"graduation_date\": \"1997-01-01T00:00:00\",                    \"degree\": \"Bachelor of Science\",                    \"end_date\": \"1997-01-01T00:00:00\",                    \"school\": \"Michigan State University\",                    \"id\": 11366                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Candidate Education GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.227324,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-30T12:33:20\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295079819/Education?skip=0&take=100\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.231799\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_candidate\"    },    \"atsconnect_message\": \"\"}"},{"id":"da273965-1d8c-471b-a321-3bdb7fffa6ec","name":"Candidate Get Education History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 31048\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 20:53:39 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"640"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336834"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"9\",\n            \"education\": [\n                {\n                    \"degree\": \"none\",\n                    \"comments\": \"None\",\n                    \"gpa\": 0.4,\n                    \"end_date\": \"2000-12-16T00:00:00\",\n                    \"id\": 10,\n                    \"school\": \"NYU Silver School of Social Work\",\n                    \"start_date\": \"2000-12-11T00:00:00\",\n                    \"major\": \"Social Work Clinical\"\n                },\n                {\n                    \"degree\": \"none\",\n                    \"comments\": \"None\",\n                    \"gpa\": 0.4,\n                    \"end_date\": \"2000-12-16T00:00:00\",\n                    \"id\": 11,\n                    \"school\": \"NYU Silver School of Social Work\",\n                    \"start_date\": \"2000-12-11T00:00:00\",\n                    \"major\": \"Social Work Clinical\"\n                },\n                {\n                    \"degree\": \"none\",\n                    \"comments\": \"None\",\n                    \"gpa\": 0.4,\n                    \"end_date\": \"2000-12-16T00:00:00\",\n                    \"id\": 12,\n                    \"school\": \"NYU Silver School of Social Work\",\n                    \"start_date\": \"2000-12-11T00:00:00\",\n                    \"major\": \"Social Work Clinical\"\n                },\n                {\n                    \"degree\": \"none\",\n                    \"comments\": \"None\",\n                    \"gpa\": 0.4,\n                    \"end_date\": \"2000-12-16T00:00:00\",\n                    \"id\": 13,\n                    \"school\": \"NYU Silver School of Social Work\",\n                    \"start_date\": \"2000-12-11T00:00:00\",\n                    \"major\": \"Social Work Clinical\"\n                },\n                {\n                    \"degree\": \"none\",\n                    \"comments\": \"None\",\n                    \"gpa\": 0.4,\n                    \"end_date\": \"2000-12-16T00:00:00\",\n                    \"id\": 14,\n                    \"school\": \"NYU Silver School of Social Work\",\n                    \"start_date\": \"2000-12-11T00:00:00\",\n                    \"major\": \"Social Work Clinical\"\n                },\n                {\n                    \"id\": 6\n                },\n                {\n                    \"id\": 7\n                },\n                {\n                    \"id\": 8\n                },\n                {\n                    \"id\": 9\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.074975\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-28T20:53:40\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"9 candidate education results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/31048/Education?skip=0&take=100\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.293665\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"9 candidate education results returned\"\n}"}],"_postman_id":"cf442d0c-318a-46a9-834c-bbf54726b4a1"},{"name":"Candidate Get Work History","id":"c4b80426-37e9-454e-8957-3ad66f4d09f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 31051\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory","description":"<p>For retrieving candidate work history data based on candidate ID.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate id</p>\n</li>\n<li><p>api_request_fields - this API does not support field requests</p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","get","workhistory"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7d2e3e98-21fe-4892-8925-d68ae6d72e1d","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 3,            \"count\": 3,            \"education\": [                {                    \"end_date\": \"2010-12-01T00:00:00\",                    \"company_name\": \"Electrolux\",                    \"start_date\": \"2008-01-01T00:00:00\",                    \"title\": \"Design Engineer\",                    \"id\": 13994,                    \"comments\": \"Electrolux\\t\\tMinneapolis, MN\\nDesign Engineer\\t\\t1/2008 - 12/2010\\nâ\\u0080¢ Assisted lead design engineers is proposal development for many fortune 100 companies\\nâ\\u0080¢ Coordinated efforts with project engineers for preparing drawing releases\\nâ\\u0080¢ Acted as department liaison communicating design changes with product engineer, manufacturing, and procurement.\",                    \"termination_reason\": \"upper mgmt changes\"                },                {                    \"end_date\": \"2007-12-31T00:00:00\",                    \"company_name\": \"GAD Transmissions\",                    \"start_date\": \"2006-01-01T00:00:00\",                    \"title\": \"Mechanical Engineer\",                    \"id\": 13995,                    \"comments\": \"GAD Transmissions\\t\\tSt. Paul, MN\\nMechanical Engineer\\t\\t1/2006 - 12/2007\\nâ\\u0080¢ Researched and designed new auxiliary equipment to ensure ongoing industry advantage for a CVT/IVT transmission manufacturer.\\nâ\\u0080¢ Assisted 3 Managers and 5 Supervisors with various administrative tasks and projects\\nâ\\u0080¢ Enabled 11% increase to output  across three lines by designing, prototyping, testing, and rolling out faster robot-arm  assembly.\",                    \"termination_reason\": \"upper mgmt changes\"                },                {                    \"end_date\": \"2006-01-01T00:00:00\",                    \"company_name\": \"Elantro Tool\",                    \"start_date\": \"2005-01-01T00:00:00\",                    \"title\": \"Junior Mechanical Engineer\",                    \"id\": 13996,                    \"comments\": \"Elantro Tool\\t\\tBloomington, MN\\nJunior Mechanical Engineer\\t\\t1/2005 - 1/2006\\nâ\\u0080¢ Integral to design of new and upgraded equipment for a leading supplier of automotive dies for General Motors\\nâ\\u0080¢ Analyzed equipment and identified inefficiencies\",                    \"termination_reason\": \"better opportunity\"                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Candidate Workhistory GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.253882,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-30T12:38:15\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295079819/WorkHistory?skip=0&take=100\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.257212\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_candidate\"    },    \"atsconnect_message\": \"\"}"},{"id":"58da524b-cbed-4066-8a64-af3af1f75e33","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 31051\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 21:32:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"630"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336849"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"2\",\n            \"workhistory\": [\n                {\n                    \"ending_salary\": \"3000\",\n                    \"company_name\": \"Buzzed\",\n                    \"comments\": \"None that I can remember\",\n                    \"termination_reason\": \"I don't know\",\n                    \"end_date\": \"2000-10-30T00:00:00\",\n                    \"id\": 11,\n                    \"title\": \"None\",\n                    \"start_date\": \"2000-10-22T00:00:00\"\n                },\n                {\n                    \"id\": 10\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.091212\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-28T21:32:03\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 candidate workhistory results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/31051/WorkHistory?skip=0&take=100\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.415346\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"2 candidate workhistory results returned\"\n}"}],"_postman_id":"c4b80426-37e9-454e-8957-3ad66f4d09f4"},{"name":"Candidate Set","id":"8f4be754-be6e-4ac9-ac22-8768539d2b1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"first_name\":\"DaÃ¢Â?Â?Rel Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â\",\r\n            \"last_name\":\"Daâ�?�?Rel � � � � � � � � � � � � � � � \",\r\n            \"address1\": \"199 Peony Rd\",\r\n            \"city\": \"Taos\",\r\n            \"state\": \"New Mexico\",\r\n            \"zip\": \"83069\",\r\n            \"country\":\"US\",\r\n            \"email\": \"testing-09-04-2025-1@mailinator.com\",\r\n\t\t\t\"branch\": 14,\r\n\t\t\t\"referral_source\": \"AARP\",\r\n            \"cell_phone\": \"909-555-1234\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>first_name - <strong>REQUIRED</strong></li>\n<li>last_name <strong>REQUIRED</strong></li>\n<li>email - <strong>REQUIRED</strong> on create</li>\n<li>phone - <strong>OPTIONAL</strong></li>\n<li>cell_phone - <strong>OPTIONAL</strong></li>\n<li>address1 - <strong>OPTIONAL</strong></li>\n<li>address2 - <strong>OPTIONAL</strong></li>\n<li>city - <strong>OPTIONAL</strong></li>\n<li>state - <strong>REQUIRED</strong> on create</li>\n<li>zip - <strong>REQUIRED</strong> on create</li>\n<li>country - <strong>REQUIRED</strong> on create</li>\n<li>date_added - <strong>OPTIONAL</strong> - Defaults to current timestamp</li>\n<li>branch - <strong>REQUIRED</strong> on create</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n                        \"email\":\"kjhj823232774s3@do.fam\",\n                        \"first_name\":\"Tap\",\n                        \"last_name\":\"Memrands\",\n                        \"phone\":\"866.933.1244\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"city\": \"Los Angeles\",\n                        \"state\": \"CA\",\n                        \"zip\": \"90062\",\n                        \"country\":\"US\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ae204960-f36e-411b-8a17-5bfb8ce862fc","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"email\":\"kjhj823232774s3@mailinator.com\",\r\n            \"first_name\":\"Tap\",\r\n            \"last_name\":\"Memrands\",\r\n            \"phone\":\"899.933.1244\",\r\n            \"address1\": \"99 Pony Rd\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"MD\",\r\n            \"zip\": \"90062\",\r\n            \"country\":\"US\",\r\n            \"branch\": 1024\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Nov 2022 18:59:25 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"642"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"334967"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 31050\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"23.695687\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-23T18:59:49\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"firstName\\\":\\\"Tap\\\",\\\"PrimaryPhoneNumberCountryCallingCode\\\":1,\\\"primaryEmailAddress\\\":\\\"kjhj823232774s3@mailinator.com\\\",\\\"municipality\\\":\\\"Los Angeles\\\",\\\"region\\\":\\\"MD\\\",\\\"street1\\\":\\\"99 Pony Rd\\\",\\\"primaryPhoneNumber\\\":\\\"899.933.1244\\\",\\\"branchId\\\":1024,\\\"countryCode\\\":840,\\\"lastName\\\":\\\"Memrands\\\",\\\"postalCode\\\":\\\"90062\\\"}\",\n            \"call\": \"https://api.ontempworks.com/Employees\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"24.285191\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate set\"\n}"}],"_postman_id":"8f4be754-be6e-4ac9-ac22-8768539d2b1b"},{"name":"Candidate Set Education History","id":"85ba9ec1-1bd3-4444-806b-f52e9f71aa34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 1000355829\r\n            },\r\n            \"country\": \"United States\",\r\n            \"school\":\"UCLA\",\r\n            \"city\":\"Los Angeles\" ,\r\n            \"state\": \"California\",\r\n            \"major\":\"Social Work Clinical\",\r\n            \"start_date\": \"2005-12-11\",\r\n            \"end_date\": \"2005-12-16\",\r\n            \"degree\": \"none\",\r\n            \"gpa\": 1.4,\r\n            \"comments\": \"None\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<ul>\n<li><p>candidate -&gt; ID - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>school - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTONAL</b></p>\n</li>\n<li><p>start_date - <b>OPTIONAL</b></p>\n</li>\n<li><p>end_date - <b>OPTIONAL</b></p>\n</li>\n<li><p>major - <b>OPTIONAL</b></p>\n</li>\n<li><p>degree - <b>OPTIONAL</b></p>\n</li>\n<li><p>gpa - <b>OPTIONAL</b></p>\n</li>\n<li><p>comments - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 31048\n        },\n        \"school\":\"NYU Silver School of Social Work\",\n        \"city\":\"Manhattan\" ,\n        \"state\": \"NY\",\n        \"major\":\"Social Work Clinical\"\n     }\n}\n</pre>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"18d1d5d1-e8e0-4120-b757-f740cf7f1794","name":"Candidate Set Education History - Candidate ID only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 31051\r\n            }\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 20:44:41 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"486"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336831"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 15\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.41418\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-28T20:44:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate education set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"bypassAddressValidationService\\\":1}\",\n            \"call\": \"https://api.ontempworks.com/Employees/31051/Education\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"1.642033\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate education set\"\n}"},{"id":"343f31a1-5ad6-4084-a6b2-92ec831e6838","name":"Candidate Set Education History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 31048\r\n            },\r\n            \"school\":\"NYU Silver School of Social Work\",\r\n            \"city\":\"Manhattan\" ,\r\n            \"state\": \"NY\",\r\n            \"major\":\"Social Work Clinical\",\r\n            \"start_date\": \"2000-12-11\",\r\n            \"end_date\": \"2000-12-16\",\r\n            \"degree\": \"none\",\r\n            \"gpa\": 0.4,\r\n            \"comments\": \"None\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 20:54:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"634"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336837"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 16\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.115932\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-28T20:54:25\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate education set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"institutionAttended\\\":\\\"NYU Silver School of Social Work\\\",\\\"dateAttendedEnd\\\":\\\"2000-12-16\\\",\\\"grade\\\":\\\"0.4\\\",\\\"municipality\\\":\\\"Manhattan\\\",\\\"region\\\":\\\"NY\\\",\\\"degreeAwarded\\\":\\\"none\\\",\\\"bypassAddressValidationService\\\":1,\\\"other\\\":\\\"None\\\",\\\"major\\\":\\\"Social Work Clinical\\\",\\\"dateAttendedStart\\\":\\\"2000-12-11\\\"}\",\n            \"call\": \"https://api.ontempworks.com/Employees/31048/Education\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.747793\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate education set\"\n}"}],"_postman_id":"85ba9ec1-1bd3-4444-806b-f52e9f71aa34"},{"name":"Candidate Set Work History","event":[{"listen":"test","script":{"id":"cd85fccb-0429-4558-9f74-9d7393215236","exec":["// Parse the response body as JSON","var responseBody = pm.response.json();","","// Check if api_xstatus exists and contains the expected string","pm.test(\"Check api_xstatus\", function() {","    pm.expect(responseBody.api_response.api_xstatus).to.include(\"Candidate workhistory set\");","});","","// Check if atsconnect_message exists and contains the expected string","pm.test(\"Check atsconnect_message\", function() {","    pm.expect(responseBody.atsconnect_message).to.include(\"Candidate workhistory set\");","});"],"type":"text/javascript"}}],"id":"0f221ebb-e642-4204-9c16-c27b22c709b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 1000355829\r\n            },\r\n            \"country\": \"US\",\r\n            \"state\": \"Texas\",\r\n            \"title\": \"title\",\r\n            \"company_name\": \"company_name\",\r\n            \"start_date\": \"01/01/1999\",\r\n            \"city\": \"city\",\r\n            \"comments\":\"ajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskskagk agasgsakgsagjkljhakhfjsafhagsf378fshfshfuafkfghfhaghfjagsfhjasgfjhgfjaflkafgjhafgjhafgjagfjafghajkfghjfgjakfghajfga ffhajf agfjaf ghafgafghhaghghghjfg ahjsfjg ahjgfjghsafgahjsgjfgfhjasg fhgajfagsf ghasgf sgfgajhg fahjgfghjajhgf gahg fghajhgf afghgf gahjfghagh  hgfgasghf sahggfg fhgjfhjggfsg ghsg gfghafgag faghfjgasgfshgashgfsajhfhsf gghsajhggf asghfhajgf ghsfhghg gfghjjhgfgh gshfhjgsfgasfgs gfgjhgjas fgsghfjghfj gfgaghsf ghasfgjhhjgf gasgfajghfhgag fgjhfjhgfgjhgf gajfghagjhg agfjhhg afgfgjhgjhsgfagjhfghagfgfkgfafigfkuagfaagfgajkghja gshk hjaskska\",\r\n    \t\t\"termination_reason\": \"None\",\r\n\t\t\t\"permission_to_contact\": 0\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<ul>\n<li><p>candidate -&gt; id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>title - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>company_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>start_date - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>end_date - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>ending_salary - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>comments - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>termination_reason - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n            \"id\": 100033296\n        },\n        \"title\": \"None\",\n        \"company_name\": \"Buzzed\",\n        \"start_date\": \"10/22/2000\",\n        \"end_date\": \"10/30/2000\",\n        \"city\": \"Paducah\",      \n        \"state\": \"AZ\",\n        \"country\": \"United States\",\n        \"ending_salary\": \"333,000\",\n        \"comments:\" \"None that I can remember\",\n        \"termination_reason\": \"I don't know\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7785c641-ed2f-4bc1-bc89-1c1e9e40ccfc","name":"Candidate Set Work History - Candidate ID only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 31051\r\n            }            \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 20:43:35 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"561"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"104442"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 10\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"3.883889\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-28T20:43:39\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate workhistory set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"isFullTime\\\":1,\\\"bypassAddressValidationService\\\":1,\\\"isTemporaryJob\\\":0,\\\"includeInBackgroundChecks\\\":0,\\\"isOkayToContact\\\":0,\\\"isPartTime\\\":0}\",\n            \"call\": \"https://api.ontempworks.com/Employees/31051/WorkHistory\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"4.152287\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate workhistory set\"\n}"},{"id":"77b2ad6a-6fc1-400e-8c15-fc1e5db47f9b","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 31051\r\n            },\r\n            \"title\": \"None\",\r\n            \"company_name\": \"Buzzed\",\r\n            \"start_date\": \"10/22/2000\",\r\n            \"end_date\": \"10/30/2000\",\r\n            \"city\": \"Paducah\",      \r\n            \"state\": \"AZ\",\r\n            \"country\": \"United States\",\r\n            \"ending_salary\": \"3000\",\r\n            \"comments\": \"None that I can remember\",\r\n            \"termination_reason\": \"I don't know\"                      \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 20:59:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"709"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"104449"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 11\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.189409\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-28T20:59:07\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate workhistory set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"pay\\\":\\\"3000\\\",\\\"position\\\":\\\"None\\\",\\\"municipality\\\":\\\"Paducah\\\",\\\"countryCode\\\":840,\\\"isFullTime\\\":1,\\\"includeInBackgroundChecks\\\":0,\\\"duties\\\":\\\"None that I can remember\\\",\\\"region\\\":\\\"AZ\\\",\\\"employer\\\":\\\"Buzzed\\\",\\\"isPartTime\\\":0,\\\"bypassAddressValidationService\\\":1,\\\"isTemporaryJob\\\":0,\\\"isOkayToContact\\\":0,\\\"endDate\\\":\\\"10/30/2000\\\",\\\"reasonForLeaving\\\":\\\"I don't know\\\",\\\"startDate\\\":\\\"10/22/2000\\\"}\",\n            \"call\": \"https://api.ontempworks.com/Employees/31051/WorkHistory\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.575038\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate workhistory set\"\n}"}],"_postman_id":"0f221ebb-e642-4204-9c16-c27b22c709b3"},{"name":"Candidate Update","id":"d085844a-5881-420b-a610-f4844577537b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"cell_phone\":\"899.933.1244\",\r\n            \"id\": 1000356051\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li><p>first_name - <b>REQUIRED</b></p>\n</li>\n<li><p>last_name <b>REQUIRED</b></p>\n</li>\n<li><p>email - <b>OPTIONAL</b></p>\n</li>\n<li><p>phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>cell_phone - <b>OPTIONAL</b></p>\n</li>\n<li><p>address1 - <b>OPTIONAL</b></p>\n</li>\n<li><p>address2 - <b>OPTIONAL</b></p>\n</li>\n<li><p>city - <b>OPTIONAL</b></p>\n</li>\n<li><p>state - <b>OPTIONAL</b></p>\n</li>\n<li><p>zip - <b>OPTIONAL</b></p>\n</li>\n<li><p>country - <b>OPTIONAL</b></p>\n</li>\n<li><p>date_added - <b>OPTIONAL</b> - Defaults to current timestamp</p>\n</li>\n<li><p>branch - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n                        \"email\":\"kjhj823232774s3@do.fam\",\n                        \"first_name\":\"Tap\",\n                        \"last_name\":\"Memrands\",\n                        \"phone\":\"866.933.1244\",\n                        \"address1\": \"99 Pony Rd\",\n                        \"city\": \"Los Angeles\",\n                        \"state\": \"CA\",\n                        \"zip\": \"90062\",\n                        \"country\":\"US\"\n    }\n  }\n</pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"886a09b0-aee1-4d7b-ba25-8e76413f12f0","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n},\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"email\":\"kjhj823232774s3@mailinator.com\",\r\n            \"first_name\":\"Tap\",\r\n            \"last_name\":\"Memrands\",\r\n            \"phone\":\"899.933.1244\",\r\n            \"address1\": \"99 Pony Rd\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"MD\",\r\n            \"zip\": \"90062\",\r\n            \"country\":\"US\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 31 Jan 2024 21:19:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"499"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"463382"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.285396\",\n            \"CALL_ACTION\": \"PATCH\",\n            \"TIMESTAMP\": \"2024-01-31T21:19:05\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"[{\\\"value\\\":\\\"Tap\\\",\\\"path\\\":\\\"/FirstName\\\",\\\"op\\\":\\\"replace\\\"},{\\\"value\\\":\\\"Memrands\\\",\\\"path\\\":\\\"/LastName\\\",\\\"op\\\":\\\"replace\\\"}]\",\n            \"call\": \"https://api.ontempworks.com/Employees/31048\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"1.106564\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Candidate 31048 updated\"\n}"}],"_postman_id":"d085844a-5881-420b-a610-f4844577537b"}],"id":"4e2e65fa-e728-4aed-9255-8f9b4f483091","_postman_id":"4e2e65fa-e728-4aed-9255-8f9b4f483091","description":""},{"name":"Client","item":[{"name":"Client Get","id":"257f1d4d-98a3-4281-bb41-7ab5431ec8af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\": {\n    \"api_connection\": {\n      \"api_un\": \"{{AccountSid}}\",\n      \"api_pw\": \"{{AuthToken}}\"\n    },\n    \"vendor\": \"tempworks\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n},\n    \"api_request_data\":{\n                \"api_request_query\":{\n                         \"status\":\"Active Account, Active,Proposal\"\n                },\n                \"api_request_fields\": \"id\"\n    }\n}"},"url":"{{ats-connect}}/client/get","description":"<p>For retrieving all clients</p>\n\n<ul>\n<li><p>id - <b>OPTIONAL</b></p>\n</li>\n<li><p>offset - <b>OPTIONAL</b></p>\n</li>\n<li><p>limit - <b>OPTIONAL</b></p>\n</li>\n</ul>\n<pre>\n    \"api_request_data\":{\n                \"api_request_query\":{\n                }        \n    }\n</pre>","urlObject":{"path":["client","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ddacac04-0d15-4576-ba92-6bae57587684","name":"Client Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"api_connect_data\": {\n    \"api_connection\": {\n      \"api_un\": \"{{AccountSid}}\",\n      \"api_pw\": \"{{AuthToken}}\"\n    },\n    \"vendor\": \"tempworks\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n},\n    \"api_request_data\":{\n                \"api_request_query\":{\n                         \"status\":\"Active Account, Active,Proposal\"\n                },\n                \"api_request_fields\": \"id\"\n    }\n}"},"url":"{{ats-connect}}/client/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Nov 2022 21:18:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"505"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1086193"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/client/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"clients\": [\n                {\n                    \"id\": 1014,\n                    \"company\": \"HaleyMarketing Demo\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Client GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.162016\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-14T21:18:13\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 client returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/DataLists/employers?skip=0&take=50\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.448382\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_client\"\n    },\n    \"atsconnect_message\": \"1 client returned\"\n}"}],"_postman_id":"257f1d4d-98a3-4281-bb41-7ab5431ec8af"}],"id":"3d386a35-afa5-429d-afb6-7b1fd210d485","event":[{"listen":"prerequest","script":{"id":"d1ba6f40-0791-4896-bce1-e3dade69dc74","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ae91b245-81fd-4dad-8051-a723d1b11598","type":"text/javascript","exec":[""]}}],"_postman_id":"3d386a35-afa5-429d-afb6-7b1fd210d485","description":""},{"name":"Custom","item":[{"name":"Custom","id":"4857790c-b571-46a1-b6f4-43b3d999330d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\": \"{{AccountSid}}\",\n    \t\t\"api_pw\": \"{{AuthToken}}\"\n        },\n        \"vendor\":\"tempworks\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"skip\":0,\n                    \"take\":5\n                },\n                \"api_custom_action\":\"GET\",\n                \"api_custom_call\":\"/Employees/31051\",\n                \"api_request_fields\":\"\"\n    }\n}\n"},"url":"{{ats-connect}}/custom","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b40cdac2-eb3a-424c-929d-8adb9e5e1e06","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":" {\n    \"api_connect_data\":{\n        \"api_connection\":{\n        \t\"api_un\": \"{{AccountSid}}\",\n    \t\t\"api_pw\": \"{{AuthToken}}\"\n        },\n        \"vendor\":\"tempworks\",\n        \"api_sandbox\":1,\n        \"api_performance_dump\":1,\n        \"api_verbose_dump\":1\n    },\n    \"api_request_data\":{\n                \"api_request_query\":{\n                    \"skip\":0,\n                    \"take\":5\n                },\n                \"api_custom_action\":\"GET\",\n                \"api_custom_call\":\"/Employees/31051\",\n                \"api_request_fields\":\"\"\n    }\n}\n"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Nov 2022 22:00:23 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1094"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336855"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobTitle\": null,\n            \"namePrefix\": null,\n            \"employeeGuid\": \"9b45f3b2-1fdd-4106-b211-2c18317c1f2a\",\n            \"employerId\": 1014,\n            \"isAssigned\": false,\n            \"activationDate\": \"2022-11-28T14:42:00\",\n            \"hierType\": \"Entity\",\n            \"driverLicenseExpire\": \"0001-01-01T00:00:00+00:00\",\n            \"isI9OnFile\": false,\n            \"primaryPhoneNumberContactMethodId\": null,\n            \"createdByServiceRep\": \"HaleyMarketing.Demo\",\n            \"serviceRepChatName\": null,\n            \"nameSuffix\": null,\n            \"hierTypeId\": 2,\n            \"address\": {\n                \"country\": \"United States of America\",\n                \"location\": null,\n                \"region\": \"ME\",\n                \"municipality\": \"Los Angeles\",\n                \"dateAddressStandardized\": null,\n                \"street1\": \"399 Pony Rd\",\n                \"countryCode\": 840,\n                \"attentionTo\": null,\n                \"street2\": null,\n                \"postalCode\": \"90061\"\n            },\n            \"employeeId\": 31051,\n            \"firstName\": \"Tp\",\n            \"primaryEmailAddress\": \"kjhj84s3@mailinator.com\",\n            \"branchId\": 1023,\n            \"employer\": \"HaleyMarketing Demo\",\n            \"middleName\": null,\n            \"deactivationDate\": null,\n            \"driverLicenseClass\": null,\n            \"resumeFileName\": null,\n            \"alias\": null,\n            \"primaryEmailAddressContactMethodId\": 3683,\n            \"serviceRep\": \"HaleyMarketing.Demo\",\n            \"resumeDocumentId\": null,\n            \"i9ExpirationDate\": null,\n            \"governmentPersonalId\": null,\n            \"serviceRepId\": 1063,\n            \"primaryPhoneNumberContactMethodType\": null,\n            \"driverLicenseNumber\": null,\n            \"lastName\": \"Mem\",\n            \"employeeStatus\": \"Eligible and Active\",\n            \"company\": null,\n            \"numericRating\": 0,\n            \"createdByServiceRepId\": 1063,\n            \"companyId\": null,\n            \"primaryPhoneNumberCountryCallingCode\": null,\n            \"driverLicenseState\": null,\n            \"isActive\": true,\n            \"primaryPhoneNumberContactMethodTypeId\": null,\n            \"primaryPhoneNumber\": null,\n            \"branch\": \"HaleyMarketing Demo\",\n            \"note\": null,\n            \"employeeStatusId\": \"A\",\n            \"primaryEmailAddressContactMethodType\": \"Email\",\n            \"primaryEmailAddressContactMethodTypeId\": 8,\n            \"alternateEmployeeId\": null\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.39521\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2022-11-28T22:00:24\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Custom results returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/31051?skip=0&take=5\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.711275\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Custom results returned\"\n}"}],"_postman_id":"4857790c-b571-46a1-b6f4-43b3d999330d"}],"id":"f57a30a0-25e7-405c-a053-22e1dbe80b8a","_postman_id":"f57a30a0-25e7-405c-a053-22e1dbe80b8a","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"add2aea3-838a-47d6-8e5a-396a02f74a4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 31048,\r\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <b>REQUIRED</b> - candidate ID</p>\n</li>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n<li><p>file_name - <b>REQUIRED</b></p>\n<p>  \"api_request_query\": {\n\"id\": 31048,\n\"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n      \"file_name\": \"Resume.pdf\"\n  }</p>\n</li>\n</ul>\n","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2b5788bf-f28a-414a-be1a-2ef651e90786","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"documentId\": 53336        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"File Upload\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.641516,            \"CALL_ACTION\": \"POST-FILE\",            \"TIMESTAMP\": \"2018-04-17T22:17:36\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/Employees/4295079948/Documents\",            \"values\": \"\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.719246\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_file\"    },    \"atsconnect_message\": \"\"}"},{"id":"807f85ee-92e6-403b-a3ef-c6e66b258071","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 31048,\r\n      \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Dec 2022 21:28:07 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"465"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1090638"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"documentId\": 2276\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.394738\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2022-12-08T21:28:08\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"File uploaded\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/31048/resume\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.653673\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"File uploaded\"\n}"}],"_postman_id":"add2aea3-838a-47d6-8e5a-396a02f74a4c"}],"id":"6aff455a-53d0-416d-989f-8c2d850d933a","_postman_id":"6aff455a-53d0-416d-989f-8c2d850d933a","description":""},{"name":"Job","item":[{"name":"Job Get","id":"e0b03637-c855-41b2-86d3-2a8aaaa89cb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1,\r\n    \"api_sandbox\":1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<ul>\n<li><p>id - <strong>OPTIONAL</strong> - Job ID</p>\n</li>\n<li><p>status - <strong>OPTIONAL</strong> - Job Status (filled or unfilled)</p>\n</li>\n<li><p>skip_cache <strong>- OPTIONAL</strong></p>\n</li>\n<li><p>reset_cache <strong>- OPTIONAL</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {}\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0d067540-973e-4ed9-823d-5aa5f62045f1","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 12089,            \"count\": 5,            \"jobs\": [                {                    \"pay_rate\": 22,                    \"status\": \"Unfilled\",                    \"date_added\": \"2018-04-18T14:17:00\",                    \"id\": 4295088859,                    \"title\": \"Carpenter\",                    \"type\": \"Daily Pay / Labor\",                    \"description\": null                },                {                    \"pay_rate\": 0,                    \"status\": \"Filled\",                    \"date_added\": \"2018-04-18T14:14:00\",                    \"id\": 4295088858,                    \"title\": \"Unknown\",                    \"type\": \"Temp\",                    \"description\": null                },                {                    \"pay_rate\": 20,                    \"status\": \"Unfilled\",                    \"date_added\": \"2018-04-18T14:10:00\",                    \"id\": 4295088857,                    \"title\": \"General Laborer\",                    \"type\": \"Daily Pay / Labor\",                    \"description\": null                },                {                    \"pay_rate\": 15,                    \"status\": \"Unfilled\",                    \"date_added\": \"2018-04-18T14:07:00\",                    \"id\": 4295088856,                    \"title\": \"Laborer\",                    \"type\": \"Daily Pay / Labor\",                    \"description\": null                },                {                    \"pay_rate\": 0,                    \"status\": \"Unfilled\",                    \"date_added\": \"2018-04-18T13:55:00\",                    \"id\": 4295088855,                    \"title\": \"General Laborer\",                    \"type\": \"Temp\",                    \"description\": null                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Jobs GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.038336,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-18T15:24:14\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/JobOrders/4295088855?skip=0&take=5\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.843858\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_job\"    },    \"atsconnect_message\": \"\"}"},{"id":"997beb56-bc79-4ac3-99f2-900ed21a4de0","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1,\r\n    \"api_sandbox\":1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Apr 2024 02:05:50 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"1158"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336706"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"Clean things\",\n                    \"date_added\": \"2023-11-15\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Lakeland\",\n                        \"zip\": \"55082\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": null,\n                        \"state\": \"MN   \"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 513,\n                    \"title\": \"Housekeeper\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"Operate specialized tools and machinery to create decorative engravings on items such as awards and trophies, gifts and signs, or identification plates and circuit boards.\",\n                    \"date_added\": \"2023-11-15\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Lakeland\",\n                        \"zip\": \"55082\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": null,\n                        \"state\": \"MN   \"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 511,\n                    \"title\": \"Engraver\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"$22 / hour\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"Take exit polls at the polls\",\n                    \"date_added\": \"2023-10-19\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 504,\n                    \"title\": \"Exit Poller\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"<p>Wash and dry dishes and put them away</p>\",\n                    \"date_added\": \"2023-10-19\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 512,\n                    \"title\": \"Dish Washer\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"$25 / hour\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"<p>Wash and dry dishes and put them away</p>\",\n                    \"date_added\": \"2023-10-19\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 503,\n                    \"title\": \"Dish Washer\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"<p>TEST PUBLIC DESCRIPTION</p>\",\n                    \"date_added\": \"2023-05-03\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 477,\n                    \"title\": \"Assembler 2\",\n                    \"type\": \"Temp\"\n                },\n                {\n                    \"pay_rate\": \"$20.56 / hour\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"<p>Testing what the job description looks like here.</p><ol><li>Test</li><li>Test1</li><li>Test2</li></ol>\",\n                    \"date_added\": \"2023-03-01\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 479,\n                    \"title\": \"This is yet another test\",\n                    \"type\": \"Payrolled\"\n                },\n                {\n                    \"pay_rate\": \"$12 / hour\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"<p>TEST PUBLIC DESCRIPTION</p>\",\n                    \"date_added\": \"2022-12-07\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"Minneapolis\",\n                        \"zip\": \"55402\",\n                        \"address1\": \"505 Nicollet Mall\",\n                        \"address2\": \"Unit 100\",\n                        \"state\": \"MN\"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 478,\n                    \"title\": \"Assembler\",\n                    \"type\": \"Temp\"\n                }\n            ],\n            \"count\": \"8\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET Recruiter Details\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.054512\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-23T02:05:57\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"8 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/JobOrders/478/Worksite\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"6.495085\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"8 jobs returned\"\n}"}],"_postman_id":"e0b03637-c855-41b2-86d3-2a8aaaa89cb7"},{"name":"Job Get By ID","id":"f94f6d1b-3259-46da-9d5e-09a1fa19d6fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 1684636\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job data.</p>\n\n<p>NOTE: the job ID can appear in either the URL or as a parameter in the request data but MUST appear once</p>\n\n<ul>\n<li><p>id - <strong>OPTIONAL</strong> - if left out, the ID must appear in the URL</p>\n</li>\n<li><p>skip_cache - OPTIONAL - set to skip checking cache for the job</p>\n</li>\n</ul>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"4687698f-19d9-4bc6-ad1c-34114b324e06","name":"Response_201","originalRequest":{"header":[]},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{    \"api_response\": {        \"api_data\": {            \"totalCount\": 1,            \"count\": 1,            \"jobs\": [                {                    \"pay_rate\": 19,                    \"status\": \"Unfilled\",                    \"date_added\": \"2018-03-22T15:56:00\",                    \"id\": 4295088740,                    \"title\": \"Forklift\",                    \"type\": \"Temp\",                    \"description\": \"Operate powered industrial trucks to load and unload materials and deliveries and move them to and from storage areas, machines and loading docks, into railroad cars or trucks or storage facilities.  Not limited to locating and moving stock of products to pallets or crates for storage or shipment.\"                }            ]        },        \"api_log\": {            \"CALL_ATTEMPTS\": 1,            \"CALL_STATUS\": 1,            \"CALL_REQUEST\": \"Jobs GET\",            \"CLIENT_ID\": null,            \"CALL_TIME\": 0.167512,            \"CALL_ACTION\": \"GET\",            \"TIMESTAMP\": \"2018-04-18T15:27:55\",            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",            \"MESSAGE\": \"Success\",            \"VENDOR\": \"tempworks\"        },        \"api_status\": 1    },    \"atsconnect_status\": 1,    \"atsconnect_ticket\": {        \"api_version\": \"1.1\",        \"request\": {            \"values\": \"\",            \"call\": \"https://035b4d6da1874e269d7e258cb13dbd0d:07fd48475e97468fb809c2cf966cf450@api.ontempworks.com/JobOrders/4295088740?orderId=4295088740&skip=0&take=1\"        },        \"vendor\": \"tempworks\",        \"elapsed\": \"0.462257\",        \"key\": \"xxxxxxxxxxxxxxxxxx\",        \"fn\": \"_api_job\"    },    \"atsconnect_message\": \"\"}"},{"id":"a23f7faa-9d68-4a63-a5f6-bae820af8ffa","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n      \"id\": 1024467\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Apr 2024 02:06:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"705"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"336709"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"\",\n                    \"status\": \"Unfilled\",\n                    \"description\": \"Clean things\",\n                    \"date_added\": \"2023-11-15\",\n                    \"rep_user\": {\n                        \"email\": \"tshoemaker@haleymarketing.com\",\n                        \"id\": \"1063\",\n                        \"first_name\": \"HaleyMarketing.Demo\",\n                        \"last_name\": null\n                    },\n                    \"address\": {\n                        \"country\": \"United States of America\",\n                        \"city\": \"West Lakeland\",\n                        \"zip\": \"55082\",\n                        \"address1\": \"123 Main Street\",\n                        \"address2\": null,\n                        \"state\": \"MN   \"\n                    },\n                    \"category\": \"None\",\n                    \"id\": 513,\n                    \"title\": \"Housekeeper\",\n                    \"type\": \"Temp\"\n                }\n            ],\n            \"count\": \"1\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET Recruiter Details\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.105175\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-04-23T02:06:16\",\n            \"APIKEY\": \"YmE2ZjU3NDBkYTE5NGM3MThiYmUxMjE3ZjMzOGRlYjg6YzUwZmVhMGU1YjkyNDA5M2JmZjk5Y2YzN2M2MGRkMDg=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/JobOrders/513/Worksite\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.462608\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"f94f6d1b-3259-46da-9d5e-09a1fa19d6fb"}],"id":"51916dc0-6a29-4681-9621-77f792243006","_postman_id":"51916dc0-6a29-4681-9621-77f792243006","description":""},{"name":"Lookups","item":[{"name":"Country","id":"73d25af8-cef8-47ac-8a37-c26612252ad7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"country\": \"United States\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/country/get","description":"<p>For creating a candidate record</p>","urlObject":{"path":["country","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"28d75a0e-e865-4336-b907-e8332ba04f1f","name":"Country","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/country/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 21 Jun 2025 18:23:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"555"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2851520"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/country/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"3\",\n            \"countries\": [\n                {\n                    \"countryCallingCode\": 1,\n                    \"country\": \"Canada\",\n                    \"countryCode\": 124\n                },\n                {\n                    \"countryCallingCode\": 44,\n                    \"country\": \"United Kingdom\",\n                    \"countryCode\": 826\n                },\n                {\n                    \"countryCallingCode\": 1,\n                    \"country\": \"United States of America\",\n                    \"countryCode\": 840\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Address (Countries) GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.168546\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-06-21T18:23:48\",\n            \"APIKEY\": \"ZDNkYTc3MDM5MWZkNDZlN2E1MTEzOTc5ODk2ZjFkODA6ZDg5NGFlNmFkYTMyNDMzMWFjMWFiMWY5NDYzMTZhM2U=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"3 countries returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/DataLists/countries?skip=0&take=100\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"0.241978\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_country\"\n    },\n    \"atsconnect_message\": \"3 countries returned\"\n}"}],"_postman_id":"73d25af8-cef8-47ac-8a37-c26612252ad7"}],"id":"765f9736-d652-4812-98e1-071998dce5a4","_postman_id":"765f9736-d652-4812-98e1-071998dce5a4","description":""},{"name":"Note","item":[{"name":"Note Set","id":"60e5d59b-0865-4105-b456-bfbc6c156750","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 1000355829,\r\n            \"comments\": \"This is yet another test\"    \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For adding a candidate message</p>\n\n<ul>\n<li><p>ID - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>comments - <strong>REQUIRED</strong> - note being set</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 31048,\n        \"comments\": \"This is yet another test\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"814d2cab-78e7-4669-baa4-918827a22718","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,    \r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 31048,\r\n            \"comments\": \"This is yet another test\"    \r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Nov 2022 22:30:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"485"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"337719"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.049527\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-29T22:30:43\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate note set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"actionId\\\":58,\\\"message\\\":\\\"This is yet another test\\\"}\",\n            \"call\": \"https://api.ontempworks.com/Employees/31048/messages\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"1.518709\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Candidate note set\"\n}"}],"_postman_id":"60e5d59b-0865-4105-b456-bfbc6c156750"}],"id":"cbbfaae2-4117-4882-b811-ed453b44c849","_postman_id":"cbbfaae2-4117-4882-b811-ed453b44c849","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"7a33668f-c715-4ef7-ae95-939399e8f551","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n     \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"  \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For parsing resume data.</p>\n\n<ul>\n<li><p>file_name - <b>REQUIRED</b></p>\n</li>\n<li><p>file_data - <b>REQUIRED</b> - base64 encoded file</p>\n</li>\n</ul>\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n     \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n            \"file_name\": \"Resume.pdf\"\n        }\n  }\n</pre>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"9db8760d-24ab-4f2d-886d-6dd6c29813fe","name":"Response_201","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n     \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"  \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For parsing resume data.</p>\n\n+ file_name - <b>REQUIRED</b>\n\n+ file_data - <b>REQUIRED</b> - base64 encoded file\n\n<pre>\n  \"api_request_data\": {\n    \"api_request_query\": {\n     \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\n            \"file_name\": \"Resume.pdf\"\n        }\n  }\n</pre>"},"code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":""},{"id":"8dbf4848-6c9d-4889-b6fd-807db7bd70e1","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apikey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{AccountSid}}\",\r\n      \"api_pw\": \"{{AuthToken}}\"\r\n    },\r\n    \"vendor\": \"tempworks\",\r\n    \"api_sandbox\": 1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n     \"file_data\": \"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b3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDUgMCBSPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyA0NSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiA0IDAgUiBdCi9Db3VudCAyPj4KZW5kb2JqCgo3IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0E8PC9UeXBlL0FjdGlvbi9TL1VSSS9VUkkobWFpbHRvOnRpZmZhbnkwNzI4MjEtMkBoYWxleW1hcmtldGluZy5jb20pPj4KPj4KZW5kb2JqCgo0NiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgOCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKNDcgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI5MDg0NTQwLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCA0OAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwNjgxODMgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwNjgzNDMgMDAwMDAgbiAKMDAwMDAwMzE1MCAwMDAwMCBuIAowMDAwMDAzMzQxIDAwMDAwIG4gCjAwMDAwNjg1OTEgMDAwMDAgbiAKMDAwMDA2ODQ4NiAwMDAwMCBuIAowMDAwMDAzMzYxIDAwMDAwIG4gCjAwMDAwMTE1MjQgMDAwMDAgbiAKMDAwMDAxMTU0NiAwMDAwMCBuIAowMDAwMDExNzQyIDAwMDAwIG4gCjAwMDAwMTIxNDIgMDAwMDAgbiAKMDAwMDAxMjQwMSAwMDAwMCBuIAowMDAwMDIxNTc4IDAwMDAwIG4gCjAwMDAwMjE2MDAgMDAwMDAgbiAKMDAwMDAyMTc5NSAwMDAwMCBuIAowMDAwMDIyMTc3IDAwMDAwIG4gCjAwMDAwMjI0MTUgMDAwMDAgbiAKMDAwMDAzMDc5OSAwMDAwMCBuIAowMDAwMDMwODIxIDAwMDAwIG4gCjAwMDAwMzEwMjEgMDAwMDAgbiAKMDAwMDAzMTM3OSAwMDAwMCBuIAowMDAwMDMxNTk5IDAwMDAwIG4gCjAwMDAwMzM1MDUgMDAwMDAgbiAKMDAwMDAzMzUyNyAwMDAwMCBuIAowMDAwMDMzNzE5IDAwMDAwIG4gCjAwMDAwMzQwMTggMDAwMDAgbiAKMDAwMDAzNDE4MyAwMDAwMCBuIAowMDAwMDQ2OTM4IDAwMDAwIG4gCjAwMDAwNDY5NjEgMDAwMDAgbiAKMDAwMDA0NzE1NyAwMDAwMCBuIAowMDAwMDQ3NzIyIDAwMDAwIG4gCjAwMDAwNDgxMzIgMDAwMDAgbiAKMDAwMDA1NTg1NiAwMDAwMCBuIAowMDAwMDU1ODc4IDAwMDAwIG4gCjAwMDAwNTYwODYgMDAwMDAgbiAKMDAwMDA1NjQ4OSAwMDAwMCBuIAowMDAwMDU2NzU0IDAwMDAwIG4gCjAwMDAwNjcwMjAgMDAwMDAgbiAKMDAwMDA2NzA0MyAwMDAwMCBuIAowMDAwMDY3MjQ2IDAwMDAwIG4gCjAwMDAwNjc3MTIgMDAwMDAgbiAKMDAwMDA2ODAzNSAwMDAwMCBuIAowMDAwMDY4MTI4IDAwMDAwIG4gCjAwMDAwNjg3NTYgMDAwMDAgbiAKMDAwMDA2ODg1MyAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgNDgvUm9vdCA0NiAwIFIKL0luZm8gNDcgMCBSCi9JRCBbIDxFQTYyMUREREI0M0FGRDA0MTY2ODk4REZERjBGRjU3MD4KPEVBNjIxREREQjQzQUZEMDQxNjY4OThERkRGMEZGNTcwPiBdCi9Eb2NDaGVja3N1bSAvRkRBMzQ4QzZBNzhFRThCNjAzRjRBRTk0MUVBMzU1MzAKPj4Kc3RhcnR4cmVmCjY5MDI4CiUlRU9GCg==\",\r\n            \"file_name\": \"Resume.pdf\"  \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 30 Nov 2022 21:33:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"455"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"338131"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"candidate\": {\n                \"id\": 31055\n            }\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.385199\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2022-11-30T21:33:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"tempworks\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Resume parsed\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.ontempworks.com/Employees/Resume\"\n        },\n        \"vendor\": \"tempworks\",\n        \"elapsed\": \"1.681433\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Resume parsed\"\n}"}],"_postman_id":"7a33668f-c715-4ef7-ae95-939399e8f551"}],"id":"c49ece5e-a61c-4f4a-bd9d-691eddcd5736","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"c49ece5e-a61c-4f4a-bd9d-691eddcd5736","description":""}],"id":"7c4772ee-2731-47e7-a45d-4e1a0cf9c64a","_postman_id":"7c4772ee-2731-47e7-a45d-4e1a0cf9c64a","description":""},{"name":"RecruiterFlow","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"35e4110f-4d09-4b0b-8e99-9965827eaf78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<h2 id=\"authenticate-api-request\">Authenticate API Request</h2>\n<p>This API request is designed to establish a connection with the ATS (Applicant Tracking System) to allow for subsequent API calls. It is crucial for integrating with the Recruiterflow platform.</p>\n<p><strong>NOTE:</strong> This process is internal and primarily intended for testing purposes only.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be formatted as JSON and includes the following key components:</p>\n<ul>\n<li><p><strong>api_connect_data</strong>: Contains information necessary for the API connection.</p>\n<ul>\n<li><p><strong>api_connection</strong>: This object holds the credentials required to connect to the API.</p>\n<ul>\n<li><p><strong>api_id</strong>: <strong>REQUIRED</strong> - The unique identifier for the API connection.</p>\n</li>\n<li><p><strong>vendor</strong>: The name of the vendor (e.g., \"recruiterflow\").</p>\n</li>\n<li><p><strong>api_sandbox</strong>: <strong>OPTIONAL</strong> - Set to <code>1</code> for testing in a sandbox environment (default: <code>0</code>).</p>\n</li>\n<li><p><strong>api_performance_dump</strong>: <strong>OPTIONAL</strong> - Set to <code>1</code> to enable detailed logging of API call performance (default: <code>0</code>).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong>: <strong>OPTIONAL</strong> - Set to <code>1</code> to receive detailed responses for failed calls (default: <code>0</code>).</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {}\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the API will return a response containing the following key components:</p>\n<ul>\n<li><p><strong>api_response</strong>:</p>\n<ul>\n<li><p><strong>api_data</strong>: Contains the API URL and other relevant data.</p>\n<ul>\n<li><strong>RFBaseApiUrl</strong>: The base URL for the Recruiterflow API.</li>\n</ul>\n</li>\n<li><p><strong>api_log</strong>: Logs related to the API call.</p>\n</li>\n<li><p><strong>api_status</strong>: Indicates the status of the API call (0 for success).</p>\n</li>\n<li><p><strong>api_xstatus</strong>: Additional status information.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>atsconnect_status</strong>: Indicates the status of the connection to the ATS.</p>\n</li>\n<li><p><strong>atsconnect_ticket</strong>: Contains metadata about the connection request.</p>\n<ul>\n<li><p><strong>api_version</strong>: Version of the API.</p>\n</li>\n<li><p><strong>request</strong>: The original request made.</p>\n</li>\n<li><p><strong>vendor</strong>: The vendor associated with the request.</p>\n</li>\n<li><p><strong>elapsed</strong>: Time taken for the request.</p>\n</li>\n<li><p><strong>key</strong>: A unique key for the request.</p>\n</li>\n<li><p><strong>fn</strong>: Function name associated with the request.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>atsconnect_message</strong>: A message related to the connection status.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_response\": {\n    \"api_data\": {\n      \"RFBaseApiUrl\": \"\"\n    },\n    \"api_log\": {},\n    \"api_status\": 0,\n    \"api_xstatus\": \"\"\n  },\n  \"atsconnect_status\": 0,\n  \"atsconnect_ticket\": {\n    \"api_version\": \"\",\n    \"request\": \"\",\n    \"vendor\": \"\",\n    \"elapsed\": \"\",\n    \"key\": \"\",\n    \"fn\": \"\"\n  },\n  \"atsconnect_message\": \"\"\n}\n\n</code></pre>\n<ul>\n<li><p>api_id - <strong>REQUIRED</strong></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_connection\":\n      \"api_url\": \"{{atwork_api_url}}\",\n      \"api_secret\": \"{{atwork_api_pw}}\",\n      \"api_id\": \"{{atwork_api_id}}\",\n      \"api_db_code\": \"{{atwork_dbcode}}\",\n      \"api_pw\": \"{{atwork_dbcode_pw}}\"\n    }\n\n</code></pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7052f155-8fd4-4267-864e-840c7ece77a3","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Feb 2025 19:31:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"223"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"4634368"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"RFBaseApiUrl\": \"https://api.recruiterflow.com\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.033693\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"35e4110f-4d09-4b0b-8e99-9965827eaf78"}],"id":"7c52ca44-cfc0-4bc9-b1c2-b4ed82d1ae84","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"7c52ca44-cfc0-4bc9-b1c2-b4ed82d1ae84"},{"name":"Application","item":[{"name":"Application Get","id":"154686f7-c985-4bbf-b3fb-5a5600ed5f77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"04b9853d-6815-4320-b2d7-539f7bd798b9","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 17 May 2025 17:24:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"383"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"623095"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-17T17:24:24\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-05-17T17:24:24\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.045303\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"154686f7-c985-4bbf-b3fb-5a5600ed5f77"},{"name":"Application Get By ID","id":"509664c7-d760-4c2e-8d84-f05ab3c838ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n\n</code></pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e73d0501-e558-4b4b-a6d4-39c9f988ddec","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 17 May 2025 17:24:10 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"392"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1189287"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-05-17T17:24:10\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-05-17T17:24:10\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"id\": 9999\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.050296\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"509664c7-d760-4c2e-8d84-f05ab3c838ae"},{"name":"Application Set","id":"f6798100-a181-48ff-9bd2-dc91b7063742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 54\r\n        },\r\n        \"job\": {\r\n            \"id\": 2\r\n        }\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<h1 id=\"overview\">Overview</h1>\n<p>This API request is designed to create a candidate application in the system. It allows the user to submit candidate and job details for processing.</p>\n<h1 id=\"request\">Request</h1>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{ats-connect}}/application/set</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>api_connect_data</strong>: An object containing connection details.</p>\n<ul>\n<li><p><strong>api_connection</strong>: An object with connection identifiers.</p>\n<ul>\n<li><strong>api_id</strong>: The identifier for the API connection (REQUIRED).</li>\n</ul>\n</li>\n<li><p><strong>vendor</strong>: The name of the vendor (e.g., \"recruiterflow\").</p>\n</li>\n<li><p><strong>api_sandbox</strong>: Indicates if the API is running in sandbox mode (1 for true).</p>\n</li>\n<li><p><strong>api_performance_dump</strong>: Enables performance logging (1 for true).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong>: Enables detailed logging (1 for true).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_request_data</strong>: An object containing the request data.</p>\n<ul>\n<li><p><strong>api_request_query</strong>: An object with specific query details.</p>\n<ul>\n<li><p><strong>candidate</strong>: An object representing the candidate.</p>\n<ul>\n<li><strong>id</strong>: The unique identifier for the candidate (REQUIRED).</li>\n</ul>\n</li>\n<li><p><strong>job</strong>: An object representing the job.</p>\n<ul>\n<li><strong>id</strong>: The unique identifier for the job (REQUIRED).</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"candidate\": {\n        \"id\": 54\n      },\n      \"job\": {\n        \"id\": 2\n      }\n    }\n  }\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<p>The response will be in JSON format and contains the following structure:</p>\n<ul>\n<li><p><strong>api_response</strong>: An object that includes:</p>\n<ul>\n<li><p><strong>api_data</strong>: An object containing the result data.</p>\n<ul>\n<li><strong>id</strong>: The identifier for the created application.</li>\n</ul>\n</li>\n<li><p><strong>api_log</strong>: An object with logging details.</p>\n<ul>\n<li><p><strong>CALL_ATTEMPTS</strong>: Number of call attempts made.</p>\n</li>\n<li><p><strong>CALL_STATUS</strong>: Status of the API call.</p>\n</li>\n<li><p><strong>CALL_REQUEST</strong>: The request made to the API.</p>\n</li>\n<li><p><strong>CLIENT_ID</strong>: The identifier for the client.</p>\n</li>\n<li><p><strong>CALL_TIME</strong>: The time taken for the call.</p>\n</li>\n<li><p><strong>CALL_ACTION</strong>: The action performed.</p>\n</li>\n<li><p><strong>TIMESTAMP</strong>: The time of the request.</p>\n</li>\n<li><p><strong>APIKEY</strong>: The API key used.</p>\n</li>\n<li><p><strong>MESSAGE</strong>: Any message returned by the API.</p>\n</li>\n<li><p><strong>VENDOR</strong>: The vendor name.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_status</strong>: Status of the API response.</p>\n</li>\n<li><p><strong>api_xstatus</strong>: Extended status information.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>atsconnect_status</strong>: Status of the ATS connection.</p>\n</li>\n<li><p><strong>atsconnect_ticket</strong>: An object containing details about the connection ticket.</p>\n<ul>\n<li><p><strong>api_version</strong>: Version of the API.</p>\n</li>\n<li><p><strong>request</strong>: Details of the request made.</p>\n</li>\n<li><p><strong>vendor</strong>: The vendor name.</p>\n</li>\n<li><p><strong>elapsed</strong>: Time taken for the request.</p>\n</li>\n<li><p><strong>key</strong>: Connection key.</p>\n</li>\n<li><p><strong>fn</strong>: Function name.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-successful-response\">Example Successful Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_response\": {\n    \"api_data\": {\n      \"id\": 0\n    },\n    \"api_log\": {\n      \"CALL_ATTEMPTS\": 0,\n      \"CALL_STATUS\": 0,\n      \"CALL_REQUEST\": \"\",\n      \"CLIENT_ID\": null,\n      \"CALL_TIME\": \"\",\n      \"CALL_ACTION\": \"\",\n      \"TIMESTAMP\": \"\",\n      \"APIKEY\": \"\",\n      \"MESSAGE\": \"\",\n      \"VENDOR\": \"\"\n    },\n    \"api_status\": 0,\n    \"api_xstatus\": \"\"\n  },\n  \"atsconnect_status\": 0,\n  \"atsconnect_ticket\": {\n    \"api_version\": \"\",\n    \"request\": {\n      \"values\": \"\",\n      \"call\": \"\"\n    },\n    \"vendor\": \"\",\n    \"elapsed\": \"\",\n    \"key\": \"\",\n    \"fn\": \"\"\n  },\n  \"atsconnect_message\": \"\"\n}\n\n</code></pre>\n<p>This documentation is intended to provide a clear understanding of how to use the API request effectively.</p>\n<ul>\n<li><p>candidate -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n<li><p>job -&gt; ID - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\":{\"id\": 11 },\n        \"job\":{\"id\": 11}\n    }\n  }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"734d7f4c-803f-430a-a6f4-d32aa60b0c7e","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n        \"candidate\": {\r\n            \"id\": 54\r\n        },\r\n        \"job\": {\r\n            \"id\": 2\r\n        }\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 18:34:08 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"409"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3153"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 54\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.820593\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-02-28T18:34:09\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate application set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"job_id\\\":2,\\\"id\\\":54}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/add-to-job\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.890564\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Candidate application set\"\n}"}],"_postman_id":"f6798100-a181-48ff-9bd2-dc91b7063742"}],"id":"576a59e7-9f59-4cee-8936-3a4d12f5accf","_postman_id":"576a59e7-9f59-4cee-8936-3a4d12f5accf","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"84b20ee4-0d55-404a-8745-3cdaceed767b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6246eafa-f7a4-424c-951d-7180b784c1d9","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:13:18 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2112"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34698"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"34\",\n            \"candidates\": [\n                {\n                    \"referral_source\": \"job-board\",\n                    \"phone\": \"288.010.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.0244\",\n                    \"email\": \"agaa.hn1n@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 54,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"referral_source\": \"Referral\",\n                    \"phone\": \"288.000.1214\",\n                    \"last_name\": \"Dees\",\n                    \"cell_phone\": \"819.930.1244\",\n                    \"email\": \"agaa.hnnn@mailinator.com\",\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"90061\",\n                        \"address1\": \"159 Peony Rd\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 53,\n                    \"first_name\": \"Joan\"\n                },\n                {\n                    \"date_added\": \"2025-02-27\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 52,\n                    \"first_name\": \"Blah\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 51,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 50,\n                    \"phone\": \"888.000.1214\",\n                    \"first_name\": \"Employees\",\n                    \"cell_phone\": \"999.930.1244\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"phone\": \"888.000.1214\",\n                    \"last_name\": \"Test\",\n                    \"cell_phone\": \"999.930.1244\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 49,\n                    \"first_name\": \"Employee\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 48,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"referral_source\": \"akglhakjgaiogjkagkag algalggalhkgjkagk\",\n                    \"date_added\": \"2025-02-26\",\n                    \"skills\": \"Perl, Stuff,\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Boston\",\n                        \"zip\": \"80061\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Massachusetts\"\n                    },\n                    \"id\": 47,\n                    \"first_name\": \"Employee\",\n                    \"last_name\": \"Test\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 46,\n                    \"first_name\": \"Book\"\n                },\n                {\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 45,\n                    \"first_name\": \"Boo\"\n                },\n                {\n                    \"referral_source\": \"job-board\",\n                    \"date_added\": \"2025-02-26\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 44,\n                    \"first_name\": \"Unknown\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Software Development\",\n                    \"phone\": \"655-123-4567\",\n                    \"last_name\": \"Gates\",\n                    \"email\": \"bill.gates@avengers.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Seattle\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Washington\"\n                    },\n                    \"id\": 23,\n                    \"first_name\": \"Bill\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Structural Engineering\",\n                    \"phone\": \"555-555-2234\",\n                    \"last_name\": \"Mosby\",\n                    \"email\": \"ted.mosby@javurestaurant.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Colorado Springs\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Colorado\"\n                    },\n                    \"id\": 22,\n                    \"first_name\": \"Ted\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Branding\",\n                    \"phone\": \"555-817-5609\",\n                    \"last_name\": \"Stinson\",\n                    \"email\": \"barneystinson@legenary.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 21,\n                    \"first_name\": \"Barney\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Data Analysis\",\n                    \"phone\": \"555-123-4565\",\n                    \"last_name\": \"Holmes\",\n                    \"email\": \"sherlock@detective.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Romania\",\n                        \"city\": \"Bucharest\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Bucharest\"\n                    },\n                    \"id\": 20,\n                    \"first_name\": \"Sherlock\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Interrogation\",\n                    \"last_name\": \"Peralta\",\n                    \"email\": \"jake@brooklyn99.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 19,\n                    \"address\": {\n                        \"country\": \"France\",\n                        \"city\": \"Paris\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Ã\\u008ele-de-France\"\n                    },\n                    \"first_name\": \"Jake\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Client Management\",\n                    \"phone\": \"555-867-5609\",\n                    \"last_name\": \"Ross\",\n                    \"email\": \"mk@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Australia\",\n                        \"city\": \"Sydney\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New South Wales\"\n                    },\n                    \"id\": 18,\n                    \"first_name\": \"Michael\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5409\",\n                    \"last_name\": \"Bertram\",\n                    \"email\": \"gilf@piedpiper.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco Bay Area\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 17,\n                    \"first_name\": \"Gilfoyle\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Customer Service\",\n                    \"phone\": \"555-555-1234\",\n                    \"last_name\": \"Beesly\",\n                    \"email\": \"pam@beeslytheofficeseries1.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 16,\n                    \"first_name\": \"Pam\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-123-4562\",\n                    \"last_name\": \"Hudson\",\n                    \"email\": \"stan@hudsontheofficeseries1.ccom\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 15,\n                    \"first_name\": \"Stanley\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Research Methodologies\",\n                    \"phone\": \"555-123-4167\",\n                    \"last_name\": \"Cooper\",\n                    \"email\": \"sheldon@bbth.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 14,\n                    \"first_name\": \"Sheldon\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"tactical analysis\",\n                    \"phone\": \"555-888-9999\",\n                    \"last_name\": \"Vader\",\n                    \"email\": \"darth.vader@darksidephysics.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Furnace Creek\",\n                        \"zip\": \"92328\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 13,\n                    \"first_name\": \"Darth\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Hand-to-Hand Combat\",\n                    \"phone\": \"555-007-2424\",\n                    \"last_name\": \"Bauer\",\n                    \"email\": \"jack.bauer@knightswatch.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 12,\n                    \"first_name\": \"Jack\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Business Operations\",\n                    \"phone\": \"555-666-1313\",\n                    \"last_name\": \"Bratton\",\n                    \"email\": \"creed.bratton@spacebucks.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Dunmore\",\n                        \"zip\": \"18512\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 11,\n                    \"first_name\": \"Creed\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"MAPPING\",\n                    \"phone\": \"555-123-4563\",\n                    \"last_name\": \"Geller, Ph.D\",\n                    \"email\": \"ross@friends.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 10,\n                    \"first_name\": \"Ross\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"FARMING\",\n                    \"phone\": \"555-987-6537\",\n                    \"last_name\": \"Schrute\",\n                    \"email\": \"dwight.schrute@schrute-farms.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 9,\n                    \"first_name\": \"Dwight\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Photography\",\n                    \"phone\": \"555-987-6557\",\n                    \"last_name\": \"Parker\",\n                    \"email\": \"peter.parker@spider-man.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 8,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Banking Law\",\n                    \"phone\": \"555-123-4667\",\n                    \"last_name\": \"Litt\",\n                    \"email\": \"ll@spector-litt.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Westbury\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 7,\n                    \"first_name\": \"Louis\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-123-3567\",\n                    \"last_name\": \"W.\",\n                    \"email\": \"peter@forcemember.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"id\": 6,\n                    \"first_name\": \"Peter\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Leadership\",\n                    \"phone\": \"555-987-6543\",\n                    \"last_name\": \"Wallace\",\n                    \"email\": \"david.wallace@theoffice.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Scranton\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 5,\n                    \"first_name\": \"David\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"Market Analysis\",\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 4,\n                    \"first_name\": \"Don\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"CRM\",\n                    \"phone\": \"555-25436-268\",\n                    \"last_name\": \"Halpert\",\n                    \"email\": \"jim.halpert@theoffice.con\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Olyphant\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"Pennsylvania\"\n                    },\n                    \"id\": 3,\n                    \"first_name\": \"Jim\"\n                },\n                {\n                    \"referral_source\": \"LinkedIn\",\n                    \"skills\": \"C++\",\n                    \"phone\": \"555-867-5309\",\n                    \"last_name\": \"Hendriks\",\n                    \"email\": \"richard.hendricks@pied-piperhbo.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"San Francisco\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"id\": 2,\n                    \"first_name\": \"Richard\"\n                },\n                {\n                    \"date_added\": \"2024-12-28\",\n                    \"skills\": \"Inventory Management\",\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"id\": 1,\n                    \"first_name\": \"Monica\",\n                    \"last_name\": \"Geller Bing\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.184579\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:13:19\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"34 candidates returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/list?current_page=1&items_per_page=100&include_count=true\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.267018\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"34 candidates returned\"\n}"}],"_postman_id":"84b20ee4-0d55-404a-8745-3cdaceed767b"},{"name":"Candidate Set","id":"c335e9b8-5898-4a37-9fe3-57a20c84f3db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"first_name\":\"Joan\",\r\n        \"last_name\":\"Dees\",\r\n        \"email\": \"agaa.hn1n@mailinator.com\",\r\n        \"referral_source\": \"Referral\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"159 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"phone\":\"819.930.0244\",        \r\n        \"cell_phone\":\"288.010.1214\",\r\n        \"education\": [\r\n                        {\r\n                            \"degree_type\": \"Bachelor\",\r\n                            \"graduation_date\": \"01/21/1991\",\r\n                            \"major\": \"Accounting\",\r\n                            \"school\":  \"Pine College\",\r\n                            \"state\": \"KS\",\r\n                            \"city\": \"City\",\r\n                            \"country\": \"US\",\r\n                            \"start_date\": \"12/11/1999\",\r\n                            \"certification\": \"Certify\"\r\n                        }\r\n                     ],\r\n            \"work_history\": [\r\n                    {\r\n                        \"company_name\": \"Company\",\r\n                        \"start_date\": \"12/20/2000\",\r\n                        \"end_date\": \"12/21/2000\",\r\n                        \"title\": \"Title\",\r\n                        \"comments\": \"job duties\",\r\n                        \"state\": \"NY\",\r\n                        \"city\": \"Boston\",\r\n                        \"country\": \"US\"                    \r\n                    }\r\n                ]                     \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<h1 id=\"api-request-documentation-for-setting-candidate-data\">API Request Documentation for Setting Candidate Data</h1>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{ats-connect}}/candidate/set</code></p>\n</li>\n</ul>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li>Ensure to include any required authentication headers as specified by your API documentation.</li>\n</ul>\n<h3 id=\"body\">Body</h3>\n<p>The request body must be in JSON format and should contain the following parameters:</p>\n<ul>\n<li><p><strong>api_connect_data</strong>: Object containing connection details.</p>\n<ul>\n<li><p><strong>api_connection</strong>: Object with the following key:</p>\n<ul>\n<li><strong>api_id</strong>: <strong>REQUIRED</strong> - The API identifier for the connection.</li>\n</ul>\n</li>\n<li><p><strong>vendor</strong>: <strong>REQUIRED</strong> - The name of the vendor (e.g., \"recruiterflow\").</p>\n</li>\n<li><p><strong>api_sandbox</strong>: <strong>OPTIONAL</strong> - Indicates if the request is made in a sandbox environment (1 for true).</p>\n</li>\n<li><p><strong>api_performance_dump</strong>: <strong>OPTIONAL</strong> - Enables performance logging (1 for true).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong>: <strong>OPTIONAL</strong> - Enables verbose logging (1 for true).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_request_data</strong>: Object containing candidate information.</p>\n<ul>\n<li><p><strong>api_request_query</strong>: Object with the following keys:</p>\n<ul>\n<li><p><strong>first_name</strong>: <strong>REQUIRED</strong> - The candidate's first name.</p>\n</li>\n<li><p><strong>last_name</strong>: <strong>OPTIONAL</strong> - The candidate's last name.</p>\n</li>\n<li><p><strong>email</strong>: <strong>OPTIONAL</strong> - The candidate's email address.</p>\n</li>\n<li><p><strong>phone</strong>: <strong>OPTIONAL</strong> - The candidate's phone number.</p>\n</li>\n<li><p><strong>cell_phone</strong>: <strong>OPTIONAL</strong> - The candidate's cell phone number.</p>\n</li>\n<li><p><strong>address1</strong>: <strong>OPTIONAL</strong> - The primary address line.</p>\n</li>\n<li><p><strong>address2</strong>: <strong>OPTIONAL</strong> - The secondary address line.</p>\n</li>\n<li><p><strong>city</strong>: <strong>OPTIONAL</strong> - The city of residence.</p>\n</li>\n<li><p><strong>state</strong>: <strong>OPTIONAL</strong> - The state of residence.</p>\n</li>\n<li><p><strong>zip</strong>: <strong>OPTIONAL</strong> - The postal code.</p>\n</li>\n<li><p><strong>country</strong>: <strong>OPTIONAL</strong> - The country of residence.</p>\n</li>\n<li><p><strong>referral_source</strong>: <strong>OPTIONAL</strong> - The source from which the candidate was referred.</p>\n</li>\n<li><p><strong>education</strong>: <strong>OPTIONAL</strong> - An array of education records.</p>\n<ul>\n<li><p>Each education record can include:</p>\n<ul>\n<li><p><strong>degree_type</strong>: Type of degree obtained.</p>\n</li>\n<li><p><strong>graduation_date</strong>: Date of graduation.</p>\n</li>\n<li><p><strong>major</strong>: Major field of study.</p>\n</li>\n<li><p><strong>school</strong>: Name of the educational institution.</p>\n</li>\n<li><p><strong>state</strong>: State where the institution is located.</p>\n</li>\n<li><p><strong>city</strong>: City where the institution is located.</p>\n</li>\n<li><p><strong>country</strong>: Country where the institution is located.</p>\n</li>\n<li><p><strong>start_date</strong>: Start date of the education.</p>\n</li>\n<li><p><strong>certification</strong>: Any certification obtained.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>work_history</strong>: <strong>OPTIONAL</strong> - An array of work history records.</p>\n<ul>\n<li><p>Each work history record can include:</p>\n<ul>\n<li><p><strong>company_name</strong>: Name of the company.</p>\n</li>\n<li><p><strong>start_date</strong>: Start date of employment.</p>\n</li>\n<li><p><strong>end_date</strong>: End date of employment.</p>\n</li>\n<li><p><strong>title</strong>: Job title.</p>\n</li>\n<li><p><strong>comments</strong>: Comments about job duties.</p>\n</li>\n<li><p><strong>state</strong>: State where the company is located.</p>\n</li>\n<li><p><strong>city</strong>: City where the company is located.</p>\n</li>\n<li><p><strong>country</strong>: Country where the company is located.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>The response will be in JSON format and will include the following structure:</p>\n<ul>\n<li><p><strong>api_response</strong>: Object containing the results of the API call.</p>\n<ul>\n<li><p><strong>api_data</strong>: Object with the following key:</p>\n<ul>\n<li><strong>id</strong>: The unique identifier for the candidate.</li>\n</ul>\n</li>\n<li><p><strong>api_log</strong>: Object containing logging information about the API call.</p>\n<ul>\n<li><p><strong>CALL_ATTEMPTS</strong>: Number of attempts made to call the API.</p>\n</li>\n<li><p><strong>CALL_STATUS</strong>: Status of the API call.</p>\n</li>\n<li><p><strong>CALL_REQUEST</strong>: The request made to the API.</p>\n</li>\n<li><p><strong>CLIENT_ID</strong>: The client identifier (if applicable).</p>\n</li>\n<li><p><strong>CALL_TIME</strong>: The time taken for the API call.</p>\n</li>\n<li><p><strong>CALL_ACTION</strong>: The action performed by the API.</p>\n</li>\n<li><p><strong>TIMESTAMP</strong>: The time of the API call.</p>\n</li>\n<li><p><strong>APIKEY</strong>: The API key used for the request.</p>\n</li>\n<li><p><strong>MESSAGE</strong>: Any message returned by the API.</p>\n</li>\n<li><p><strong>VENDOR</strong>: The vendor associated with the API call.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_status</strong>: The status code of the API response.</p>\n</li>\n<li><p><strong>api_xstatus</strong>: Extended status information.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<ul>\n<li>{\"api_response\": { \"api_data\": { \"id\": 0 }, \"api_log\": { \"CALL_ATTEMPTS\": 0, \"CALL_STATUS\": 0, \"CALL_REQUEST\": \"\", \"CLIENT_ID\": null, \"CALL_TIME\": \"\", \"CALL_ACTION\": \"\", \"TIMESTAMP\": \"\", \"APIKEY\": \"\", \"MESSAGE\": \"\", \"VENDOR\": \"\" }, \"api_status\": 0, \"api_xstatus\": \"\"},\"atsconnect_status\": 0,\"atsconnect_ticket\": { \"api_version\": \"\", \"request\": { \"values\": \"\", \"call\": \"\" }, \"vendor\": \"\", \"elapsed\": \"\", \"key\": \"\", \"fn\": \"\"},\"atsconnect_message\": \"\"}</li>\n</ul>\n<p>This documentation provides a clear and comprehensive overview of how to use the API for setting candidate data, including the structure of requests and responses.</p>\n<ul>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>skills - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>education - <strong>OPTIONAL - array reference</strong></p>\n</li>\n<li><p>experience - <strong>OPTIONAL - array reference</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"24c52cf5-2420-48bb-9b9a-5240714adf9f","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"first_name\":\"Joan\",\r\n        \"last_name\":\"Dees\",\r\n        \"email\": \"agaa.hn1n@mailinator.com\",\r\n        \"referral_source\": \"Referral\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"159 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"phone\":\"819.930.0244\",        \r\n        \"cell_phone\":\"288.010.1214\",\r\n        \"education\": [\r\n                        {\r\n                            \"degree_type\": \"Bachelor\",\r\n                            \"graduation_date\": \"01/21/1991\",\r\n                            \"major\": \"Accounting\",\r\n                            \"school\":  \"Pine College\",\r\n                            \"state\": \"KS\",\r\n                            \"city\": \"City\",\r\n                            \"country\": \"US\",\r\n                            \"start_date\": \"12/11/1999\",\r\n                            \"certification\": \"Certify\"\r\n                        }\r\n                     ],\r\n                \"work_history\": [\r\n                        {\r\n                            \"company_name\": \"Company\",\r\n                            \"start_date\": \"12/20/2000\",\r\n                            \"end_date\": \"12/21/2000\",\r\n                            \"title\": \"Title\",\r\n                            \"comments\": \"job duties\",\r\n                            \"state\": \"NY\",\r\n                            \"city\": \"Boston\",\r\n                            \"country\": \"US\"                    \r\n                        }\r\n                     ]                     \r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 18:23:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"712"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2136"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 54\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.729748\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-02-27T18:23:07\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"source\\\":\\\"Referral\\\",\\\"education\\\":[{\\\"degree\\\":\\\"Bachelor\\\",\\\"from\\\":[\\\"12\\\",\\\"1999\\\"],\\\"specialization\\\":\\\"Accounting\\\",\\\"school\\\":\\\"Pine College\\\"}],\\\"location\\\":{\\\"street_address_1\\\":\\\"159 Peony Rd\\\",\\\"country\\\":\\\"United States\\\",\\\"city\\\":\\\"Boston\\\",\\\"postal_code\\\":\\\"90061\\\",\\\"street_address_2\\\":\\\"\\\",\\\"state\\\":\\\"Maine\\\"},\\\"phone_number\\\":[{\\\"phone_number\\\":\\\"819.930.0244\\\",\\\"type\\\":2},{\\\"phone_number\\\":\\\"288.010.1214\\\",\\\"type\\\":1}],\\\"experience\\\":[{\\\"designation\\\":\\\"Title\\\",\\\"to\\\":[\\\"12\\\",\\\"2000\\\"],\\\"from\\\":[\\\"12\\\",\\\"2000\\\"],\\\"organization\\\":\\\"Company\\\"}],\\\"last_name\\\":\\\"Dees\\\",\\\"email\\\":[{\\\"email\\\":\\\"agaa.hn1n@mailinator.com\\\",\\\"is_primary\\\":true}],\\\"first_name\\\":\\\"Joan\\\"}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/add\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.04979\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"c335e9b8-5898-4a37-9fe3-57a20c84f3db"},{"name":"Candidate Update","id":"8be43b77-d419-426e-8852-ed1eb91d5def","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 54,\r\n        \"last_name\":\"Mitchell\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong></p>\n</li>\n<li><p>first_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>last_name - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>email - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address2 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>opt_out - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"8fe5300c-f17d-48a3-a3ec-812a6e55ea33","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"id\": 54,\r\n        \"last_name\":\"Mitchell\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 18:51:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"424"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34618"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 54\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.547129\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-02-27T18:51:32\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"source\\\":\\\"job-board\\\",\\\"id\\\":54,\\\"last_name\\\":\\\"Mitchell\\\"}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/update\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.83757\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"8be43b77-d419-426e-8852-ed1eb91d5def"},{"name":"Candidate Get By ID","id":"6c44edcf-6044-428f-9554-81c3f3e9ebe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - candidate ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": \"4\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"7abff454-d710-4edf-bd3c-58ff45bdd87e","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n    \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 21:43:30 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"592"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2237"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"candidates\": [\n                {\n                    \"skills\": [\n                        \"Market Analysis\",\n                        \"Client Management\",\n                        \"Strategy\",\n                        \"Marketing\",\n                        \"Brand Management\",\n                        \"Advertising\",\n                        \"Project Management\",\n                        \"Digital Marketing\"\n                    ],\n                    \"phone\": \"555-54865-487\",\n                    \"last_name\": \"Draper\",\n                    \"email\": \"don_draper@scd.com\",\n                    \"date_added\": \"2024-12-28\",\n                    \"id\": 4,\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"New York\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"New York\"\n                    },\n                    \"first_name\": \"Don\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidates GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.103707\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-27T21:43:32\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 candidate returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/get?id=4\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.178156\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 candidate returned\"\n}"}],"_postman_id":"6c44edcf-6044-428f-9554-81c3f3e9ebe2"},{"name":"Candidate Set Education","id":"26872579-33ee-43d6-84f4-328e26ee7c31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0b33d93f-e6c9-4ae3-ad07-703980d27bd8","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 18:55:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"391"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"34621"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-02-27T18:55:24\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-02-27T18:55:24\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.046225\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"26872579-33ee-43d6-84f4-328e26ee7c31"},{"name":"Candidate Get Education","id":"2a0f5d85-a5d3-4d60-84b8-1d2960104e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                            \"id\": 4\r\n                         }\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For getting a candidate's education record.</p>\n\n<p>id - <strong>REQUIRED</strong> - candidate -&gt; ID</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n                      \"id\": 4\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a7e509f5-f7dc-4038-b18a-e1678a0ab49d","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"candidate\": {\r\n                            \"id\": 4\r\n                         }\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 17:32:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"490"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35293"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"education\": [\n                {\n                    \"degree\": \"Bachelor of Arts in Advertising\",\n                    \"end_date\": [\n                        6,\n                        1954\n                    ],\n                    \"start_date\": [\n                        9,\n                        1950\n                    ],\n                    \"school\": \"University of Pennsylvania, Philadelphia, PA\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.451221\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-28T17:32:45\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 education returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/get?id=4\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.492488\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 education returned\"\n}"}],"_postman_id":"2a0f5d85-a5d3-4d60-84b8-1d2960104e9d"},{"name":"Candidate Set Work History","id":"f26d20b6-ece7-4d87-8bd0-7ecca5427824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e23f535f-0820-45ae-b852-394420ca4c13","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Feb 2025 18:58:12 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"394"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2163"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-02-27T18:58:13\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-02-27T18:58:13\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.045374\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f26d20b6-ece7-4d87-8bd0-7ecca5427824"},{"name":"Candidate Get Work History","id":"1dab6162-2495-4eb6-a98b-03cbdfb8c0aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 4\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p>id - <strong>REQUIRED</strong> - candidate -&gt; ID</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"candidate\": {\n                      \"id\": 4\n        }\n    }\n  }\n\n</code></pre>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"6923ec85-fcd2-4768-bdbc-4ad9d9d407bf","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n            \"candidate\": {\r\n                \"id\": 4\r\n            }\r\n    }\r\n}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 17:33:15 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"524"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35296"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"1\",\n            \"workhistory\": [\n                {\n                    \"end_date\": [\n                        null,\n                        null\n                    ],\n                    \"company_name\": \"Sterling Cooper Draper Pryce\",\n                    \"start_date\": [\n                        12,\n                        1963\n                    ],\n                    \"title\": \"Creative Director & Partner\"\n                },\n                {\n                    \"end_date\": [\n                        12,\n                        1963\n                    ],\n                    \"company_name\": \"Sterling Cooper Advertising Agency\",\n                    \"start_date\": [\n                        5,\n                        1957\n                    ],\n                    \"title\": \"Creative Director\"\n                }\n            ]\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.96796\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2025-02-28T17:33:16\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 workhistory returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/get?id=4\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.993849\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"1 workhistory returned\"\n}"}],"_postman_id":"1dab6162-2495-4eb6-a98b-03cbdfb8c0aa"}],"id":"5a008ea9-e3b8-4cc7-9a0b-358799445c2c","_postman_id":"5a008ea9-e3b8-4cc7-9a0b-358799445c2c","description":""},{"name":"Custom","item":[{"name":"Custom","id":"efc7d518-74bb-4095-9fab-99242d7dd4a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to Ceipal via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3440b37d-4f98-48e1-9a51-210bcfe13a81","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 18:40:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"375"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"35352"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-02-28T18:40:42\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-02-28T18:40:42\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.047213\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"efc7d518-74bb-4095-9fab-99242d7dd4a8"}],"id":"489c6092-f725-4c7d-a3d9-eec10848699b","_postman_id":"489c6092-f725-4c7d-a3d9-eec10848699b","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"a7203f6f-dc31-4ae5-9d4b-46210c19790e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\", \n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 4,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n            \"file_name\": \"Resume-03-12-2025.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<ul>\n<li><p>id - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>file_data - <strong>REQUIRED</strong> - base64 encoded file</p>\n</li>\n<li><p>file_name - <strong>REQUIRED</strong></p>\n</li>\n</ul>\n","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f00bbb6a-e930-4a19-bfc8-aa4b41f4bd30","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\", \n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {\n      \"id\": 4,\n      \"file_data\": \"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MTEwIDAgb2JqCjw8L1R5cGUvRm9udC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zLUJvbGQKL0ZpcnN0Q2hhciAwCi9MYXN0Q2hhciAxNAovV2lkdGhzWzAgNjgyIDM0MiA4MTAgNjc0IDcxMSA2NTEgMzQ4IDcyMCA3MTEgNjg3IDY3OCAxMDQxIDY2NSA0OTMgXQovRm9udERlc2NyaXB0b3IgMTA4IDAgUgovVG9Vbmljb2RlIDEwOSAwIFIKPj4KZW5kb2JqCgoxMTEgMCBvYmoKPDwvRjEgMTEwIDAgUi9GMiAxMDAgMCBSL0YzIDkwIDAgUi9GNCA4MCAwIFIvRjUgMTA1IDAgUi9GNiA4NSAwIFIvRjcgOTUgMCBSCj4+CmVuZG9iagoKMTEyIDAgb2JqCjw8Ci9Gb250IDExMSAwIFIKL1Byb2NTZXRbL1BERi9UZXh0XQo+PgplbmRvYmoKCjEgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0Fubm90c1sKNzQgMCBSIF0KL1RhYnMvUwovU3RydWN0UGFyZW50cyAwCi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNzAgMCBvYmoKPDwvVHlwZS9QYWdlL1BhcmVudCA3NSAwIFIvUmVzb3VyY2VzIDExMiAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1N0cnVjdFBhcmVudHMgMQovQ29udGVudHMgNzEgMCBSPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UaXRsZQovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjExNCAwIG9iago8PC9UeXBlL09CSlIvT2JqIDc0IDAgUj4+CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTGluawovUCA2IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvVGV4dERlY29yYXRpb25UeXBlL1VuZGVybGluZQo+PgovS1s2IDExNCAwIFIgXQo+PgplbmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMDgzCi9UZXh0QWxpZ24vQ2VudGVyCj4+Ci9LWzEgMiAzIDQgNSA3IDAgUiA3IF0KPj4KZW5kb2JqCgo4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjA0MQovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s4IF0KPj4KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjgxMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1s5IF0KPj4KZW5kb2JqCgoxMCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yMzIKL1RleHRBbGlnbi9KdXN0aWZ5Cj4+Ci9LWzEwIDExIDEyIDEzIF0KPj4KZW5kb2JqCgoxMSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovVGV4dEFsaWduL0NlbnRlcgo+PgovS1sxNCBdCj4+CmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE1IF0KPj4KZW5kb2JqCgoxOSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMTggMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTYgMTcgXQo+PgplbmRvYmoKCjE4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAxNiAwIFIKL1BnIDEgMCBSCi9LWzE5IDAgUiBdCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMTcgMCBSIDE4IDAgUiBdCj4+CmVuZG9iagoKMjEgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzE4IF0KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjIgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMTkgXQo+PgplbmRvYmoKCjIyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyMCAwIFIKL1BnIDEgMCBSCi9LWzIzIDAgUiBdCj4+CmVuZG9iagoKMjAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjEgMCBSIDIyIDAgUiBdCj4+CmVuZG9iagoKMjUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzIwIF0KPj4KZW5kb2JqCgoyNyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMjYgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjEgXQo+PgplbmRvYmoKCjI2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyNCAwIFIKL1BnIDEgMCBSCi9LWzI3IDAgUiBdCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMjUgMCBSIDI2IDAgUiBdCj4+CmVuZG9iagoKMzAgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzIyIF0KPj4KZW5kb2JqCgozMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzEgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjMgXQo+PgplbmRvYmoKCjMxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAyOSAwIFIKL1BnIDEgMCBSCi9LWzMyIDAgUiBdCj4+CmVuZG9iagoKMjkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzAgMCBSIDMxIDAgUiBdCj4+CmVuZG9iagoKMzQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzI0IF0KPj4KZW5kb2JqCgozNiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzUgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjUgXQo+PgplbmRvYmoKCjM1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzMyAwIFIKL1BnIDEgMCBSCi9LWzM2IDAgUiBdCj4+CmVuZG9iagoKMzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzQgMCBSIDM1IDAgUiBdCj4+CmVuZG9iagoKMzggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzI2IF0KPj4KZW5kb2JqCgo0MCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgMzkgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1N0YXJ0SW5kZW50IDAuMDkKL1RleHRJbmRlbnQgLTAuMjcKPj4KL0tbMjcgXQo+PgplbmRvYmoKCjM5IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCAzNyAwIFIKL1BnIDEgMCBSCi9LWzQwIDAgUiBdCj4+CmVuZG9iagoKMzcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDE1IDAgUgovUGcgMSAwIFIKL0tbMzggMCBSIDM5IDAgUiBdCj4+CmVuZG9iagoKMTUgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgMTQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzE2IDAgUiAyMCAwIFIgMjQgMCBSIDI5IDAgUiAzMyAwIFIgMzcgMCBSIF0KPj4KZW5kb2JqCgoxNCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVEQKL1AgMTMgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvSW5saW5lCi9XaWR0aCA1LjMwNgovSGVpZ2h0IDEuMDEyCj4+Ci9LWzE1IDAgUiBdCj4+CmVuZG9iagoKMjggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1RECi9QIDEzIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0lubGluZQovV2lkdGggNC45MTgKL0hlaWdodCAxLjAxMgo+Pgo+PgplbmRvYmoKCjEzIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9UUgovUCAxMiAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1sxNCAwIFIgMjggMCBSIF0KPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvVGFibGUKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4xMgovV2lkdGggMTAuMjI0Ci9IZWlnaHQgMS4xMzIKL0JCb3hbNTAuNCA0ODUuNSA1NjEuNiA1NDIuMV0KPj4KL0tbMTMgMCBSIF0KPj4KZW5kb2JqCgo0MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC43NzUKPj4KL0tbMjggXQo+PgplbmRvYmoKCjQyIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjI5Mgo+PgovS1syOSAzMCBdCj4+CmVuZG9iagoKNDMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKPj4KL0tbMzEgMzIgXQo+PgplbmRvYmoKCjQ0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKPj4KL0tbMzMgMzQgMzUgMzYgXQo+PgplbmRvYmoKCjQ3IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1szNyBdCj4+CmVuZG9iagoKNDkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQ4IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzM4IDM5IDQwIF0KPj4KZW5kb2JqCgo0OCAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNDYgMCBSCi9QZyAxIDAgUgovS1s0OSAwIFIgXQo+PgplbmRvYmoKCjQ2IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzQ3IDAgUiA0OCAwIFIgXQo+PgplbmRvYmoKCjUxIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MYmwKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s0MSBdCj4+CmVuZG9iagoKNTMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDUyIDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjEKL1N0YXJ0SW5kZW50IDAuNTQ3Ci9UZXh0SW5kZW50IC0wLjM2Cj4+Ci9LWzQyIDQzIDQ0IF0KPj4KZW5kb2JqCgo1MiAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvTEJvZHkKL1AgNTAgMCBSCi9QZyAxIDAgUgovS1s1MyAwIFIgXQo+PgplbmRvYmoKCjUwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MSQovUCA0NSAwIFIKL1BnIDEgMCBSCi9LWzUxIDAgUiA1MiAwIFIgXQo+PgplbmRvYmoKCjQ1IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xpc3QvTGlzdE51bWJlcmluZy9Ob25lCj4+Ci9LWzQ2IDAgUiA1MCAwIFIgXQo+PgplbmRvYmoKCjU0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCi9TcGFjZUJlZm9yZSAwLjM2Cj4+Ci9LWzQ1IDQ2IF0KPj4KZW5kb2JqCgo1NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s0NyA0OCBdCj4+CmVuZG9iagoKNTYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQo+PgovS1s0OSA1MCA1MSBdCj4+CmVuZG9iagoKNTkgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzUyIF0KPj4KZW5kb2JqCgo2MSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjAgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTMgNTQgNTUgNTYgXQo+PgplbmRvYmoKCjYwIDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA1OCAwIFIKL1BnIDEgMCBSCi9LWzYxIDAgUiBdCj4+CmVuZG9iagoKNTggMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNTkgMCBSIDYwIDAgUiBdCj4+CmVuZG9iagoKNjMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xibAovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzU3IF0KPj4KZW5kb2JqCgo2NSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNjQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuMQovU3RhcnRJbmRlbnQgMC41NDcKL1RleHRJbmRlbnQgLTAuMzYKPj4KL0tbNTggNTkgXQo+PgplbmRvYmoKCjY0IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9MQm9keQovUCA2MiAwIFIKL1BnIDEgMCBSCi9LWzY1IDAgUiBdCj4+CmVuZG9iagoKNjIgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0xJCi9QIDU3IDAgUgovUGcgMSAwIFIKL0tbNjMgMCBSIDY0IDAgUiBdCj4+CmVuZG9iagoKNTcgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0wKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGlzdC9MaXN0TnVtYmVyaW5nL05vbmUKPj4KL0tbNTggMCBSIDYyIDAgUiBdCj4+CmVuZG9iagoKNjYgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyAxIDAgUgovQSA8PC9PL0xheW91dC9QbGFjZW1lbnQvQmxvY2sKL1NwYWNlQmVmb3JlIDAuODE1Cj4+Ci9LWzYwIF0KPj4KZW5kb2JqCgo2NyAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawovU3BhY2VCZWZvcmUgMC4yNTIKPj4KL0tbNjEgNjIgXQo+PgplbmRvYmoKCjY4IDAgb2JqCjw8L1R5cGUvU3RydWN0RWxlbQovUy9TdGFuZGFyZAovUCA0IDAgUgovUGcgMSAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzYzIF0KPj4KZW5kb2JqCgo2OSAwIG9iago8PC9UeXBlL1N0cnVjdEVsZW0KL1MvU3RhbmRhcmQKL1AgNCAwIFIKL1BnIDEgMCBSCi9BIDw8L08vTGF5b3V0L1BsYWNlbWVudC9CbG9jawo+PgovS1s2NCBdCj4+CmVuZG9iagoKNzMgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL1N0YW5kYXJkCi9QIDQgMCBSCi9QZyA3MCAwIFIKL0EgPDwvTy9MYXlvdXQvUGxhY2VtZW50L0Jsb2NrCj4+Ci9LWzAgXQo+PgplbmRvYmoKCjQgMCBvYmoKPDwvVHlwZS9TdHJ1Y3RFbGVtCi9TL0RvY3VtZW50Ci9QIDExMyAwIFIKL1BnIDEgMCBSCi9LWzUgMCBSIDYgMCBSIDggMCBSIDkgMCBSIDEwIDAgUiAxMSAwIFIgMTIgMCBSIDQxIDAgUiA0MiAwIFIgNDMgMCBSIDQ0IDAgUiA0NSAwIFIgNTQgMCBSIDU1IDAgUiA1NiAwIFIgNTcgMCBSCjY2IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiA3MyAwIFIgXQo+PgplbmRvYmoKCjExMyAwIG9iago8PC9UeXBlL1N0cnVjdFRyZWVSb290Ci9QYXJlbnRUcmVlIDExNSAwIFIKL1JvbGVNYXA8PC9TdGFuZGFyZC9QCi9UaXRsZS9QCj4+Ci9LWzQgMCBSIF0KPj4KZW5kb2JqCgoxMTUgMCBvYmoKPDwvTnVtc1sKMCBbIDUgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDYgMCBSIDcgMCBSIDYgMCBSIDggMCBSIDkgMCBSCjEwIDAgUiAxMCAwIFIgMTAgMCBSIDEwIDAgUiAxMSAwIFIgMTcgMCBSIDE5IDAgUiAxOSAwIFIgMjEgMCBSIDIzIDAgUgoyNSAwIFIgMjcgMCBSIDMwIDAgUiAzMiAwIFIgMzQgMCBSIDM2IDAgUiAzOCAwIFIgNDAgMCBSIDQxIDAgUiA0MiAwIFIKNDIgMCBSIDQzIDAgUiA0MyAwIFIgNDQgMCBSIDQ0IDAgUiA0NCAwIFIgNDQgMCBSIDQ3IDAgUiA0OSAwIFIgNDkgMCBSCjQ5IDAgUiA1MSAwIFIgNTMgMCBSIDUzIDAgUiA1MyAwIFIgNTQgMCBSIDU0IDAgUiA1NSAwIFIgNTUgMCBSIDU2IDAgUgo1NiAwIFIgNTYgMCBSIDU5IDAgUiA2MSAwIFIgNjEgMCBSIDYxIDAgUiA2MSAwIFIgNjMgMCBSIDY1IDAgUiA2NSAwIFIKNjYgMCBSIDY3IDAgUiA2NyAwIFIgNjggMCBSIDY5IDAgUiBdCjEgWyA3MyAwIFIgXQoyIDcgMCBSCl0+PgplbmRvYmoKCjc1IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMTIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgNzAgMCBSIF0KL0NvdW50IDI+PgplbmRvYmoKCjc0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9MaW5rL0JvcmRlclswIDAgMF0vUmVjdFszNDYuNDkzIDY5NS43IDUzMy45MDcgNzA5LjVdL0NvbnRlbnRzPEZFRkYwMDc0MDA2OTAwNjYwMDY2MDA2MTAwNkUwMDc5MDAzMDAwMzcwMDMyMDAzODAwMzIwMDMxMDAyRDAwMzIwMDQwMDA2ODAwNjEwMDZDMDA2NTAwNzkwMDZEMDA2MTAwNzIwMDZCMDA2NTAwNzQwMDY5MDA2RTAwNjcwMDJFMDA2MzAwNkYwMDZEPi9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKG1haWx0bzp0aWZmYW55MDcyODIxLTJAaGFsZXltYXJrZXRpbmcuY29tKT4+Ci9TdHJ1Y3RQYXJlbnQgMj4+CmVuZG9iagoKMTE2IDAgb2JqCjw8L1R5cGUvQ2F0YWxvZy9QYWdlcyA3NSAwIFIKL1BhZ2VNb2RlL1VzZU91dGxpbmVzCi9PcGVuQWN0aW9uWzEgMCBSIC9YWVogbnVsbCBudWxsIDBdCi9TdHJ1Y3RUcmVlUm9vdCAxMTMgMCBSCi9MYW5nKGVuLVVTKQovTWFya0luZm88PC9NYXJrZWQgdHJ1ZT4+Cj4+CmVuZG9iagoKMTE3IDAgb2JqCjw8L0NyZWF0b3I8RkVGRjAwNTcwMDcyMDA2OTAwNzQwMDY1MDA3Mj4KL1Byb2R1Y2VyPEZFRkYwMDRDMDA2OTAwNjIwMDcyMDA2NTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMjAwMDM3MDAyRTAwMzY+Ci9DcmVhdGlvbkRhdGUoRDoyMDI0MDcwOTE3NTcwNC0wNCcwMCcpPj4KZW5kb2JqCgp4cmVmCjAgMTE4CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDA2Nzg3NiAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDI2ODkgMDAwMDAgbiAKMDAwMDA3NTYyMiAwMDAwMCBuIAowMDAwMDY4MTM4IDAwMDAwIG4gCjAwMDAwNjg0MzQgMDAwMDAgbiAKMDAwMDA2ODMwNyAwMDAwMCBuIAowMDAwMDY4NTk3IDAwMDAwIG4gCjAwMDAwNjg3NDQgMDAwMDAgbiAKMDAwMDA2ODg5MSAwMDAwMCBuIAowMDAwMDY5MDUwIDAwMDAwIG4gCjAwMDAwNzIwNTMgMDAwMDAgbiAKMDAwMDA3MTkzNSAwMDAwMCBuIAowMDAwMDcxNjY5IDAwMDAwIG4gCjAwMDAwNzE1MjMgMDAwMDAgbiAKMDAwMDA2OTUwNCAwMDAwMCBuIAowMDAwMDY5MTk4IDAwMDAwIG4gCjAwMDAwNjk0MjQgMDAwMDAgbiAKMDAwMDA2OTI3MiAwMDAwMCBuIAowMDAwMDY5ODkxIDAwMDAwIG4gCjAwMDAwNjk1ODggMDAwMDAgbiAKMDAwMDA2OTgxMSAwMDAwMCBuIAowMDAwMDY5NjYyIDAwMDAwIG4gCjAwMDAwNzAyNzggMDAwMDAgbiAKMDAwMDA2OTk3NSAwMDAwMCBuIAowMDAwMDcwMTk4IDAwMDAwIG4gCjAwMDAwNzAwNDkgMDAwMDAgbiAKMDAwMDA3MTgwOCAwMDAwMCBuIAowMDAwMDcwNjY1IDAwMDAwIG4gCjAwMDAwNzAzNjIgMDAwMDAgbiAKMDAwMDA3MDU4NSAwMDAwMCBuIAowMDAwMDcwNDM2IDAwMDAwIG4gCjAwMDAwNzEwNTIgMDAwMDAgbiAKMDAwMDA3MDc0OSAwMDAwMCBuIAowMDAwMDcwOTcyIDAwMDAwIG4gCjAwMDAwNzA4MjMgMDAwMDAgbiAKMDAwMDA3MTQzOSAwMDAwMCBuIAowMDAwMDcxMTM2IDAwMDAwIG4gCjAwMDAwNzEzNTkgMDAwMDAgbiAKMDAwMDA3MTIxMCAwMDAwMCBuIAowMDAwMDcyMjQyIDAwMDAwIG4gCjAwMDAwNzIzNzMgMDAwMDAgbiAKMDAwMDA3MjUwNyAwMDAwMCBuIAowMDAwMDcyNjIyIDAwMDAwIG4gCjAwMDAwNzM1ODIgMDAwMDAgbiAKMDAwMDA3MzA4NyAwMDAwMCBuIAowMDAwMDcyNzYwIDAwMDAwIG4gCjAwMDAwNzMwMDcgMDAwMDAgbiAKMDAwMDA3MjgzNCAwMDAwMCBuIAowMDAwMDczNDk4IDAwMDAwIG4gCjAwMDAwNzMxNzEgMDAwMDAgbiAKMDAwMDA3MzQxOCAwMDAwMCBuIAowMDAwMDczMjQ1IDAwMDAwIG4gCjAwMDAwNzM2OTkgMDAwMDAgbiAKMDAwMDA3MzgzMiAwMDAwMCBuIAowMDAwMDczOTQ3IDAwMDAwIG4gCjAwMDAwNzQ5MDQgMDAwMDAgbiAKMDAwMDA3NDQxMiAwMDAwMCBuIAowMDAwMDc0MDgyIDAwMDAwIG4gCjAwMDAwNzQzMzIgMDAwMDAgbiAKMDAwMDA3NDE1NiAwMDAwMCBuIAowMDAwMDc0ODIwIDAwMDAwIG4gCjAwMDAwNzQ0OTYgMDAwMDAgbiAKMDAwMDA3NDc0MCAwMDAwMCBuIAowMDAwMDc0NTcwIDAwMDAwIG4gCjAwMDAwNzUwMjEgMDAwMDAgbiAKMDAwMDA3NTE1MiAwMDAwMCBuIAowMDAwMDc1Mjg2IDAwMDAwIG4gCjAwMDAwNzUzOTggMDAwMDAgbiAKMDAwMDA2ODAxOSAwMDAwMCBuIAowMDAwMDAyNzEwIDAwMDAwIG4gCjAwMDAwMDI5MjEgMDAwMDAgbiAKMDAwMDA3NTUxMCAwMDAwMCBuIAowMDAwMDc2NTYxIDAwMDAwIG4gCjAwMDAwNzY0NTMgMDAwMDAgbiAKMDAwMDAwMjk0MiAwMDAwMCBuIAowMDAwMDEyMTE5IDAwMDAwIG4gCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAxMjMzNiAwMDAwMCBuIAowMDAwMDEyNzE4IDAwMDAwIG4gCjAwMDAwMTI5NTQgMDAwMDAgbiAKMDAwMDAxNDk1NiAwMDAwMCBuIAowMDAwMDE0OTc4IDAwMDAwIG4gCjAwMDAwMTUxNzAgMDAwMDAgbiAKMDAwMDAxNTQ2OSAwMDAwMCBuIAowMDAwMDE1NjMyIDAwMDAwIG4gCjAwMDAwMjM3OTggMDAwMDAgbiAKMDAwMDAyMzgyMCAwMDAwMCBuIAowMDAwMDI0MDE3IDAwMDAwIG4gCjAwMDAwMjQ0MTcgMDAwMDAgbiAKMDAwMDAyNDY3NCAwMDAwMCBuIAowMDAwMDM0OTQxIDAwMDAwIG4gCjAwMDAwMzQ5NjQgMDAwMDAgbiAKMDAwMDAzNTE2NyAwMDAwMCBuIAowMDAwMDM1NjMzIDAwMDAwIG4gCjAwMDAwMzU5NTQgMDAwMDAgbiAKMDAwMDA0ODcxMCAwMDAwMCBuIAowMDAwMDQ4NzMzIDAwMDAwIG4gCjAwMDAwNDg5MjkgMDAwMDAgbiAKMDAwMDA0OTQ5NCAwMDAwMCBuIAowMDAwMDQ5OTAzIDAwMDAwIG4gCjAwMDAwNTc2MjcgMDAwMDAgbiAKMDAwMDA1NzY1MCAwMDAwMCBuIAowMDAwMDU3ODYwIDAwMDAwIG4gCjAwMDAwNTgyNjQgMDAwMDAgbiAKMDAwMDA1ODUzMCAwMDAwMCBuIAowMDAwMDY2OTE2IDAwMDAwIG4gCjAwMDAwNjY5MzkgMDAwMDAgbiAKMDAwMDA2NzE0MSAwMDAwMCBuIAowMDAwMDY3NTAwIDAwMDAwIG4gCjAwMDAwNjc3MjEgMDAwMDAgbiAKMDAwMDA2NzgxOCAwMDAwMCBuIAowMDAwMDc1ODQxIDAwMDAwIG4gCjAwMDAwNjgyNjMgMDAwMDAgbiAKMDAwMDA3NTk1MCAwMDAwMCBuIAowMDAwMDc2ODkzIDAwMDAwIG4gCjAwMDAwNzcwNjQgMDAwMDAgbiAKdHJhaWxlcgo8PC9TaXplIDExOC9Sb290IDExNiAwIFIKL0luZm8gMTE3IDAgUgovSUQgWyA8MDFENUZBRjAyMjg4OUNBN0NCQjY2N0Q1Mjc4RTYyMzE+CjwwMUQ1RkFGMDIyODg5Q0E3Q0JCNjY3RDUyNzhFNjIzMT4gXQovRG9jQ2hlY2tzdW0gLzg4MkMyQjY1MDAyRkY1QjRBNkE3QUVGQkZDNEZEMDYxCj4+CnN0YXJ0eHJlZgo3NzI0MAolJUVPRgo=\",\n            \"file_name\": \"Resume-03-12-2025.pdf\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Mar 2025 17:55:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"380"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"33502"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 4\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.035305\",\n            \"CALL_ACTION\": \"POST-FILE\",\n            \"TIMESTAMP\": \"2025-03-13T17:55:25\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/file/add\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"1.118121\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"a7203f6f-dc31-4ae5-9d4b-46210c19790e"}],"id":"2a57d7c5-014d-4139-a104-8926cc1fc6bc","_postman_id":"2a57d7c5-014d-4139-a104-8926cc1fc6bc","description":""},{"name":"Job","item":[{"name":"Job Get","id":"c206e4bd-dee9-4f72-8b1a-f0ec897f6351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/","description":"<h1 id=\"api-request-documentation-for-job-retrieval\">API Request Documentation for Job Retrieval</h1>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint URL</strong>: <code>{{ats-connect}}/job/get/</code></p>\n</li>\n</ul>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li>No specific headers are required for this request.</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in JSON format and includes the following parameters:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\",\n    \"api_sandbox\": 1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {},\n    \"api_request_fields\": \"job_id\"\n  }\n}\n\n</code></pre>\n<ul>\n<li><p><strong>api_connect_data</strong>: Contains connection details.</p>\n<ul>\n<li><p><strong>api_connection</strong>: Holds the API connection information.</p>\n<ul>\n<li><strong>api_id</strong>: The unique identifier for the API connection.</li>\n</ul>\n</li>\n<li><p><strong>vendor</strong>: The name of the vendor, in this case, \"recruiterflow\".</p>\n</li>\n<li><p><strong>api_sandbox</strong>: Indicates whether to use the sandbox environment (1 for true).</p>\n</li>\n<li><p><strong>api_performance_dump</strong>: Enables performance logging (1 for true).</p>\n</li>\n<li><p><strong>api_verbose_dump</strong>: Enables verbose logging (1 for true).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_request_data</strong>: Contains the request specifics.</p>\n<ul>\n<li><p><strong>api_request_query</strong>: An object for any query parameters (currently empty).</p>\n</li>\n<li><p><strong>api_request_fields</strong>: Specifies the fields to be returned, here it is set to \"job_id\".</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>The expected response is also in JSON format and includes the following structure:</p>\n<ul>\n<li><p><strong>api_response</strong>: Contains the results of the API call.</p>\n<ul>\n<li><p><strong>api_data</strong>: Holds the data returned by the API.</p>\n<ul>\n<li><p><strong>jobs</strong>: An array of job objects, each containing:</p>\n<ul>\n<li><p><strong>job_id</strong>: The unique identifier for the job.</p>\n</li>\n<li><p><strong>department</strong>: The department associated with the job.</p>\n</li>\n<li><p><strong>name</strong>: The name of the job.</p>\n</li>\n<li><p><strong>date_modified</strong>: The last modified date of the job.</p>\n</li>\n<li><p><strong>description</strong>: A brief description of the job.</p>\n</li>\n<li><p><strong>dept_id</strong>: The department ID.</p>\n</li>\n<li><p><strong>url</strong>: The URL for more information about the job.</p>\n</li>\n<li><p><strong>title</strong>: The title of the job.</p>\n</li>\n<li><p><strong>id</strong>: Another identifier for the job.</p>\n</li>\n<li><p><strong>type</strong>: The type of job.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>count</strong>: The total number of jobs returned.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_log</strong>: Contains logging information about the API call.</p>\n<ul>\n<li><p><strong>CALL_ATTEMPTS</strong>: Number of call attempts made.</p>\n</li>\n<li><p><strong>CALL_STATUS</strong>: Status of the API call.</p>\n</li>\n<li><p><strong>CALL_REQUEST</strong>: The request made to the API.</p>\n</li>\n<li><p><strong>CLIENT_ID</strong>: The client ID used for the API call.</p>\n</li>\n<li><p><strong>CALL_TIME</strong>: The time taken for the API call.</p>\n</li>\n<li><p><strong>CALL_ACTION</strong>: The action performed by the API.</p>\n</li>\n<li><p><strong>TIMESTAMP</strong>: The timestamp of the API call.</p>\n</li>\n<li><p><strong>APIKEY</strong>: The API key used for authentication.</p>\n</li>\n<li><p><strong>MESSAGE</strong>: Any message returned by the API.</p>\n</li>\n<li><p><strong>VENDOR</strong>: The vendor associated with the API call.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>api_status</strong>: The status of the API response.</p>\n</li>\n<li><p><strong>api_xstatus</strong>: Additional status information.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<h4 id=\"successful-response\">Successful Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"api_response\": {\n    \"api_data\": {\n      \"jobs\": [\n        {\n          \"job_id\": 0,\n          \"department\": \"\",\n          \"name\": \"\",\n          \"date_modified\": \"\",\n          \"description\": \"\",\n          \"dept_id\": 0,\n          \"url\": \"\",\n          \"title\": \"\",\n          \"id\": 0,\n          \"type\": \"\"\n        }\n      ],\n      \"count\": \"\"\n    },\n    \"api_log\": {\n      \"CALL_ATTEMPTS\": 0,\n      \"CALL_STATUS\": 0,\n      \"CALL_REQUEST\": \"\",\n      \"CLIENT_ID\": null,\n      \"CALL_TIME\": \"\",\n      \"CALL_ACTION\": \"\",\n      \"TIMESTAMP\": \"\",\n      \"APIKEY\": \"\",\n      \"MESSAGE\": \"\",\n      \"VENDOR\": \"\"\n    },\n    \"api_status\": 0,\n    \"api_xstatus\": \"\"\n  },\n  \"atsconnect_status\": 0,\n  \"atsconnect_ticket\": {\n    \"api_version\": \"\",\n    \"request\": {\n      \"values\": \"\",\n      \"call\": \"\"\n    },\n    \"vendor\": \"\",\n    \"elapsed\": \"\",\n    \"key\": \"\",\n    \"fn\": \"\"\n  },\n  \"atsconnect_message\": \"\"\n}\n\n</code></pre>\n<p>This documentation provides a clear overview of the API request and response for retrieving job information, making it accessible for users with varying levels of technical expertise.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  {{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n}\n\n</code></pre>","urlObject":{"path":["job","get",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"35ad4f8f-a4a6-4747-8d9b-654d28d809d8","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {},\r\n        \"api_request_fields\": \"job_id\"\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Jun 2025 13:41:05 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"3625"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2852301"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"job_id\": 8,\n                    \"department\": \"Marketing\",\n                    \"name\": \"Content Marketing Manager\",\n                    \"date_modified\": \"2025-05-19\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">&nbsp;</div>\\n<header style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<h1>Full-time Content Marketing Manager</h1>\\n</header>\\n<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><br><br></div>\\n<main style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<section>\\n<h2>About Us</h2>\\n<p>We are a dynamic and innovative company seeking a talented Content Marketing Manager to join our growing team. As a leader in our industry, we are committed to delivering high-quality products/services and creating engaging content that resonates with our target audience. If you're passionate about content marketing and have a proven track record of success, we want to hear from you!</p>\\n</section>\\n<section>\\n<h2>Job Overview</h2>\\n<p>We are looking for an experienced and creative Content Marketing Manager to lead our content strategy and execution. The ideal candidate will have a strong background in content creation, SEO, and digital marketing. You will be responsible for developing and implementing content marketing strategies that align with our business goals, increase brand awareness, and drive customer engagement.</p>\\n</section>\\n<section>\\n<h2>Key Responsibilities</h2>\\n<ul>\\n<li>Develop and execute a comprehensive content marketing strategy that supports our business objectives and resonates with our target audience</li>\\n<li>Create and manage an editorial calendar for all content initiatives, including blog posts, social media updates, newsletters, whitepapers, case studies, and other marketing materials</li>\\n<li>Write, edit, and proofread high-quality, engaging content for various platforms and formats</li>\\n<li>Collaborate with internal teams (e.g., product, sales, customer success) to identify content needs and opportunities</li>\\n<li>Manage a team of in-house writers, freelancers, and external agencies to ensure consistent, high-quality content production</li>\\n<li>Implement SEO best practices to improve organic search rankings and drive website traffic</li>\\n<li>Analyze content performance metrics and use data-driven insights to optimize content strategies</li>\\n<li>Stay up-to-date with industry trends and best practices in content marketing and SEO</li>\\n<li>Develop and maintain a consistent brand voice across all content channels</li>\\n<li>Collaborate with the design team to create visually appealing and engaging content assets</li>\\n<li>Manage content distribution across various channels, including social media, email, and third-party platforms</li>\\n<li>Identify opportunities for content repurposing and optimization to maximize ROI</li>\\n<li>Develop and maintain relationships with industry influencers and thought leaders</li>\\n<li>Coordinate with the marketing team to align content initiatives with broader marketing campaigns and goals</li>\\n<li>Provide regular reports on content performance and ROI to senior management</li>\\n</ul>\\n</section>\\n<section>\\n<h2>Qualifications</h2>\\n<h3>Required:</h3>\\n<ul>\\n<li>Bachelor's degree in Marketing, Communications, Journalism, or a related field</li>\\n<li>3-5 years of experience in content marketing, with a proven track record of success</li>\\n<li>Excellent writing, editing, and proofreading skills</li>\\n<li>Strong understanding of SEO principles and best practices</li>\\n<li>Proficiency in content management systems (CMS) and marketing automation tools</li>\\n<li>Experience with analytics tools (e.g., Google Analytics, SEMrush) and ability to interpret data to inform content strategies</li>\\n<li>Strong project management and organizational skills</li>\\n<li>Ability to work independently and collaboratively in a fast-paced environment</li>\\n<li>Excellent communication and interpersonal skills</li>\\n</ul>\\n<h3>Preferred:</h3>\\n<ul>\\n<li>Master's degree in Marketing, Communications, or a related field</li>\\n</ul>\\n</section>\\n</main>\",\n                    \"dept_id\": 5,\n                    \"url\": \"https://recruiterflow.com/db_aa4e69679088e1c999830b409eb2fc9f/jobs/8\",\n                    \"title\": \"Content Marketing Manager\",\n                    \"id\": 8,\n                    \"type\": \"Full time\"\n                },\n                {\n                    \"job_id\": 5,\n                    \"department\": \"Marketing\",\n                    \"pay_rate\": \"$100,000 - $120,000 / year\",\n                    \"name\": \"Space Travel Financial Analyst\",\n                    \"date_modified\": \"2025-05-19\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">â\\u0080\\u008a</span>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ready to take your financial skills to infinity and beyond? The Avengers are searching for a stellar Space Travel Financial Analyst to join our team. Under the mentorship of Steve Rogers and Peter Parker, you'll be responsible for managing the financial aspects of our intergalactic operations.</span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Budget Management:</strong> Oversee and manage budgets for space travel missions. Ensure that we&rsquo;re saving the universe without breaking the bank.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Cost Analysis:</strong> Analyze the costs associated with space missions, from rocket fuel to alien negotiations. Your keen eye for detail will keep our expenses in check.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Planning:</strong> Develop comprehensive financial plans for upcoming missions. Anticipate and plan for the unexpected in the vast expanse of space.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Resource Allocation:</strong> Allocate resources efficiently to ensure all missions are well-funded and equipped for success.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Expense Reporting:</strong> Track and report expenses for each mission. Ensure transparency and accountability in all financial matters.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Risk Management:</strong> Identify and mitigate financial risks associated with space travel. Provide strategic advice to Steve Rogers and Peter Parker.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Expertise:</strong> Strong background in finance, accounting, or a related field. Experience with space travel budgeting is a plus.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Analytical Skills:</strong> Exceptional analytical skills to evaluate costs, benefits, and financial risks.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Attention to Detail:</strong> Meticulous attention to detail to manage complex budgets and financial plans.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Problem-Solving:</strong> Creative problem-solving skills to navigate the unique challenges of intergalactic finances.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Communication:</strong> Excellent communication skills to present financial information to the Avengers team.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Epic Mentorship:</strong> Work alongside Captain America, Steve Rogers, and your friendly neighborhood Spider-Man, Peter Parker.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intergalactic Adventures:</strong> Be part of missions that take you across the cosmos.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Advanced Technology:</strong> Access to cutting-edge financial tools and technology from Stark Industries.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Team Collaboration:</strong> Join a team dedicated to saving the world and beyond.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">If you&rsquo;re ready to apply your financial expertise to the adventures of space travel and contribute to the Avengers&rsquo; mission of protecting the universe, we want to hear from you!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Submit your application and embark on an exciting journey with the Avengers. For more information, contact Steve Rogers and Peter Parker at Avengers HQ. Your interstellar financial adventure awaits!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Steve Rogers and Peter Parker, Avengers HQ</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">&ldquo;Balancing the universe&rsquo;s budget, one mission at a time.&rdquo;</span></p>\\n</div>\",\n                    \"dept_id\": 5,\n                    \"url\": \"https://recruiterflow.com/db_aa4e69679088e1c999830b409eb2fc9f/jobs/5\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"title\": \"Space Travel Financial Analyst\",\n                    \"id\": 5,\n                    \"type\": \"Full time\"\n                }\n            ],\n            \"count\": \"2\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.375003\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-06-23T13:41:06\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"2 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"conjunction\\\":\\\"match-all\\\",\\\"current_page\\\":1,\\\"filters\\\":[{\\\"conjunction\\\":\\\"in\\\",\\\"values\\\":[1],\\\"key\\\":\\\"job_visibility\\\"}],\\\"items_per_page\\\":100,\\\"include_description\\\":true,\\\"include_count\\\":true}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/job/search\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.950148\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"2 jobs returned\"\n}"}],"_postman_id":"c206e4bd-dee9-4f72-8b1a-f0ec897f6351"},{"name":"Job Get By ID","id":"b05a731a-c706-421f-9a81-df29d7f85a8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 5\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<ul>\n<li>id - <strong>REQUIRED</strong> - job ID</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_id\": \"{{recruiterflow_api_id}}\"\n    },\n    \"vendor\": \"recruiterflow\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 5\n        }\n  }\n}\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"72d3a38a-a980-4fbc-8cc4-a32febf60d80","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 5\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Feb 2025 19:58:51 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2270"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"749"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"department\": \"Marketing\",\n                    \"pay_rate\": \"$100,000 - $120,000 / year\",\n                    \"name\": \"Space Travel Financial Analyst\",\n                    \"date_modified\": \"2024-12-28\",\n                    \"experience\": \"8 - 10 years\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">â\\u0080\\u008a</span>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Ready to take your financial skills to infinity and beyond? The Avengers are searching for a stellar Space Travel Financial Analyst to join our team. Under the mentorship of Steve Rogers and Peter Parker, you'll be responsible for managing the financial aspects of our intergalactic operations.</span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Budget Management:</strong> Oversee and manage budgets for space travel missions. Ensure that we&rsquo;re saving the universe without breaking the bank.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Cost Analysis:</strong> Analyze the costs associated with space missions, from rocket fuel to alien negotiations. Your keen eye for detail will keep our expenses in check.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Planning:</strong> Develop comprehensive financial plans for upcoming missions. Anticipate and plan for the unexpected in the vast expanse of space.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Resource Allocation:</strong> Allocate resources efficiently to ensure all missions are well-funded and equipped for success.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Expense Reporting:</strong> Track and report expenses for each mission. Ensure transparency and accountability in all financial matters.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Risk Management:</strong> Identify and mitigate financial risks associated with space travel. Provide strategic advice to Steve Rogers and Peter Parker.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Financial Expertise:</strong> Strong background in finance, accounting, or a related field. Experience with space travel budgeting is a plus.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Analytical Skills:</strong> Exceptional analytical skills to evaluate costs, benefits, and financial risks.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Attention to Detail:</strong> Meticulous attention to detail to manage complex budgets and financial plans.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Problem-Solving:</strong> Creative problem-solving skills to navigate the unique challenges of intergalactic finances.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Communication:</strong> Excellent communication skills to present financial information to the Avengers team.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></span></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Epic Mentorship:</strong> Work alongside Captain America, Steve Rogers, and your friendly neighborhood Spider-Man, Peter Parker.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intergalactic Adventures:</strong> Be part of missions that take you across the cosmos.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Advanced Technology:</strong> Access to cutting-edge financial tools and technology from Stark Industries.</span></li>\\n<li style=\\\"font-family: arial, helvetica, sans-serif;\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Team Collaboration:</strong> Join a team dedicated to saving the world and beyond.</span></li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">If you&rsquo;re ready to apply your financial expertise to the adventures of space travel and contribute to the Avengers&rsquo; mission of protecting the universe, we want to hear from you!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">Submit your application and embark on an exciting journey with the Avengers. For more information, contact Steve Rogers and Peter Parker at Avengers HQ. Your interstellar financial adventure awaits!</span></p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Steve Rogers and Peter Parker, Avengers HQ</strong></span></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><span style=\\\"font-family: arial, helvetica, sans-serif;\\\">&ldquo;Balancing the universe&rsquo;s budget, one mission at a time.&rdquo;</span></p>\\n</div>\",\n                    \"dept_id\": 5,\n                    \"url\": \"https://recruiterflow.com/db_aa4e69679088e1c999830b409eb2fc9f/jobs/5\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"United States\",\n                        \"city\": \"Los Angeles\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"California\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"title\": \"Space Travel Financial Analyst\",\n                    \"id\": 5\n                }\n            ],\n            \"count\": \"1\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.527418\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-02-25T19:58:52\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"conjunction\\\":\\\"match-all\\\",\\\"current_page\\\":1,\\\"filters\\\":[{\\\"conjunction\\\":\\\"in\\\",\\\"values\\\":[5],\\\"key\\\":\\\"job_id\\\"}],\\\"items_per_page\\\":100,\\\"include_description\\\":true,\\\"include_count\\\":true}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/job/search\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.602206\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"b05a731a-c706-421f-9a81-df29d7f85a8e"},{"name":"Job Search","id":"19c4d629-a248-43b8-b608-79ecae3f970a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"title\": \"Theoretical Physics Research Intern\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs matching search criteria.</p>\n\n<ul>\n<li><p>status - <strong>OPTIONAL</strong> - job status</p>\n</li>\n<li><p>department - <strong>OPTIONAL</strong> - job department</p>\n</li>\n<li><p>company_name - <strong>OPTIONAL</strong> - job company</p>\n</li>\n<li><p>title - <strong>OPTIONAL</strong> - job title</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"company_name\": \"Marquette Financial\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"216662c3-71c1-4137-a466-217a3b9ebc40","name":"Job Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n        \"title\": \"Theoretical Physics Research Intern\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Feb 2025 20:33:55 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"2778"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"759"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"department\": \"R&D\",\n                    \"pay_rate\": \"$200 - $300 / week\",\n                    \"name\": \"Theoretical Physics Research Intern\",\n                    \"date_modified\": \"2024-12-28\",\n                    \"description\": \"<div style=\\\"font-family: arial, helvetica, sans-serif; font-size: 16px;\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Are you ready to unlock the secrets of the universe and boldly go where no intern has gone before? Stanford University's Department of Theoretical Physics is seeking a brilliant and slightly eccentric individual to join our team as a Theoretical Physics Research Intern. Under the meticulous guidance of Dr. Sheldon Cooper, you'll dive headfirst into the mind-bending world of theoretical physics and embark on a journey of intellectual exploration that will challenge your intellect and expand your horizons.</p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Key Responsibilities:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Cosmic Conundrums:</strong> Dive deep into the mysteries of the cosmos and explore the fundamental principles that govern the universe. From black holes to quantum mechanics, you'll tackle the biggest questions in physics with Sheldon as your guide.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Equation Euphoria:</strong> Roll up your sleeves and immerse yourself in the world of equations, formulas, and mathematical marvels. With Sheldon's expertise, you'll decipher complex equations and uncover the beauty hidden within their elegant simplicity.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Revelations:</strong> Assist Dr. Cooper in conducting groundbreaking research that pushes the boundaries of theoretical physics. Your keen analytical mind and insatiable curiosity will be invaluable assets as you unravel the mysteries of the universe.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Lab Liaison:</strong> Collaborate with fellow researchers and scientists in Stanford's state-of-the-art laboratories. From late-night brainstorming sessions to heated debates over coffee, you'll be at the heart of the action, surrounded by the brightest minds in the field.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Presentation Prowess:</strong> Sharpen your communication skills and learn to articulate your ideas with clarity and precision. Under Sheldon's mentorship, you'll have the opportunity to present your research findings at conferences and seminars, making your mark on the world of physics.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Qualifications:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Quantum Quotient:</strong> A passion for theoretical physics and a solid understanding of advanced mathematical concepts. Previous coursework or research experience in physics, mathematics, or related fields is highly desirable.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Analytical Acumen:</strong> Strong analytical and problem-solving skills, with the ability to think critically and creatively about complex scientific problems.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Rigor:</strong> Excellent research skills and attention to detail, with the ability to conduct thorough literature reviews and analyze experimental data.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Collaborative Spirit:</strong> A team player with excellent interpersonal skills, able to work effectively in a collaborative research environment.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intellectual Curiosity:</strong> An insatiable curiosity about the nature of the universe and a relentless drive to unravel its mysteries. A healthy skepticism and a willingness to question conventional wisdom are encouraged.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Benefits:</strong></p>\\n<ul style=\\\"color: rgb(13, 13, 13);\\\">\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Intellectual Stimulation:</strong> Engage in intellectually stimulating research projects that will challenge and inspire you.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Mentorship:</strong> Receive guidance and mentorship from Dr. Sheldon Cooper, a renowned theoretical physicist with a passion for pushing the boundaries of scientific knowledge.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Research Opportunities:</strong> Access to cutting-edge research facilities and resources at Stanford University, including state-of-the-art laboratories and computational resources.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Networking:</strong> Connect with leading scientists and researchers in the field of theoretical physics, expanding your professional network and forging valuable connections for your future career.</li>\\n<li><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Personal Growth:</strong> Develop valuable skills and expertise that will serve you well in your academic and professional pursuits, laying the foundation for a successful career in theoretical physics.</li>\\n</ul>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Join Dr. Sheldon Cooper and the Stanford University research team on a quest to unravel the mysteries of the cosmos. If you're ready to boldly go where no intern has gone before, apply now!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Apply Now:</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">Submit your application and embark on an extraordinary journey of discovery with Dr. Sheldon Cooper at Stanford University. For more information, contact Sheldon Cooper. Warp speed ahead!</p>\\n<hr style=\\\"color: rgb(13, 13, 13);\\\">\\n<p style=\\\"color: rgb(13, 13, 13);\\\"><strong style=\\\"color: var(--tw-prose-bold); font-weight: 600;\\\">Sheldon Cooper, Stanford University</strong></p>\\n<p style=\\\"color: rgb(13, 13, 13);\\\">&ldquo;Where the pursuit of knowledge knows no bounds, and curiosity is the engine of discovery.&rdquo;</p>\\nâ\\u0080\\u008a</div>\",\n                    \"dept_id\": 2,\n                    \"url\": \"https://recruiterflow.com/db_aa4e69679088e1c999830b409eb2fc9f/jobs/2\",\n                    \"rep_user\": {\n                        \"email\": \"admin@recruiterflow.com\",\n                        \"id\": 3264,\n                        \"first_name\": \"System\",\n                        \"last_name\": \"Admin\"\n                    },\n                    \"address\": {\n                        \"country\": \"Singapore\",\n                        \"city\": \"\",\n                        \"zip\": \"\",\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"state\": \"\"\n                    },\n                    \"type\": \"Contingent\",\n                    \"title\": \"Theoretical Physics Research Intern\",\n                    \"id\": 2\n                }\n            ],\n            \"count\": \"1\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.540664\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-02-25T20:33:56\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"1 job returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"conjunction\\\":\\\"match-all\\\",\\\"current_page\\\":1,\\\"filters\\\":[{\\\"conjunction\\\":\\\"in\\\",\\\"values\\\":[\\\"Theoretical Physics Research Intern\\\"],\\\"key\\\":\\\"name\\\"}],\\\"items_per_page\\\":100,\\\"include_description\\\":true,\\\"include_count\\\":true}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/job/search\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.616981\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"1 job returned\"\n}"}],"_postman_id":"19c4d629-a248-43b8-b608-79ecae3f970a"}],"id":"a17e6886-c368-4ebc-a3f4-f1e494663a2e","_postman_id":"a17e6886-c368-4ebc-a3f4-f1e494663a2e","description":""},{"name":"Note","item":[{"name":"Note Set","id":"c40069a4-22e5-46dd-8ef3-35258c79de78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4,\r\n            \"comments\": \"This is a note\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For adding a candidate message</p>\n\n<ul>\n<li><p>ID - <strong>REQUIRED</strong> - candidate ID</p>\n</li>\n<li><p>comments - <strong>REQUIRED</strong> - note being added</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n        \"id\": 4,\n        \"comments\": \"This is a note\"\n    }\n  }\n\n</code></pre>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"71fc9c88-92a9-4457-b685-3a0e1084f46c","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {\r\n            \"id\": 4,\r\n            \"comments\": \"This is a note\"\r\n        }\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Mar 2025 19:50:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"424"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3642690"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"id\": 4\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.608066\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2025-03-05T19:50:26\",\n            \"APIKEY\": \"Og==\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"recruiterflow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"Candidate note set\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"value\\\":\\\"This is a note\\\",\\\"id\\\":4,\\\"created_by\\\":101503}\",\n            \"call\": \"https://api.recruiterflow.com/api/external/candidate/notes/add\"\n        },\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.67993\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Candidate note set\"\n}"}],"_postman_id":"c40069a4-22e5-46dd-8ef3-35258c79de78"}],"id":"d9d96e76-c9ec-48ac-975c-a92830984574","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"d9d96e76-c9ec-48ac-975c-a92830984574","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"cbf8b098-c6c8-4097-a782-edf734743253","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e2e28518-3bab-4d90-82b1-860981168a04","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n        \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 18:39:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"365"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"3159"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2025-02-28T18:39:45\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2025-02-28T18:39:45\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"Og==\",\n            \"PAY_LOAD\": null,\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"recruiterflow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.048647\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"cbf8b098-c6c8-4097-a782-edf734743253"}],"id":"88a34a66-5294-4396-9a8e-e9c1cfd36626","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"88a34a66-5294-4396-9a8e-e9c1cfd36626","description":""},{"name":"User","item":[{"name":"User Get","id":"56f327c5-d473-48b0-920f-03669cfda217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"role\": \"admin\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get","description":"<p>For retrieving users.</p>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n    \"api_request_query\": {\n    }\n  }\n\n</code></pre>","urlObject":{"path":["user","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"606cf8c9-7a3e-41fa-b8b0-88d1d0e557a4","name":"User Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{recruiterflow_api_id}}\"\r\n    },\r\n    \"vendor\": \"recruiterflow\", \r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\r\n\t\t\"role\": \"admin\"\r\n    }\r\n  }\r\n}"},"url":"{{ats-connect}}/user/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Jun 2025 15:30:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"501"},{"key":"X-SASnode","value":"bugfix-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1868971"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/user/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"count\": \"3\",\n            \"users\": [\n                {\n                    \"roles\": [\n                        {\n                            \"name\": \"Admin\",\n                            \"id\": 1\n                        }\n                    ],\n                    \"middle_name\": \"\",\n                    \"name\": \"System Admin\",\n                    \"phone_number\": \"\",\n                    \"last_name\": \"Admin\",\n                    \"email\": \"admin@recruiterflow.com\",\n                    \"addons\": [\n                        {\n                            \"value\": false,\n                            \"key\": \"linkedin\"\n                        }\n                    ],\n                    \"id\": 3264,\n                    \"platform\": \"google\",\n                    \"img_link\": \"https://s3-eu-central-1.amazonaws.com/com-recruiterflow-static-content-eu/user-profile-pictures/3264/recruiterflow_logo.png\",\n                    \"first_name\": \"System\"\n                },\n                {\n                    \"roles\": [\n                        {\n                            \"name\": \"Admin\",\n                            \"id\": 1\n                        }\n                    ],\n                    \"middle_name\": \"\",\n                    \"name\": \"Sagrika\",\n                    \"phone_number\": \"\",\n                    \"last_name\": \"\",\n                    \"email\": \"sagrika@recruiterflow.com\",\n                    \"addons\": [\n                        {\n                            \"value\": false,\n                            \"key\": \"linkedin\"\n                        }\n                    ],\n                    \"id\": 101503,\n                    \"platform\": \"google\",\n                    \"img_link\": \"https://s3-eu-central-1.amazonaws.com/com-recruiterflow-static-content-eu/user-profile-pictures/101503/profile-picture.png\",\n                    \"first_name\": \"Sagrika\"\n                },\n                {\n                    \"roles\": [\n                        {\n                            \"name\": \"Admin\",\n                            \"id\": 1\n                        }\n                    ],\n                    \"middle_name\": \"\",\n                    \"name\": \"Susan Wurst\",\n                    \"phone_number\": \"\",\n                    \"last_name\": \"Wurst\",\n                    \"email\": \"swurst@haleymarketing.com\",\n                    \"addons\": [\n                        {\n                            \"value\": false,\n                            \"key\": \"linkedin\"\n                        }\n                    ],\n                    \"id\": 196592,\n                    \"platform\": \"None\",\n                    \"img_link\": null,\n                    \"first_name\": \"Susan\"\n                }\n            ]\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"3 users returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"recruiterflow\",\n        \"elapsed\": \"0.032385\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_user\"\n    },\n    \"atsconnect_message\": \"3 users returned\"\n}"}],"_postman_id":"56f327c5-d473-48b0-920f-03669cfda217"}],"id":"87c90c51-0400-465b-ad0f-69e7a345ff93","_postman_id":"87c90c51-0400-465b-ad0f-69e7a345ff93","description":""}],"id":"e426b834-f8b8-419c-ad61-474eeb48d0a4","description":"<p>RecruiterFlow</p>\n<p>Overview</p>\n<p>This integration supports authenticaiton, candidate, application, file upload, job, notes, and user.</p>\n","event":[{"listen":"prerequest","script":{"id":"7b9c071d-aaea-4ffe-989c-09555cd74c32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43e9e9bd-22af-4382-a723-77f164175720","type":"text/javascript","exec":[""]}}],"_postman_id":"e426b834-f8b8-419c-ad61-474eeb48d0a4"},{"name":"Wurknow","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"f2b996c5-5412-4b2e-8615-1b0a10584a20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow<br />for subsequent successful API calls. <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_sandbox - sandbox for testing - <strong>OPTIONAL</strong> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <strong>OPTIONAL</strong> - default: false</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"api_connection\": {\n          \"api_un\": \"{{_api_user_name}}\",\n          \"api_pw\": \"{{_api_user_pass}}\",\n          \"api_url\": \"{{_api_url}}\",\n          \"_api_id\": \"{{_api_id}}\"\n    }\n\n</code></pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5d13fc24-3fab-40c9-a0b1-297ee51e56e6","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {   \r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:33:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"241"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638599"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"WNBaseApiUrl\": \"https://staging.wurknow.com/WurkNowAPI/api/Sourcing/\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.020156\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"f2b996c5-5412-4b2e-8615-1b0a10584a20"}],"id":"7aa249ab-2ed2-4f90-9f88-230edba659d0","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"1c429699-76ab-4e52-bb42-087181b81f3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f354b869-5a34-4124-8df2-906ca1e46008","type":"text/javascript","exec":[""]}}],"_postman_id":"7aa249ab-2ed2-4f90-9f88-230edba659d0"},{"name":"Application","item":[{"name":"Application Get","id":"d4632477-1620-42c4-b4f6-0da7d8f17362","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5f11d7e3-226a-4295-a115-6f78fd2df60c","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:33:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"428"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687229"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:33:44\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:33:44\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.005709\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"d4632477-1620-42c4-b4f6-0da7d8f17362"},{"name":"Application Get By ID","id":"e4425415-f2a2-43f1-8c4c-304ff316956c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"051d6820-1429-4105-a046-45c8b538c0b7","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:35:03 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"436"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687232"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:35:03\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:35:03\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"id\": 9999\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.007885\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e4425415-f2a2-43f1-8c4c-304ff316956c"},{"name":"Application Set","id":"5110d4d1-e5ea-4445-a067-f5458ca31f4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": {\"id\":\"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"},\r\n\t\t\"candidate\":{\r\n\t\t\t\"first_name\": \"GTEST\",\r\n\t\t\t\"last_name\": \"GZill\",\r\n\t\t\t\"city\": \"Nashville\",\r\n\t\t\t\"state\": \"Tennesse\",\r\n\t\t\t\"country\": \"United States\",\r\n\t\t\t\"email\": \"g@zill.us\",\r\n\t\t\t\"cell_phone\": 9559099999\r\n\t\t}\t\r\n  \t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>job<ul>\n<li>id - <strong>REQUIRED</strong> - for which the applicant wants to apply, id fetched form the list of job postings</li>\n</ul>\n</li>\n<li>candidate<ul>\n<li>first_name - <strong>REQUIRED</strong> - applicant first name</li>\n<li>last_name - <strong>OPTIONAL</strong> - applicant last name</li>\n<li>city - <strong>OPTIONAL</strong> - applicant city</li>\n<li>state - <strong>OPTIONAL</strong> - applicant state</li>\n<li>zip - <strong>OPTIONAL</strong> - applicant zip</li>\n<li>country - <strong>OPTIONAL</strong> - applicant country</li>\n<li>email - <strong>REQUIRED</strong> - email id of the applicant</li>\n<li>cell_phone - <strong>OPTIONAL</strong></li>\n<li>phone - <strong>OPTIONAL</strong></li>\n</ul>\n</li>\n<li>file_name - <strong>OPTIONAL</strong></li>\n<li>file_data - <strong>OPTIONAL</strong> - file upload .pdf, .doc are acceptable</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n      \"api_request_query\": {\n        \"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c9LY+FLhon0i9YXLbuP5zEk=\"},\n        \"candidate\":{\n            \"first_name\": \"Testing\",\n            \"email\": \"tst@testing.biz\",\n            \"cell_phone\": 9009999999\n        },\n        \"file_name\": \"Resume.doc\",\n        \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\"    \n          }\n  }\n  \n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a788f624-8a20-4916-b66e-946085ca1d4c","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {\r\n\t\t\"job\": {\"id\":\"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"},\r\n\t\t\"candidate\":{\r\n\t\t\t\"first_name\": \"GTEST\",\r\n\t\t\t\"last_name\": \"GZill\",\r\n\t\t\t\"city\": \"Nashville\",\r\n\t\t\t\"state\": \"Tennesse\",\r\n\t\t\t\"country\": \"United States\",\r\n\t\t\t\"email\": \"g@zill.us\",\r\n\t\t\t\"cell_phone\": 9559099999\r\n\t\t}\t\r\n  \t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:36:01 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"561"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687235"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:36:01\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:36:01\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"candidate\": {\n                        \"country\": \"United States\",\n                        \"email\": \"g@zill.us\",\n                        \"city\": \"Nashville\",\n                        \"first_name\": \"GTEST\",\n                        \"last_name\": \"GZill\",\n                        \"state\": \"Tennesse\",\n                        \"cell_phone\": 9559099999\n                    },\n                    \"job\": {\n                        \"id\": \"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"\n                    }\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.027279\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"5110d4d1-e5ea-4445-a067-f5458ca31f4a"}],"id":"af67be8f-35a8-4362-b82f-caf8299f2064","_postman_id":"af67be8f-35a8-4362-b82f-caf8299f2064","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"5f09a35f-9bf6-4f73-979e-9e0e1e4cdaf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c278c1d1-c333-4e08-9ce3-19c248c69084","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:38:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"417"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687247"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:38:52\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:38:52\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004435\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"5f09a35f-9bf6-4f73-979e-9e0e1e4cdaf8"},{"name":"Candidate Set","id":"abf22602-ca12-4214-9791-62faccef9ada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {    \r\n        \"first_name\":\"Joan\",\r\n        \"last_name\":\"Dees\",\r\n        \"email\": \"aga.hnnn@mailinator.com\",\r\n        \"referral_source\": \"Referral\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"159 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"job\":{\"id\": \"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"},\r\n        \"title\": \"Web Developer\",\r\n        \"education\": [\r\n                        {\r\n                            \"degree_type\": \"Bachelor\",\r\n                            \"graduation_date\": \"01/21/1991\",\r\n                            \"major\": \"Accounting\",\r\n                            \"school\":  \"Pine College\",\r\n                            \"state\": \"KS\",\r\n                            \"city\": \"City\",\r\n                            \"country\": \"US\",\r\n                            \"start_date\": \"12/11/1999\",\r\n                            \"certification\": \"Certify\"\r\n                        }\r\n                     ],\r\n        \"work_history\": [\r\n                        {\r\n                            \"company_name\": \"Company\",\r\n                            \"start_date\": \"12/20/2000\",\r\n                            \"end_date\": \"12/21/2000\",\r\n                            \"title\": \"Title\",\r\n                            \"comments\": \"job duties\",\r\n                            \"state\": \"NY\",\r\n                            \"city\": \"Boston\",\r\n                            \"country\": \"US\"                    \r\n                        }\r\n                     ]\r\n    }\r\n  }\r\n\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For setting candidate data.</p>\n<ul>\n<li><p>first_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>last_name - <strong>REQUIRED</strong></p>\n</li>\n<li><p>email - <strong>REQUIRED</strong></p>\n</li>\n<li><p>phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>cell_phone - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>address1 - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>city - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>state - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>zip - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>country - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>referral_source - <strong>OPTIONAL</strong></p>\n</li>\n<li><p>job -&gt; id - <strong>REQUIRED</strong></p>\n</li>\n<li><p>education - OPTIONAL (array of hashes, see example body)</p>\n</li>\n<li><p>work history - <strong>OPTIONAL</strong> (array of hashes, see example body)</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"api_connect_data\": {\n    \"api_connection\": {\n      \"api_un\": \"{{wurknow_api_un}}\",\n      \"api_pw\": \"{{wurknow_api_pw}}\",\n      \"api_url\": \"{{wurknow_api_url}}\",\n      \"api_id\": \"{{wurknow_api_id}}\"\n    },\n    \"vendor\": \"wurknow\",\n    \"api_sandbox\":1,\n    \"api_performance_dump\": 1,\n    \"api_verbose_dump\": 1\n  },\n  \"api_request_data\": {\n    \"api_request_query\": {    \n        \"first_name\":\"Joan\",\n        \"last_name\":\"Dees\",\n        \"email\": \"aga.hnnn@mailinator.com\",\n        \"referral_source\": \"Referral\",\n        \"state\": \"Maine\",\n        \"address1\": \"159 Peony Rd\",\n        \"zip\": \"90061\",\n        \"city\": \"Boston\",\n        \"job\":{\"id\": \"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"},\n        \"title\": \"Web Developer\",\n        \"education\": [\n                        {\n                            \"degree_type\": \"Bachelor\",\n                            \"graduation_date\": \"01/21/1991\",\n                            \"major\": \"Accounting\",\n                            \"school\":  \"Pine College\",\n                            \"state\": \"KS\",\n                            \"city\": \"City\",\n                            \"country\": \"US\",\n                            \"start_date\": \"12/11/1999\",\n                            \"certification\": \"Certify\"                                 \n                        }\n                     ],\n        \"work_history\": [\n                        {\n                            \"company_name\": \"Company\",\n                            \"start_date\": \"12/20/2000\",\n                            \"end_date\": \"12/21/2000\",\n                            \"title\": \"Title\",\n                            \"comments\": \"job duties\",\n                            \"state\": \"NY\",\n                            \"city\": \"Boston\",\n                            \"country\": \"US\"                    \n                        }\n                     ]\n    }\n  }\n}\n\n</code></pre>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d8f0574b-940d-4ce6-8727-9a893838fd43","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {    \r\n        \"first_name\":\"Joan\",\r\n        \"last_name\":\"Dees\",\r\n        \"email\": \"aga@mailinator.com\",\r\n        \"referral_source\": \"Referral\",\r\n        \"state\": \"Maine\",\r\n        \"address1\": \"159 Peony Rd\",\r\n        \"zip\": \"90061\",\r\n        \"city\": \"Boston\",\r\n        \"job\":{\"id\": \"d59d40b9-6e00-440c-ba11-2ccacfcd6764\"},\r\n        \"title\": \"Web Developer\"\r\n    }\r\n  }\r\n\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:54:29 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"755"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687270"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"1.125084\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2024-10-14T14:54:30\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"wurknow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"Educations\\\":[],\\\"Preferences\\\":{},\\\"WorkHistory\\\":[],\\\"Address\\\":{\\\"MailAddress2\\\":\\\"\\\",\\\"MailStateName\\\":\\\"Maine\\\",\\\"MailAddress1\\\":\\\"159 Peony Rd\\\",\\\"MailStateId\\\":0,\\\"MailCity\\\":\\\"Boston\\\",\\\"MailStateCode\\\":\\\"ME\\\",\\\"MailZip\\\":\\\"90061\\\"},\\\"PreferredJobs\\\":[{\\\"JobTitleName\\\":\\\"Web Developer\\\"}],\\\"ContactInfo\\\":{\\\"FirstName\\\":\\\"Joan\\\",\\\"LastName\\\":\\\"Dees\\\",\\\"Email\\\":\\\"aga@mailinator.com\\\"},\\\"EEOInfo\\\":{\\\"EEOCodeTypeId\\\":1,\\\"DisabilityId\\\":3,\\\"MilitaryVeternTypeId\\\":9,\\\"Gender\\\":3},\\\"NotPreferredJobs\\\":[],\\\"References\\\":[],\\\"AcknowledgementInfo\\\":{},\\\"BasicInfo\\\":{},\\\"Source\\\":\\\"Referral\\\",\\\"JobId\\\":\\\"d59d40b9-6e00-440c-ba11-2ccacfcd6764\\\",\\\"Skills\\\":[]}\",\n            \"call\": \"https://staging.wurknow.com/WurkNowAPI/api/Sourcing/PostJobApplicant\"\n        },\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"1.1769\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"abf22602-ca12-4214-9791-62faccef9ada"},{"name":"Candidate Update","id":"c170a800-5348-49f7-934c-97e072ab7304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n        \"id\": 12314\r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3ffb329c-6969-42e4-8a52-19fbb3d540cc","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {\r\n        \"id\": 12314\r\n      }\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 15:00:28 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"440"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687273"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T15:00:29\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T15:00:29\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"id\": 12314,\n                    \"job\": {}\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.028509\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c170a800-5348-49f7-934c-97e072ab7304"},{"name":"Candidate Get By ID","id":"08affa26-730b-4a0e-9db1-7ceb8c8fd20c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"da8c00cc-bcd5-4701-a588-42171185c2ac","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:39:21 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"416"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687250"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:39:21\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:39:21\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004639\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"08affa26-730b-4a0e-9db1-7ceb8c8fd20c"},{"name":"Candidate Set Education","id":"48b29da0-ef6c-49b5-a2c7-01cffc26977f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b31d7c1d-6c2a-47b4-a80b-2ef6ffd1caa3","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:38:04 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"423"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687244"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:38:04\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:38:04\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004284\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"48b29da0-ef6c-49b5-a2c7-01cffc26977f"},{"name":"Candidate Get Education","id":"556ca126-ac9e-4ec2-bdc2-cae228742d62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"703c3062-ff7a-49b6-a27e-7c41876d8487","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:38:17 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"426"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638699"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:38:17\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:38:17\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.027004\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"556ca126-ac9e-4ec2-bdc2-cae228742d62"},{"name":"Candidate Set Work History","id":"c8a8d135-4d70-4edc-b98e-715282592774","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"603554d9-2c06-44af-9dbc-c884895d4eb6","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:38:40 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"428"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638702"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:38:40\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:38:40\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004685\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c8a8d135-4d70-4edc-b98e-715282592774"},{"name":"Candidate Get Work History","id":"74964076-464f-4496-a362-9afa43178a71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"f5f4af81-643d-4e4a-8aca-b1db11d40c55","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:39:38 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"428"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638705"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:39:38\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:39:38\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.00446\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"74964076-464f-4496-a362-9afa43178a71"}],"id":"9e7103e6-1f81-4cb5-b01b-66fca0fd4f2a","_postman_id":"9e7103e6-1f81-4cb5-b01b-66fca0fd4f2a","description":""},{"name":"Custom","item":[{"name":"Custom","id":"70f61fbb-834f-406f-bac6-a04c6a801389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to Ceipal via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"00a1da52-6d30-498e-ba86-36d0217b9523","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:40:13 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"415"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638708"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:40:13\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:40:13\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {},\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.005742\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"70f61fbb-834f-406f-bac6-a04c6a801389"}],"id":"bcf5060a-4ab5-4b86-862d-1333d156e1ac","_postman_id":"bcf5060a-4ab5-4b86-862d-1333d156e1ac","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"a8c59e45-aa7c-4b7f-8566-11be10ed63dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"c8523f76-1193-4b51-8312-9998f650cdf7","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:40:48 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"405"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687253"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:40:48\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:40:48\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": null,\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.005205\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a8c59e45-aa7c-4b7f-8566-11be10ed63dd"}],"id":"fdb9e6e2-562b-4d1b-a98a-7d29855806ad","_postman_id":"fdb9e6e2-562b-4d1b-a98a-7d29855806ad","description":""},{"name":"Job","item":[{"name":"Job Get","id":"7ffb9dbf-0eb8-4e5c-b211-cccca4211180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {}\n  }\n</pre>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"84b1423b-8eea-4b41-a0ad-b2a5caa6c11d","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n\t\"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:41:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"34707"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638711"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"jobs\": [\n                {\n                    \"pay_rate\": \"$18.50 / hour\",\n                    \"description\": \"<p>Do you enjoy working in the light industrial trade and working with your hands? Do you enjoy a team based work environment? Essential Personnel is seeking enthusiastic candidates to fill a Packager position at a company southwest of Kearney. Candidates must possess a great work ethic and positive attitude. An ideal candidate should have good communication skills, strong attendance record and exceptional hand-eye coordination.</p><p><strong>Requirements for Packager:</strong></p><ul><li><p>Works well with others</p></li><li><p>Exceptional work ethic</p></li><li><p>Works well at a fast pace</p></li><li><p>Organizational Skills</p></li></ul><p><strong>Responsibilities for Packager:</strong></p><ul><li><p>Follows direction</p></li><li><p>Maintains a clean workspace</p></li><li><p>Quality Assurance</p></li><li><p>Package product and place labels</p></li></ul><p><strong>Benefits for Packager</strong></p><ul><li><p>Paid training</p></li><li><p>Medical Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Vision Insurance</p></li><li><p>401K Options</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-07-31\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=d59d40b9-6e00-440c-ba11-2ccacfcd6764\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Holdrege\",\n                        \"zip\": \"68949\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Packager\",\n                    \"id\": \"d59d40b9-6e00-440c-ba11-2ccacfcd6764\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$15.00 / hour\",\n                    \"description\": \"<p>Do you enjoy working directly with people and are looking for a full-time position? Essential Personnel is seeking an enthusiastic candidate to fill a Drive-Thru Warehouse position at a company in Kearney. Preferred candidates should have phenomenal customer service and communication skills, be detail oriented and enjoy working with the public. Ideals candidates should have a superior attendance record, be able to work as a team and a strong work ethic.</p><p><strong>Requirements for Drive-Thru Warehouse:</strong></p><ul><li><p>Able to work in a team and independently</p></li><li><p>Superior attendance record</p></li><li><p>Strong work ethic</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Drive-Thru Warehouse:</strong></p><ul><li><p>Load/Unload materials</p></li><li><p>Customer service</p></li><li><p>Operate forklift and saws</p></li><li><p>Verify orders for customers</p></li></ul><p><strong>Benefits Offered for Drive-Thru Warehouse:</strong></p><ul><li><p>Flexible Scheduling</p></li><li><p>401k Retirement</p></li><li><p>Employee Discount</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a> or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-08-14\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=a8a4235a-6e5c-41d4-9285-39f2d1261539\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68845\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Drive-Thru Warehouse\",\n                    \"id\": \"a8a4235a-6e5c-41d4-9285-39f2d1261539\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$16.00 / hour\",\n                    \"description\": \"<p>Do you have an attention for detail and enjoy restoration? Essential Personnel is seeking an enthusiastic candidate to fill a Restoration Technician position at a company in Kearney. Candidates are preferred to have the ability to work at a fast pace, meet project deadlines, follow directions, and work well in a team. An ideal candidate should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Restoration Technician:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Restoration Technician:</strong></p><ul><li><p>Clean designated areas</p></li><li><p>Ensure quality of cleaning</p></li><li><p>Follow safety regulations</p></li><li><p>Manage time efficiently</p></li></ul><p><strong>Benefits for Restoration Technician</strong></p><ul><li><p>7 paid Holidays after roll over</p></li><li><p>Flexible Scheduling</p></li><li><p>Life Insurance after 90 days</p></li><li><p>Up to 40 Hours of paid vacation after 1 year</p></li></ul><p><strong>While Working for Essential Personnel</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs # Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-08-28\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=a5f207f5-82fc-441e-a3db-296360802c12\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68847\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Restoration Technician\",\n                    \"id\": \"a5f207f5-82fc-441e-a3db-296360802c12\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ / hour\",\n                    \"description\": \"<p>Do you have welding experience and enjoy the fabrication process? We are looking for candidates like you! Essential Personnel is seeking Welders for a manufacturing company in Kearney. Candidates are preferred to have previous weld related experience, be familiar with weld processes, and have strong attention to detail. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Welder:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Familiar with welding</p></li><li><p>Able to read blueprints</p></li></ul><p><strong>Responsibilities for Welder:</strong></p><ul><li><p>Measure, cut, and assemble products</p></li><li><p>Perform quality welds</p></li><li><p>Utilize hand tools</p></li><li><p>Follow safety guidelines</p></li></ul><p><strong>Benefits for Welder:</strong></p><ul><li><p>Medical, Dental, Vision Insurance</p></li><li><p>Paid vacation, paid holidays and PTO</p></li><li><p>401(k) with company match</p></li><li><p>Disability Insurance</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Vision Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #LightIndustrialJobs #ProfessionalJobs</p><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-08-28\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e5a25910-5c3b-4603-8cd7-46f11bf2104b\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68847\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Welder\",\n                    \"id\": \"e5a25910-5c3b-4603-8cd7-46f11bf2104b\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$45,000 to $60,000 / hour\",\n                    \"description\": \"<p>Essential Personnel is adding to our Columbus team and we're looking for self starters who enjoy working with the public, solving problems, and making connections in our community. Candidates must be driven, have the ability to work at a face pace and love working with people. Start your career in the workforce solutions industry by sending us your resume!</p><p>We offer an excellent compensation package that includes base pay, commission and potential for bonuses!</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Requirements for Account Manager:</span></strong></p><ul><li><p>Be self-motivated</p></li><li><p>Superior attendance record</p></li><li><p>Computer literate</p></li><li><p>Be well-spoken</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Responsibilities for Account Manager:</span></strong></p><ul><li><p>Match job seekers to client job opportunities</p></li><li><p>Manage base of candidates and applicants, including immediate follow up</p></li><li><p>Meet and exceed set goals</p></li><li><p>Conduct in-person interviews</p></li><li><p>Provide solutions for client and applicant struggles</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Benefits Offered for Manager:</span></strong></p><ul><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>STD</p></li><li><p>LTD</p></li><li><p>Vision</p></li><li><p>Life Insurance</p></li><li><p>Matching 401k</p></li><li><p>PTO</p></li></ul><p>#NowHiring #NebraskaJobs #Staffing</p><p>Interested candidates, call immediately at (402) 562-7823 or email your resume to jslama@essentialpersonnel.com.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills, and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-03\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e63e59eb-dff6-4cd1-925b-4fe658526006\",\n                    \"rep_user\": {\n                        \"email\": \"jslama@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Jessica\",\n                        \"last_name\": \"Slama\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Account Manager\",\n                    \"id\": \"e63e59eb-dff6-4cd1-925b-4fe658526006\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Professional\"\n                },\n                {\n                    \"pay_rate\": \"$17.50 / hour\",\n                    \"description\": \"<p>Are you looking for a hands on position with a great company? Essential Personnel is seeking a reliable candidate to fill an Assembler position at a company in Holdrege. This is an entry level position and they are willing to train. An ideal candidate should enjoy hands on work, be able to work independently, and have a great attendance record. This position offers production bonus opportunities!</p><p><strong>Requirements for Assembler:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Assembler:</strong></p><ul><li><p>Assemble parts</p></li><li><p>Meet production goals</p></li><li><p>Product checking</p></li><li><p>Follow safety rules</p></li></ul><p><strong>Benefits for Assembler:</strong></p><ul><li><p>401 (k)</p></li><li><p>Vacation</p></li><li><p>Paid Holiday</p></li><li><p>Medical, Dental, Vision</p></li><li><p>Wellness Rewards</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly Pay- direct deposit</p></li><li><p>Holiday Bonus</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-04\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=a266f895-47b7-4589-be01-5838a361096a\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Holdrege\",\n                        \"zip\": \"68949\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Assembler\",\n                    \"id\": \"a266f895-47b7-4589-be01-5838a361096a\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ / hour\",\n                    \"description\": \"<p>Are you passionate about construction and remodeling projects? If so, we have an exciting opportunity for you! Our client is seeking a Construction Worker to join their team in the cabinetry and remodeling sector. This position offers the chance to work with hand tools, follow verbal instructions, and receive on-the-job training.<br><br><strong>Requirements for Construction Worker: </strong><br>Experience in remodel construction <br>Proficient in cabinetry work <br>Ability to use hand tools <br>Willingness to follow verbal instructions <br>Open to on-the-job training <br><br><strong>Responsibilities for Construction Worker: </strong><br>Assist in remodeling projects <br>Perform cabinetry work <br>Use hand tools effectively <br>Follow verbal instructions from supervisors <br>Learn and adapt to new construction techniques <br><br>Benefits Offered for Construction Worker: Competitive hourly wage <br>Opportunities for advancement <br>On-the-job training <br>Health and wellness benefits <br>Retirement savings plan</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=96c147f0-d8cf-4bc2-a363-5d6b06657260\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Construction\",\n                    \"id\": \"96c147f0-d8cf-4bc2-a363-5d6b06657260\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Are you committed to ensuring that products adhere to the utmost quality standards? If that's your passion, we have the perfect opportunity for you! Our company is on the lookout for a devoted Quality Assurance specialist to help us uphold and enhance our quality control procedures.<br><br>Requirements for Quality Assurance: <br>Bachelor's degree in a related field preferred <br>Proven experience in quality assurance <br>Strong attention to detail <br>Excellent communication skills <br>Ability to work collaboratively with cross-functional teams <br><br>Responsibilities for Quality Assurance: <br>Develop and implement quality control processes <br>Conduct inspections and tests on products <br>Identify and resolve quality issues <br>Document and report findings <br>Collaborate with production teams to improve processes <br>Ensure compliance with industry standards and regulations</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=3520a5ee-d8b3-45c4-a838-1c028026c597\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Quality Assurance\",\n                    \"id\": \"3520a5ee-d8b3-45c4-a838-1c028026c597\",\n                    \"type\": \"Part Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18.50 / hour\",\n                    \"description\": \"Are you looking for a hands-on job in the agricultural industry? Essential Personnel is currently seeking a Grain Laborer to join a reputable company in the area. The ideal candidate will have a strong work ethic, be detail-oriented, and have a commitment to safety.<br><br> Requirements for Grain Laborer: <br>â\\u0080¢ Ability to lift heavy objects <br>â\\u0080¢ Previous experience in a warehouse setting <br>â\\u0080¢ Forklift certification is a plus <br>â\\u0080¢ Strong attention to detail <br>â\\u0080¢ Ability to work in a fast-paced environment <br><br> Responsibilities for Grain Laborer: <br>â\\u0080¢ Assist with unloading trucks carrying grain <br>â\\u0080¢ Maintain the warehouse in an orderly and clean manner <br>â\\u0080¢ Operate equipment such as forklifts and conveyors <br>â\\u0080¢ Perform general labor tasks as assigned <br>â\\u0080¢ Follow all safety procedures and guidelines <br><br>Benefits Offered for Grain Laborer: <br>â\\u0080¢ Competitive pay <br>â\\u0080¢ Opportunities for advancement <br>â\\u0080¢ Health insurance <br>â\\u0080¢ Paid time off <br>â\\u0080¢ Retirement savings plan <p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e656352e-3049-4516-a9a8-eef221a29185\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fullerton\",\n                        \"zip\": \"68638\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Grain Labor\",\n                    \"id\": \"e656352e-3049-4516-a9a8-eef221a29185\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20.00+ / hour\",\n                    \"description\": \"<p>If you have a keen eye for detail and take pleasure in hands-on work, we invite you to apply for the Assembler position on our team. In this role, you will assemble components with precision and efficiency, contributing to the creation of superior products. Collaborating with fellow team members, you will strive to achieve production targets while keeping your workspace tidy and well-organized.<br><br>Requirements:<br>- Previous experience in assembly or manufacturing preferred<br>- Ability to follow assembly instructions and blueprints<br>- Strong attention to detail<br>- Good communication skills<br>- Ability to work effectively in a team environment<br><br>Responsibilities:<br>â\\u0080¢ Assemble components accurately and efficiently<br>â\\u0080¢ Inspect finished products to ensure quality standards are met<br>â\\u0080¢ Follow assembly instructions and blueprints<br>â\\u0080¢ Maintain a clean and organized work area<br>â\\u0080¢ Collaborate with team members to meet production goals</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=63d371d5-7fc9-4bb6-8bb2-36d0ccfbfcb3\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Assembler\",\n                    \"id\": \"63d371d5-7fc9-4bb6-8bb2-36d0ccfbfcb3\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Spark up some new opportunities! Our client is seeking an experienced Welder to join their team in Columbus. The ideal candidate will have a strong attention to detail, be able to work independently, and have a passion for producing high-quality work. If you meet the requirements and are ready to take the next step in your welding career, apply now!<br><br><strong>Requirements for Welder: </strong></p><ul><li><p>Welding experience required</p></li><li><p>Ability to read and interpret blueprints </p></li><li><p>Proficient in MIG and TIG welding techniques </p></li><li><p>Strong attention to detail </p></li><li><p>Ability to work independently </p></li></ul><p></p><p><strong>Responsibilities for Welder</strong>: </p><ul><li><p>Read and interpret blueprints to determine welding requirements </p></li><li><p>Set up welding equipment and select appropriate welding tools </p></li><li><p>Weld components in flat, vertical, or overhead positions </p></li><li><p>Inspect welds for accuracy and quality </p></li><li><p>Maintain a clean and safe work environment <br></p></li></ul><p><strong>Benefits for Welder:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired on by client</p></li><li><p>Health Insurance</p></li><li><p>Visions, Dental, STD, LTD</p></li><li><p>Paid Training</p><p></p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly Pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>Additional Info:</p><p>Interested candidates, call immediately at (402)562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=18828cd4-54e7-4675-842b-5eb5570b009e\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Welder\",\n                    \"id\": \"18828cd4-54e7-4675-842b-5eb5570b009e\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Experienced Forklift Operator wanted! Seize the opportunity to become an integral part of our team. We are in search of a proficient Forklift Operator to manage materials with precision and safety. Should you possess the necessary qualifications and are eager to embrace the duties of a Forklift Operator, we encourage you to apply. Become a valued member of our vibrant workplace.<br><br><strong>Requirements for Forklift Operator:</strong></p><ul><li><p>Valid forklift certification</p></li><li><p>Proven experience operating a forklift</p></li><li><p>Ability to handle materials safely and efficiently</p></li><li><p>Strong attention to detail</p></li><li><p>Good communication skills</p></li></ul><p><strong>Responsibilities for Forklift Operator:</strong></p><ul><li><p>Operate forklift to move materials within the warehouse</p></li><li><p>Load and unload materials from trucks</p></li><li><p>Perform routine maintenance checks on forklift</p></li><li><p>Follow safety protocols and guidelines</p></li><li><p>Keep work area clean and organized</p></li></ul><p><strong>Benefits offered for Forklift Operator:</strong></p><ul><li><p>Competitive pay</p></li><li><p>Overtime opportunities</p></li><li><p>Day and night shift options</p></li><li><p>Great benefits package</p></li></ul><p><strong>While working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision and Dental insurance<br></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=68a727a2-cdff-45b7-81bb-d9a9d48e1495\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Forklift Operator\",\n                    \"id\": \"68a727a2-cdff-45b7-81bb-d9a9d48e1495\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Do you have an eye for detail and thrive in a fast-paced setting? Our commercial laundry facility is in search of a Laundry Attendant to enhance our team. We're looking for someone with a solid work ethic who can swiftly meet production targets. Should you possess the necessary qualifications and are eager to engage in a vibrant workplace, consider applying for the Laundry Attendant role. Become a valued member of our expanding company, committed to excellence in service.<br><br><strong>Requirements for Laundry Attendant:</strong></p><ul><li><p>Ability to lift and move heavy loads</p></li><li><p>Strong attention to detail</p></li><li><p>Ability to work in a fast-paced environment</p></li><li><p>Reliable and punctual</p></li></ul><p><br><strong>Responsibilities for Laundry Attendant:</strong></p><ul><li><p>Sort, wash, dry, fold, and package laundry items</p></li><li><p>Operate commercial laundry equipment</p></li><li><p>Inspect items for stains or damage</p></li><li><p>Maintain a clean and organized work area</p></li><li><p>Follow safety protocols and guidelines</p></li><li><p>Assist with inventory management</p></li><li><p>Communicate effectively with team members</p></li></ul><p><strong>Benefits for Laundry Attendant:</strong></p><ul><li><p>PTO after 90 days of being hired on by client</p></li><li><p>Health insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training<br></p></li></ul><p><strong>While Working For Essential Personnel:</strong></p><ul><li><p>Weekly Pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p>#Essential Personnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=cb54519c-9980-4407-8a83-1c4386129810\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Laundry Attendant\",\n                    \"id\": \"cb54519c-9980-4407-8a83-1c4386129810\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20.00+ / hour\",\n                    \"description\": \"<p>Are you an experienced Machinist seeking a new role in CNC machining? Look no further! Our client is in search of a Machinist proficient with calipers and micrometers to become part of their dynamic team in a high-speed manufacturing setting. If you fulfill the qualifications and are eager to embrace the duties of a Machinist, don't hesitate to apply for this thrilling opportunity today!</p><p><strong>Requirements for Machinist:</strong></p><ul><li><p>Proficiency in CNC machining</p></li><li><p>Experience with calipers and micrometers</p></li><li><p>Strong attention to detail</p></li><li><p>Ability to read and interpret blueprints</p></li><li><p>Knowledge of machining tools and equipment</p></li></ul><p><br><strong>Responsibilities for Machinist:</strong></p><ul><li><p>Set up and operate CNC machines</p></li><li><p>Perform quality checks using calipers and micrometers</p></li><li><p>Read and interpret blueprints to ensure accurate production</p></li><li><p>Maintain a clean and safe work environment</p></li><li><p>Collaborate with team members to meet production goals <br><br></p></li></ul><p><strong>Benefits for Machinist:</strong></p><ul><li><p>Matching 401 (k)</p></li><li><p>PTO after 90 days of being hired on by client</p></li><li><p>Health insurance</p></li><li><p>Vision, dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p></p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=c46bd1de-73c6-4da6-a84c-0e5d57cb2d33\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Machinist\",\n                    \"id\": \"c46bd1de-73c6-4da6-a84c-0e5d57cb2d33\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Passionate about ensuring products meet the highest quality standards? We're in search of a Quality Control Engineer to enhance our team. The perfect candidate will possess keen attention to detail, superior problem-solving abilities, and a dedication to upholding quality benchmarks. Detail-oriented professionals with a zeal for quality assurance are invited to apply for the Quality Control Engineer role. Become a part of our team and contribute to upholding exceptional quality in our products.<br><br><strong>Requirements for Quality Control Engineer:</strong><br></p><ul><li><p>Previous experience in quality control or a related field</p></li><li><p>Strong analytical and problem-solving skills</p></li><li><p>Excellent communication skills</p></li><li><p>Knowledge of quality control standards and methodologies</p></li></ul><p><strong>Responsibilities for Quality Control Engineer:</strong></p><ul><li><p>Develop and implement quality control procedures</p></li><li><p>Conduct inspections and tests on products to ensure adherence to quality standards</p></li><li><p>Analyze data to identify areas for improvement in the production process</p></li><li><p>Collaborate with production teams to address quality issues and implement corrective actions</p></li><li><p>Document and report on quality control activities and findings</p></li></ul><p><strong>Benefits for Quality Control Engineer:</strong></p><ul><li><p>Competitive pay</p></li><li><p>Overtime opportunities</p></li><li><p>Day and night shift options</p></li><li><p>Great benefits package</p></li><li><p>Career advancement opportunities</p></li></ul><p><strong>While working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision insurance</p></li><li><p>Dental insurance</p></li></ul><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402)562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=80bac763-f849-451a-859e-41f6e1dc868e\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Quality Control Engineer\",\n                    \"id\": \"80bac763-f849-451a-859e-41f6e1dc868e\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>If you are meticulous and experienced in inspection work and microscope usage, we have an exciting role available. We're in search of an Inspector to become part of our team. In this role, you will carry out detailed inspections with microscopes to verify that our products adhere to quality standards. Should you possess an exceptional attention to detail and a passion for microscope work, we invite you to apply. Become an Inspector with us and contribute to our commitment to quality.<br><br><strong>Requirements for Inspector:</strong></p><ul><li><p>Experience in inspection</p></li><li><p>Proficiency in using microscopes</p></li><li><p>Detail-oriented</p></li></ul><p><strong>Responsibilities for Inspector:</strong></p><ul><li><p>Conduct inspections using microscopes</p></li><li><p>Ensure products meet quality standards</p></li><li><p>Document inspection results</p></li><li><p>Communicate any issues with the production team</p></li><li><p>Maintain a clean and organized work area</p></li></ul><p><strong>Benefits for Inspector:</strong></p><ul><li><p>Matching 401 (k)</p></li><li><p>PTO after 90 days of being hired on by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e2735ed5-6873-4aab-952c-e0d102c72423\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Inspector\",\n                    \"id\": \"e2735ed5-6873-4aab-952c-e0d102c72423\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.50 / hour\",\n                    \"description\": \"<p>Are you meticulous and possess outstanding customer service abilities? If that's the case, we have an ideal job for you! A local cooperative is in search of a Scale Operator to become part of their team, responsible for weighing trucks, gathering samples, and delivering top-notch customer service.<br><br><strong>Requirements for Scale Operator:</strong></p><ul><li><p>Previous experience in a similar role preferred</p></li><li><p>Strong attention to detail</p></li><li><p>Excellent customer service skills</p></li><li><p>Ability to work in a fast-paced environment</p></li><li><p>Basic math skills</p></li></ul><p><strong>Responsibilities for Scale Operator:</strong></p><ul><li><p>Weigh trucks accurately</p></li><li><p>Collect samples as needed</p></li><li><p>Provide excellent customer service to all clients</p></li><li><p>Maintain a clean and organized work area</p></li><li><p>Communicate effectively with team members and supervisors</p></li></ul><p><strong>Benefits Offered for Scale Operator:</strong></p><ul><li><p>Competitive pay</p></li><li><p>Health insurance</p></li><li><p>Retirement benefits</p></li><li><p>Training and development opportunities</p></li></ul><p><strong>Benefits for Scale Operator</strong></p><ul><li><p>Matching 401 (k)</p></li><li><p>PTO after 90 days of being hired on by client</p></li><li><p>Health Insurance</p></li><li><p>Visions, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=578685a5-b20a-4e17-a4d7-8f094a24100f\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fullerton\",\n                        \"zip\": \"68638\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Scale Operator\",\n                    \"id\": \"578685a5-b20a-4e17-a4d7-8f094a24100f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Have an eye for cleanliness and creating inviting spaces? Our team is in search of a Housekeeping professional to join us at a local medical facility. The perfect candidate will have prior housekeeping experience and a keen eye for details.<br><br><strong>Requirements for Housekeeping:</strong></p><ul><li><p>Experience in housekeeping</p></li><li><p>Ability to work independently</p></li><li><p>Strong attention to detail</p></li><li><p>Self starter</p></li></ul><p><br><strong>Responsibilities for Housekeeping:</strong></p><ul><li><p>Cleaning common areas in the hospital</p></li><li><p>Sweeping and mopping floors</p></li><li><p>Dusting surfaces</p></li><li><p>Sanitizing high-touch areas</p></li><li><p>Removing trash</p></li><li><p>Cleaning bathrooms</p></li></ul><p></p><p><br><strong>Benefits Offered for Housekeeping:</strong></p><ul><li><p>Competitive pay</p></li><li><p>Health insurance</p></li><li><p>Retirement savings plan</p></li><li><p>Training and development opportunities</p></li></ul><p></p><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (402)562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=48b3e98e-b776-4dc1-847f-776f577e3e97\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Housekeeping\",\n                    \"id\": \"48b3e98e-b776-4dc1-847f-776f577e3e97\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17+ / hour\",\n                    \"description\": \"<p>Seize this excellent opportunity to cool down! We are in search of a skilled HVAC Installer to become part of our team. The perfect candidate will possess a robust experience in HVAC installation and a dedication to delivering outstanding service to our clients. Should you fulfill the criteria and are prepared to advance in your HVAC profession, we are eager to connect with you! Come aboard and be an integral part of our expanding enterprise.<br><br><strong>Requirements for HVAC Installer:</strong></p><ul><li><p>Minimum of 2 years of experience in HVAC installation</p></li><li><p>Knowledge of HVAC systems and components</p></li><li><p>Ability to read and interpret blueprints and technical drawings</p></li><li><p>Strong attention to detail</p></li><li><p>Excellent communication and customer service skills</p></li></ul><p><br><br><strong>Responsibilities for HVAC Installer:</strong></p><ul><li><p>Install HVAC systems in residential and commercial buildings</p></li><li><p>Perform equipment inspections and maintenance</p></li><li><p>Troubleshoot and repair HVAC systems as needed</p></li><li><p>Ensure all work is completed in compliance with industry standards and regulations</p></li><li><p>Provide excellent customer service and address any customer concerns or questions</p></li><li><p>Maintain a clean and organized work area</p></li><li><p>Adhere to safety protocols and guidelines at all times</p><p></p></li></ul><p><strong>Benefits Offered for HVAC Installer</strong></p><ul><li><p>Matching 401 (k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training<br></p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision insurance</p></li><li><p>Dental insurance</p></li></ul><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402)562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-05\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=02d26755-33f8-4ccf-9922-edcd71effcd1\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"HVAC Installer\",\n                    \"id\": \"02d26755-33f8-4ccf-9922-edcd71effcd1\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$23.00 / hour\",\n                    \"description\": \"<p>Looking for your next career? Essential Personnel is seeking an enthusiastic candidates to fill a CDL Driver position. Candidates with previous experience are encouraged to apply. An ideal candidate should be a strong team player, be reliable, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for CDL Driver:</strong></p><ul><li><p>At least 2 years of experience</p></li><li><p>Class A CDL license </p></li><li><p>Valid driver's license and good driving record.</p></li><li><p>Sociability, interpersonal skills, listening, teamwork.</p></li><li><p>Excellent problem solving and decision making skills.</p></li></ul><p><strong>Responsibilities for CDL Driver:</strong></p><ul><li><p>Follow planned route to the destination.</p></li><li><p>Inspections of the vehicle using (DVIR)</p></li><li><p>Proper use of Hazmat and equipment tools</p></li><li><p>Properly prepare and secure daily delivery loads</p></li></ul><p><strong>Benefits Offered for CDL Driver:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h5>Additional Info:</h5><p>Interested candidates, call immediately at (531) 999-7633, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:columbus@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Columbus Branch\\\">Omaha@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>OMIND</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-10\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=a78b100b-b824-4391-b533-73c3e3d1e35c\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68137\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"CDL Driver\",\n                    \"id\": \"a78b100b-b824-4391-b533-73c3e3d1e35c\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$18.25 / hour\",\n                    \"description\": \"<p>Essential Personnel is seeking an enthusiastic candidate to fill multiple Feed Production positions at a company right here in Omaha. An ideal candidate should enjoy working hands-on, able to work in a fast paced environment, and have a great attendance record.</p><p><strong>Requirements for Feed Material Handler:</strong></p><ul><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Good eye for detail</p></li></ul><p><strong>Responsibilities for Feed Material Handler:</strong></p><ul><li><p>Fill product bags and put onto a pallet</p></li><li><p>Read ingredient sheets to mix proper components</p></li><li><p>Ensure quality of product</p></li><li><p>Collect any necessary material to complete orders</p></li></ul><p><strong>Benefits While Working for Essential Personnel</strong></p><ul><li><p>Weekly pay - Direct Deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndutrialJobs #ProfessionalJobs</p><h4>Additional Info:</h4><p>Interested candidates, call immediately at (531) 999-7633, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">omaha@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>OMIND</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-10\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=4512d7b0-5c1d-44cb-80f8-8072ebf521e1\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68144\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Feed Production Associate\",\n                    \"id\": \"4512d7b0-5c1d-44cb-80f8-8072ebf521e1\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$16.00 / hour\",\n                    \"description\": \"<p>Do you like working with your hands? Essential Personnel is currently filling a Wire Assembler position at a hardware design company in Kearney. Candidates should be familiar with assembling small parts, but experience is not required. An ideal candidate should be a quick-learner, able to work independently, and have a great attendance record.</p><p><strong>Requirements for Wire Assembler:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Meet production goals</p></li><li><p>Superior attendance record</p></li><li><p>Detail oriented</p></li></ul><p><strong>Responsibilities for Wire Assembler:</strong></p><ul><li><p>Assemble small parts</p></li><li><p>Quality assurance</p></li><li><p>Maintain smooth production flow</p></li><li><p>Use hand tools</p></li></ul><p><strong>Benefits Offered for Wire Assembler:</strong></p><ul><li><p>Paid Training</p></li><li><p>Yearly Bonuses</p></li><li><p>Weekly pay </p></li></ul><p><strong>While Working for Essential Personnel</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Vision Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-12\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=123f523f-92a7-4758-b841-82d710b9dd17\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68845\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Wire Assembler\",\n                    \"id\": \"123f523f-92a7-4758-b841-82d710b9dd17\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$21.50 / hour\",\n                    \"description\": \"<p>Are you excited about hands-on work in a light industrial environment? Essential Personnel is looking for a motivated Brake Press Operator to join a dynamic team at a reputable company southwest of Kearney. If you're a quick learner who thrives working independently and prides yourself on great attendance, this could be the perfect opportunity for you!</p><p><strong>Requirements for Brake Press Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Machine Operating experience</p></li><li><p>Able to prioritize tasks</p></li></ul><p><strong>Responsibilities for Brake Press Operator:</strong></p><ul><li><p>Ability to understand machinery layouts</p></li><li><p>Follow all safety regulations</p></li><li><p>Making sure area is kept clean</p></li><li><p>Meeting deadlines</p></li></ul><p><strong>Benefits Offered for Brake Press Operator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>Tuition Reimbursement</p></li><li><p>Review Raises</p></li><li><p>Vision, Dental, Medical</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a> or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-12\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=b385db39-040e-4655-821a-aa02bc65fa23\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Holdrege\",\n                        \"zip\": \"68949\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Brake Press Operator\",\n                    \"id\": \"b385db39-040e-4655-821a-aa02bc65fa23\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17.50 / hour\",\n                    \"description\": \"<p><strong>Are you ready to work in a dynamic environment with fantastic benefits?</strong> If you're on the hunt for a full-time opportunity in Holdrege, look no further! Essential Personnel is on the lookout for a highly motivated individual to join a company southwest of Kearney as a Material Handler. We're seeking someone who thrives in a fast-paced environment, arrives on time and ready to tackle the day, excels at teamwork, and loves the energy of a warehouse setting. If this sounds like you, we'd love to hear from you!</p><p><strong>Requirements for Material Handler:</strong></p><ul><li><p>Able to work independently and team based</p></li><li><p>Superior attendance record</p></li><li><p>Strong work ethic</p></li><li><p>Can work at a fast paced environment</p></li><li><p>Can easily follow directions</p></li></ul><p><strong>Responsibilities for Material Handler:</strong></p><ul><li><p>Relocating Product</p></li><li><p>Loading/Unloading Materials</p></li><li><p>Light cleaning duties</p></li><li><p>Organizing inventory</p></li><li><p>Disposing/Transporting Waste</p></li><li><p>Stocking</p></li></ul><p><strong>Benefits Offered for Material Handler:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>Tuition Reimbursement</p></li><li><p>Review Raises</p></li><li><p>Vision, Dental, Medical</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a> or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-12\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=48011e17-e82f-4860-b87c-414be2ab658f\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68949\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Material Handler\",\n                    \"id\": \"48011e17-e82f-4860-b87c-414be2ab658f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$20.00 / hour\",\n                    \"description\": \"<p>Do you have experience with preparing materials for the paint booth and are looking for a full-time position? Essential Personnel is seeking motivated Candidates to fill an Industrial Painter position at a family owned company Southeast of Kearney. If you are detail oriented, have previous paint or painting related experience and are able to work well with others, apply today! An ideal Industrial Painter candidate should have previous experience with paint processes, be a self-starter, and have a great attendance record.</p><p><strong>Requirements for Industrial Painter:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Time management skills</p></li><li><p>Safety oriented</p></li></ul><p><strong>Responsibilities for Industrial Painter:</strong></p><ul><li><p>Prepare surfaces for coating</p></li><li><p>Correctly mix primer and paint</p></li><li><p>Utilize wet paint guns</p></li><li><p>Maintain paint booth/equipment</p></li></ul><p><strong>Benefits for Industrial Painter:</strong></p><ul><li><p>401(k) determined after 90 day roll over</p></li><li><p>PTO - determined after 90 day roll over</p></li><li><p>Health, Dental and Vision Insurance</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday bonus for eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Vision Insurance</p></li></ul><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDKB</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-19\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=5a5b3c74-c09f-4054-ac7d-26d86abc179d\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Minden\",\n                        \"zip\": \"68959\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Industrial Painter\",\n                    \"id\": \"5a5b3c74-c09f-4054-ac7d-26d86abc179d\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18-20 / hour\",\n                    \"description\": \"<p>Are you ready to join a fast-growing company? Essential Personnel is seeking candidates to fill Ammo Packager positions at a company in Grand Island. Previous packing is recommended but not required. An ideal candidate should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Ammo Packager:</strong></p><ul><li><p>Able to work independently or as a team</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Ammo Packager:</strong></p><ul><li><p>Package product</p></li><li><p>Label</p></li><li><p>Count</p></li><li><p>Identify product</p></li></ul><p><strong>Benefits Offered for Ammo Packager:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=28ec5f95-0a0e-46fa-99f7-3e49085db533\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Ammo Packager\",\n                    \"id\": \"28ec5f95-0a0e-46fa-99f7-3e49085db533\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00-$20.00 / hour\",\n                    \"description\": \"<p>Are you ready to get your foot in the door of a fast-growing company? Essential Personnel is seeking candidates to fill Bullet Inspector positions at a company in Grand Island. Quality control is preferred but not required. An ideal candidate should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Bullet Inspector:</strong></p><ul><li><p>Able to work independently or as a team</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Bullet Inspector:</strong></p><ul><li><p>Inspect Product for defects</p></li><li><p>Record information</p></li><li><p>Label</p></li><li><p>Set-up work station daily</p></li></ul><p><strong>Benefits Offered for Bullet Inspector:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a> or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=645682ce-d7d8-404c-8651-0d33f91f992f\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Bullet Inspector\",\n                    \"id\": \"645682ce-d7d8-404c-8651-0d33f91f992f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18.00-$23.00 / hour\",\n                    \"description\": \"<p>Are you wanting to work for an amazing family-owned company? Essential Personnel is seeking candidates to fill Case Press Operator positions at a company in Grand Island. Candidates must have at least 1-2 years of machine operating experience. An ideal candidate should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Case Press Operator:</strong></p><ul><li><p>Able to work independently or as a team</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker.</p></li><li><p>Able to work at a fast pace</p></li><li><p>Mechanically inclined</p></li></ul><p><strong>Responsibilities for Case Press Operator:</strong></p><ul><li><p>Run a variety of machines to produce casing</p></li><li><p>Quality checks on product</p></li><li><p>Troubleshoot mechanical issues and make adjustments</p></li><li><p>Machine setup</p></li><li><p>Use measuring devices: calipers and micrometers</p></li></ul><p><strong>Benefits for a Case Press Operator:</strong></p><ul><li><p>Medical/Dental/Vision</p></li><li><p>STD/LTD</p></li><li><p>Matching 401(k)</p></li><li><p>PTO</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=395d65a2-2650-4533-961f-e539709d822a\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Case Press Operator\",\n                    \"id\": \"395d65a2-2650-4533-961f-e539709d822a\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18.00-$20.00 / hour\",\n                    \"description\": \"<p>Are you looking to expand your warehouse skills? Essential Personnel is seeking candidates to fill Ammo Runner positions at a company in Grand Island. Candidates must be willing to work full-time and learn new skills. An ideal candidate should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Ammo Runner:</strong></p><ul><li><p>Able to work independently or as a team</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Ammo Runner:</strong></p><ul><li><p>Stage materials for production</p></li><li><p>Quality checks on product</p></li><li><p>Use pallet jackets</p></li><li><p>Parts and materials knowledge</p></li></ul><p><strong>Benefits Offered for Ammo Runner:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=b53944d5-6c34-4154-8f34-2831fa6b78f0\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Ammo Runner\",\n                    \"id\": \"b53944d5-6c34-4154-8f34-2831fa6b78f0\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$20-$23 / hour\",\n                    \"description\": \"<p>Are you wanting to work for a family owned company? Essential Personnel is seeking candidates to fill Bullet Press Operator positions at a company in Grand Island. Candidates must have at least 1-2 years machine operating experience. An ideal candidate should be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Bullet Press Operator:</strong></p><ul><li><p>Able to work independently or as a team</p></li><li><p>Superior attendance record</p></li><li><p>1-2  years machine experience</p></li><li><p>Able to work at a fast pace</p></li><li><p>Mechanically inclined</p></li></ul><p><strong>Responsibilities for Bullet Press Operator:</strong></p><ul><li><p>Run a variety of machines</p></li><li><p>Quality checks on product</p></li><li><p>Troubleshoot mechanical issues and make adjustments</p></li><li><p>Machine setup</p></li><li><p>Use measuring devices: calipers and micrometers</p></li></ul><p><strong>Benefits for a Bullet Press Operator:</strong></p><ul><li><p>Medical/Dental/Vision</p></li><li><p>STD/LTD</p></li><li><p>Matching 401(k)</p></li><li><p>PTO</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=291b597c-d282-48a6-b7e0-a49b8c5ebb99\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Bullet Press Operator\",\n                    \"id\": \"291b597c-d282-48a6-b7e0-a49b8c5ebb99\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$17 / hour\",\n                    \"description\": \"<p>Are you looking for a career change and and enjoy working with others? Essential Personnel is seeking an enthusiastic candidate to fill a Eyecare Assistant position at a company in Grand Island. An ideal candidate should enjoy working with the public, be able to work independently and have a great attendance record.</p><p><strong>Requirements for Eyecare Assistant:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Attention to detail</p></li><li><p>Can work at a fast pace</p></li><li><p>Customer service</p></li></ul><p><strong>Responsibilities for Eyecare Assistant:</strong></p><ul><li><p>Perform Pre-tests on patients</p></li><li><p>Record medical history</p></li><li><p>File insurance claims</p></li><li><p>Clerical duties as needed</p></li></ul><p><strong>Benefits Offered for Eyecare Assistant:</strong></p><ul><li><p>Flexible scheduling options</p></li><li><p>On the job training</p></li><li><p>Positive work environment</p></li><li><p>PTO after being rolled over</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-16\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=d3e11a0d-30f9-4ca3-a48c-f0cd36179d74\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Eyecare Assistant\",\n                    \"id\": \"d3e11a0d-30f9-4ca3-a48c-f0cd36179d74\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$17.00+ / hour\",\n                    \"description\": \"<p>Join our team as a Warehouse Bagger at a local co-op! They are a small business with a close-knit culture that values hard work and dedication. As a Warehouse Bagger, you will be responsible for various tasks such as sweeping and shoveling grain, loading trucks, and mixing and measuring ingredients.<br><br><strong>Requirements for Warehouse Bagger: </strong><br>â\\u0080¢ Ability to work in a team environment <br>â\\u0080¢ Physical stamina to handle lifting and moving heavy bags <br>â\\u0080¢ Attention to detail <br>â\\u0080¢ Willingness to learn and take on new tasks <br><br><strong>Responsibilities for Warehouse Bagger: </strong><br>â\\u0080¢ Sweep and shovel grain in the warehouse <br>â\\u0080¢ Load trucks with bags of grain <br>â\\u0080¢ Mix and measure ingredients according to specifications <br>â\\u0080¢ Maintain a clean and organized work area <br>â\\u0080¢ Follow safety protocols and guidelines <br><br>If you are looking for a hands-on role in a supportive work environment, apply now to join our team as a Warehouse Bagger!</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=0ec43db8-60bf-49c6-9ce4-793f62196892\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Warehouse Bagger\",\n                    \"id\": \"0ec43db8-60bf-49c6-9ce4-793f62196892\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$19.00+ / hour\",\n                    \"description\": \"<p>Are you a hands-on individual with a passion for working outdoors? We have an exciting opportunity for a Field Technician to join our team! As a Field Technician, you will be responsible for the assembly, maintenance, and repair of pivot irrigation systems. If you have experience with basic hand tools and enjoy working in a dynamic environment, we want to hear from you!<br><br><strong>**Requirements for Field Technician:**</strong><br>â\\u0080¢ Experience with assembly of pivot irrigation systems<br>â\\u0080¢ Proficiency in using basic hand tools<br>â\\u0080¢ Knowledge of preventative maintenance techniques<br>â\\u0080¢ Ability to perform small repairs as needed<br><strong><br>**Responsibilities for Field Technician:**</strong><br>â\\u0080¢ Assemble pivot irrigation systems according to specifications<br>â\\u0080¢ Conduct preventative maintenance on pivot systems<br>â\\u0080¢ Perform small repairs to ensure proper functioning<br>â\\u0080¢ Troubleshoot and diagnose issues with pivot systems<br>â\\u0080¢ Maintain accurate records of maintenance and repairs<br><br>Join our team as a Field Technician and be part of a dynamic and growing company that values your skills and expertise!</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e74bd59b-fe99-4554-a5ae-f86ba320ff14\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Field Technician\",\n                    \"id\": \"e74bd59b-fe99-4554-a5ae-f86ba320ff14\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20.00+ / hour\",\n                    \"description\": \"<p>Are you a skilled Diesel Mechanic looking for a new opportunity? We are currently seeking a dedicated and experienced Diesel Mechanic to join our team. As a Diesel Mechanic, you will be responsible for maintaining and repairing diesel engines and vehicles to ensure they are in optimal working condition.<br><br><strong>Requirements for Diesel Mechanic: </strong><br>â\\u0080¢ High school diploma or equivalent <br>â\\u0080¢ Proven experience as a Diesel Mechanic <br>â\\u0080¢ Strong knowledge of diesel engine components and systems <br>â\\u0080¢ Ability to diagnose and repair mechanical issues <br>â\\u0080¢ Valid driver's license <br>â\\u0080¢ Own tools <br><br><strong>Responsibilities for Diesel Mechanic: </strong><br>â\\u0080¢ Perform routine maintenance on diesel engines and vehicles <br>â\\u0080¢ Diagnose and repair mechanical issues <br>â\\u0080¢ Conduct regular inspections to identify faulty parts <br>â\\u0080¢ Test drive vehicles to ensure proper functioning <br>â\\u0080¢ Keep accurate records of repairs and maintenance <br>â\\u0080¢ Adhere to safety protocols and regulations <br><br>If you meet the requirements and are passionate about diesel engines, we would love to hear from you. Join our team and be part of a dynamic and rewarding work environment.</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=4f1a9e55-e3d7-4779-99ef-f3e3a4d3e492\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Diesel Mechanic\",\n                    \"id\": \"4f1a9e55-e3d7-4779-99ef-f3e3a4d3e492\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20.00+ / hour\",\n                    \"description\": \"<p>Are you a customer service-oriented individual with a passion for the automotive industry? We are currently seeking a Service Writer for a diesel mechanic shop in the local area. The ideal candidate will have excellent communication skills, attention to detail, and a strong understanding of diesel mechanics.<br><br><strong>Requirements for Service Writer: </strong><br>Excellent customer service skills <br>Strong communication skills <br>Knowledge of diesel mechanics <br>Ability to multitask and prioritize <br>Attention to detail <br><br><strong>Responsibilities for Service Writer: </strong><br>Greet customers and determine their service needs <br>Write up work orders and communicate with mechanics <br>Provide estimates and timelines for repairs <br>Coordinate with parts department for necessary components <br>Keep customers informed of the status of their vehicles <br>Ensure customer satisfaction with completed work <br><br>If you are a team player with a passion for providing exceptional service in the automotive industry, we want to hear from you! Join our team and be a part of a dynamic and growing diesel mechanic shop.</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=96c200b2-b124-4640-9770-eadaa80f0b20\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Service Writer\",\n                    \"id\": \"96c200b2-b124-4640-9770-eadaa80f0b20\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$16.00+ / hour\",\n                    \"description\": \"<p>Are you a detail-oriented individual looking for a warehouse position? We have an exciting opportunity for a Warehouse Associate at a local distribution center in Omaha. The ideal candidate should have experience in picking and packing orders and be able to follow written directions accurately.<br><br><strong>Requirements for Warehouse Associate: </strong><br>â\\u0080¢ Experience in a warehouse setting <br>â\\u0080¢ Ability to pick and pack orders <br>â\\u0080¢ Strong attention to detail <br>â\\u0080¢ Ability to follow written directions <br><br><strong>Responsibilities for Warehouse Associate: </strong><br>â\\u0080¢ Pick and pack orders accurately <br>â\\u0080¢ Follow written directions for order fulfillment <br>â\\u0080¢ Maintain a clean and organized work area <br>â\\u0080¢ Assist with inventory management <br>â\\u0080¢ Operate warehouse equipment as needed <br><br>Benefits Offered for Warehouse Associate: <br>â\\u0080¢ Competitive hourly wage <br>â\\u0080¢ Health insurance <br>â\\u0080¢ Paid time off <br>â\\u0080¢ Opportunities for advancement <br>â\\u0080¢ On-the-job training and development opportunities</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=5ad91e36-c16b-4195-8098-804630568e5b\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Schuyler\",\n                        \"zip\": \"68661\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Warehouse Associate\",\n                    \"id\": \"5ad91e36-c16b-4195-8098-804630568e5b\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ / hour\",\n                    \"description\": \"<p>Are you a hands-on individual with a knack for assembling things? If so, we have the perfect job for you! Our client is seeking a Tech Assembler to join their team in a warehouse environment. The primary responsibility of this role is to assemble agricultural equipment using basic hand tools.<br><br><strong>Requirements for Tech Assembler: </strong><br>Experience in a warehouse environment <br>Proficient in assembly of agricultural equipment <br>Knowledge of basic hand tools <br><br><strong>Responsibilities for Tech Assembler: </strong><br>Assemble agricultural equipment <br>Use basic hand tools for assembly <br>Follow assembly instructions accurately <br>Maintain a clean and organized work area <br><br>If you are ready to put your assembly skills to work in a dynamic environment, apply now!</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=649216e6-6907-4a43-97cc-ece75a7523de\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Schuyler\",\n                        \"zip\": \"68661\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Tech Assembler\",\n                    \"id\": \"649216e6-6907-4a43-97cc-ece75a7523de\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20.00+ / hour\",\n                    \"description\": \"<p>Are you a skilled welder looking for a new opportunity in the agriculture industry? We are currently seeking a MIG Welder to join our team at an agriculture company. The ideal candidate will have experience in MIG welding and a strong work ethic.<br><br><strong>Requirements for Welder: </strong><br>â\\u0080¢ Previous experience as a MIG welder <br>â\\u0080¢ Knowledge of welding techniques and equipment <br>â\\u0080¢ Ability to read and interpret blueprints <br>â\\u0080¢ Strong attention to detail <br>â\\u0080¢ Ability to work independently and as part of a team <br><br><strong>Responsibilities for Welder: </strong><br>â\\u0080¢ Perform MIG welding on agricultural equipment <br>â\\u0080¢ Read and interpret blueprints to determine welding requirements <br>â\\u0080¢ Inspect welds for accuracy and quality <br>â\\u0080¢ Maintain a clean and safe work environment <br>â\\u0080¢ Follow all safety protocols and procedures <br><br>If you meet the requirements and are ready to take on this exciting opportunity, apply now to join our team as a MIG Welder in the agriculture industry.</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=7859f265-9b39-4ea0-b49c-81e625b65d6c\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Welder\",\n                    \"id\": \"7859f265-9b39-4ea0-b49c-81e625b65d6c\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ / hour\",\n                    \"description\": \"<p>Are you looking to kickstart your career in manufacturing? Essential Personnel is currently seeking an Entry-Level Machine Operator for a local company in the area. This is a great opportunity for someone who is detail-oriented, can follow instructions well, and is comfortable working on a continuous line.<br><br><strong>Requirements for Machine Operator</strong>: <br>Entry-level machine operator <br>Good eye for detail <br>Able to follow written and verbal instructions <br>Work on a continuous line <br><br><strong>Responsibilities for Machine Operator: </strong><br>Operate machinery on a continuous line <br>Monitor production process <br>Inspect finished products for quality <br>Follow safety protocols <br>Maintain a clean work area <br><br>Benefits Offered for Machine Operator: <br>Competitive pay <br>Opportunities for advancement <br>Training and development programs <br>Health insurance <br>Retirement savings plan <br>Paid time off</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p></p></li></ul><p>#EssentialPersonnel #ColumbusJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 562-7823, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to columbus@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=165d577b-7eb0-41cf-b822-604d56e874c5\",\n                    \"rep_user\": {\n                        \"email\": \"Columbus@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Columbus\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Machine Operator\",\n                    \"id\": \"165d577b-7eb0-41cf-b822-604d56e874c5\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18+ / hour\",\n                    \"description\": \"<p>Are you passionate about boats and enjoy working with your hands? We have an exciting opportunity for a Marina Service Technician (boat mechanic) at our waterfront location. The ideal candidate will have experience working with boats and engines, possess strong problem-solving skills, and be able to work in a fast-paced environment.  If you are a skilled boat mechanic looking for a challenging and rewarding career, we want to hear from you! Join our team and be a part of the exciting world of marine services.<br><br><strong>Requirements for Marina Service Technician (boat mechanic): </strong></p><ul><li><p>Previous experience as a boat mechanic </p></li><li><p>Knowledge of boat engines, electrical systems, and plumbing </p></li><li><p> Ability to troubleshoot and diagnose mechanical issues </p></li><li><p> Strong attention to detail </p></li><li><p>Excellent communication skills </p></li></ul><p><br><strong>Responsibilities for Marina Service Technician (boat mechanic): </strong></p><ul><li><p> Perform routine maintenance on boats, including engine tune-ups, oil changes, and hull inspections </p></li><li><p>Diagnose and repair mechanical issues on boats. </p></li><li><p>Install and repair boat accessories, such as GPS systems and radios </p></li><li><p>Conduct sea trials to test repairs and ensure proper functioning </p></li><li><p> Maintain a clean and organized work area </p></li><li><p> Provide excellent customer service to boat owners <br></p></li></ul><p><strong>Benefits Offered for Marina Service Technician</strong></p><ul><li><p>Retirement Plan</p></li><li><p>Commission</p></li><li><p>Vacation</p></li><li><p>Health Insurance</p></li><li><p>Bonus</p></li><li><p>Paid Training</p><p></p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #FremontJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to fremont@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-16\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=fc912caf-78ad-45f1-bbf5-b212a0d495b5\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Marina Service Technician\",\n                    \"id\": \"fc912caf-78ad-45f1-bbf5-b212a0d495b5\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$20+ / hour\",\n                    \"description\": \"<p>Are you a Certified Pharmacy Technician looking for a new opportunity in Fremont? We have a position for you! Our client is seeking a dedicated and experienced Certified Pharmacy Technician to join their team in providing exceptional pharmaceutical services to their community. If you meet the requirements and are passionate about providing quality pharmaceutical care, we want to hear from you! Apply now to join our client's team as a Certified Pharmacy Technician in Nebraska.<br><br><strong>Requirements for Certified Pharmacy Technician:</strong></p><ul><li><p>Certification as a Pharmacy Technician in Nebraska</p></li><li><p>Strong knowledge of pharmacy regulations and procedures</p></li><li><p>Excellent communication and customer service skills</p></li><li><p>Attention to detail and accuracy</p></li><li><p>Ability to work in a fast-paced environment</p></li></ul><p><br><strong>Responsibilities for Certified Pharmacy Technician:</strong></p><ul><li><p>Fill and label prescriptions accurately</p></li><li><p>Assist pharmacists with preparing medication for patients</p></li><li><p>Manage inventory and stock medications</p></li><li><p>Process insurance claims</p></li><li><p>Provide excellent customer service to patients</p></li><li><p>Maintain a clean and organized work environment</p><p></p></li></ul><p><strong>Benefits Offered for Certified Pharmacy Technician:</strong></p><ul><li><p>Retirement Plan</p></li><li><p>Vacation</p></li><li><p>Health, Dental, Vision, Life Insurance</p></li><li><p>Prescription drug insurance</p></li><li><p>Paid Training</p></li></ul><p></p><p><strong>While Working for Essential Personnel</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #FremontJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to fremont@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=f46e821b-1e4b-4942-8919-bd936f08f0f3\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Certified Pharmacy Technician\",\n                    \"id\": \"f46e821b-1e4b-4942-8919-bd936f08f0f3\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Professional\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Are you organized, detail-oriented, and looking to kickstart your career in administration? We have an exciting opportunity for an Administrative Assistant position at our company in need of someone who can handle basic computer work, filing, and data entry. If you meet these requirements and are ready to take on a new challenge, we want to hear from you! Join our team and grow your administrative skills in a supportive and dynamic work environment.<br><br><strong>Requirements for Administrative Assistant:</strong><br>â\\u0080¢ Proficient in basic computer skills<br>â\\u0080¢ Strong organizational skills<br>â\\u0080¢ Attention to detail<br>â\\u0080¢ Ability to multitask effectively<br><br><strong>Responsibilities for Administrative Assistant:</strong><br>â\\u0080¢ Perform basic computer work such as data entry and email correspondence<br>â\\u0080¢ Maintain and organize physical and digital filing systems<br>â\\u0080¢ Assist with general office tasks as needed<br>â\\u0080¢ Provide administrative support to team members<br><br><strong>Benefits Offered for Scheduler:</strong></p><p>â\\u0080¢ Retirement Plan<br>â\\u0080¢ Vacation<br>â\\u0080¢ Health Insurance<br>â\\u0080¢ Bonus</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #FremontJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to fremont@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=99834f9c-ef2d-4677-959a-0fde1a8fa0b0\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"99834f9c-ef2d-4677-959a-0fde1a8fa0b0\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$19.00+ / hour\",\n                    \"description\": \"<p>Are you a people person with excellent communication skills? If so, we have the perfect job for you! Our client is seeking a Customer Service Representative to join their call center team in providing exceptional service to customers. If you are passionate about helping others and thrive in a fast-paced environment, this position is for you.<br><br><strong>Requirements for Customer Service Representative: </strong></p><ul><li><p>Excellent communication skills </p></li><li><p> Strong problem-solving abilities </p></li><li><p>Ability to multitask </p></li><li><p> Previous customer service experience preferred </p></li><li><p> Proficiency in computer systems </p></li></ul><p><br><strong>Responsibilities for Customer Service Representative: </strong></p><ul><li><p>Answer incoming calls from customers </p></li><li><p> Assist customers with inquiries, concerns, and complaints </p></li><li><p> Provide information about products and services </p></li><li><p> Process orders and returns </p></li><li><p> Maintain customer records accurately </p></li><li><p> Collaborate with team members to ensure customer satisfaction </p><p></p></li></ul><p><strong>Benefits Offered for Customer Service Representative:</strong></p><ul><li><p><strong> </strong>Competitive salary </p></li><li><p> Health insurance </p></li><li><p> Paid time off </p></li><li><p> Professional development opportunities </p></li><li><p>Positive and supportive work environment</p></li></ul><p></p><p><strong><span style=\\\"font-family: TimesNewRoman,\\\"Times New Roman\\\",Times,Baskerville,Georgia,serif;\\\">While Working for Essential Personnel:</span></strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #FremontJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p></p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to fremont@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=cf4b007c-06ff-4877-a941-0a813388f15d\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Customer Service Representative\",\n                    \"id\": \"cf4b007c-06ff-4877-a941-0a813388f15d\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>Are you looking to kickstart your career in manufacturing? We have an exciting opportunity for you! A local company in need of Assemblers is looking for entry-level candidates who are eager to learn and grow within the industry. This is a great chance to get your foot in the door and start building a successful career in manufacturing.<br><br><strong>Requirements for Assembler: </strong></p><ul><li><p>No prior experience required</p></li><li><p>Willingness to learn</p></li><li><p>Ability to follow instructions</p></li></ul><p><strong>Responsibilities for Assembler: </strong></p><ul><li><p>Assemble parts accurately and efficiently</p></li><li><p>Follow verbal and written directions</p></li><li><p>Inspect finish products for quality assurance</p></li><li><p>Maintain a clean and organized work area</p></li><li><p>Work collaboratively with team members</p></li></ul><p><strong>Benefits Offered for Assembler: </strong></p><ul><li><p>Paid training</p></li><li><p>Opprtunities for advancement</p></li><li><p>Health insurance</p></li><li><p>401k</p></li><li><p>Paid time off</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision insurance</p></li><li><p>Dental insurance</p></li></ul><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to fremont@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p><p></p><p>#EssentialPersonnel #Fremontjobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=d23af9f4-892b-4328-ba36-4b7a3715dd0c\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Asembler\",\n                    \"id\": \"d23af9f4-892b-4328-ba36-4b7a3715dd0c\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p><strong>Join Our Growing Team!</strong></p><p>Essential Personnel is seeking a <strong>Bilingual Administrative Assistant </strong>to join our dynamic team in Fremont. If you're a detail-oriented professional with excellent communication skills and a passion for providing exceptional support, we encourage you apply.</p><p>We offer an excellent compensation package that includes base pay, commission and potential for bonuses! Benefits such as health insurance, dental insurance, STD, LTD, life insurance, vision, matching 401K and PTO is offered.</p><p><strong>Requirements for Bilingual Administrative Assistant:</strong></p><ul><li><p>Be self-motivated</p></li><li><p>Spanish/English bilingual</p></li><li><p>Strong organizational and time management skills</p></li><li><p>Excellent communication and interpersonal skills</p></li><li><p>Prefer 2 years of customer service experience</p></li></ul><p><strong>Responsibilities for Bilingual Administrative Assistant:</strong></p><ul><li><p>Conduct in-person interviews</p></li><li><p>Schedule appointments and meetings</p></li><li><p>Prepare and maintain accurate records and files</p></li><li><p>Develop relationships with client hiring managers</p></li><li><p>Handle general office duties, such as filing, photocopying, and data entry</p></li><li><p>Manage base of candidates and applicants, including immediate follow up</p></li><li><p>Meet and/or exceed set goals</p></li></ul><p>Interested candidates, call immediately at (402) 727-8336 or email your resume to jslama@essentialpersonnel.com</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekers unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search. Our focus is on matching people with positions that are rewarding, well paying and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-17\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=1b0cf898-7500-4607-be96-3e7de43f87f9\",\n                    \"rep_user\": {\n                        \"email\": \"jslama@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Jessica\",\n                        \"last_name\": \"Slama\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Bilingual Administrative Assistant\",\n                    \"id\": \"1b0cf898-7500-4607-be96-3e7de43f87f9\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Clerical\"\n                },\n                {\n                    \"pay_rate\": \"$21.00-24.00 / hour\",\n                    \"description\": \"<p><strong>Essential Personnel</strong> in Omaha is seeking an enthusiastic candidate to fill an <strong>Assembly Technician</strong> position. The ideal assembly candidate would be an enthusiastic person who can work effectively both independently and as part of a team. Great benefits and advancement opportunities!</p><p><strong>Requirements for Assembly Technician:</strong></p><ul><li><p>Familiar with a broad range of manufacturing and assembly techniques</p></li><li><p>Superior attendance record</p></li><li><p>Proficient with basic hand tools and equipment</p></li><li><p>Competent computer knowledge</p></li><li><p>Detail oriented</p></li><li><p>Comply with medical device quality system requirements</p></li><li><p>Strong hands-on skills</p></li><li><p>Required experience assembling medical equipment</p></li></ul><p><strong>Responsibilities for Assembly Technician:</strong></p><ul><li><p>Assemble high-volume disposable medical supplies in a cleanroom</p></li><li><p>Maintain a clean, safe, and well-organized assembly area</p></li><li><p>Actively work to enhance product qualify while minimizing scrap</p></li><li><p>Assist with the manufacturing phase-in of new products or product changes</p></li><li><p>Comply with medical device quality system requirements</p></li><li><p>Perform other duties as assigned</p></li></ul><p><strong>Benefits Offered for Assembly Technician:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (531) 999-7633, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">omaha@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>OMIND</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-18\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=f07f4ea5-ea3a-4d14-a647-4306f3578960\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68137\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Assembly Technician\",\n                    \"id\": \"f07f4ea5-ea3a-4d14-a647-4306f3578960\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$15.00 / hour\",\n                    \"description\": \"<p>Looking for your next career? Essential Personnel is seeking an enthusiastic candidate to fill a Event Staff position. Candidates with previous experience are encouraged to apply. Experience is a plus but not necessary. An ideal candidate should be a strong team player, be reliable, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Event Staff:</strong></p><ul><li><p>Great communication skills</p></li><li><p>Customer service experience</p></li><li><p>Detail oriented</p></li><li><p>Part-Time position</p></li></ul><p><strong>Responsibilities for Event Staff:</strong></p><ul><li><p>Aid managers with set up of event</p></li><li><p>Setting up tables and chairs</p></li><li><p>Tear down of tables and chair</p></li><li><p>Clean up after event</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, <strong>call immediately at 531-999-7633</strong>, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to omaha@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialist in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement, and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>OMIND</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-18\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e43932b3-88e6-4f54-98f8-6ce25d0b23cd\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68138\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Event Staff\",\n                    \"id\": \"e43932b3-88e6-4f54-98f8-6ce25d0b23cd\",\n                    \"type\": \"Part Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17.00 / hour\",\n                    \"description\": \"<p>Essential Personnel is seeking enthusiastic candidates to fill several Banquet Server positions positions right here in Omaha, NE! Flexible schedules, and great pay. Previous banquet serving experience is a plus but willing to train! If you are looking for extra money give us a call or apply today.</p><p><strong>Requirements:</strong></p><ul><li><p>Great communication skills</p></li><li><p>Server experience is a plus</p></li><li><p>Customer service experience</p></li><li><p>Detail oriented</p></li><li><p>Part-Time position</p></li></ul><p><strong>Responsibilities:</strong></p><ul><li><p>Aid managers with set up of event</p></li><li><p>Serving and replenish food for guests</p></li><li><p>Removing dishes when needed</p></li><li><p>Professional setting</p></li><li><p><strong>Benefits Offered for Essential Personnel:</strong></p></li></ul><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, <strong>call immediately at 531-999-7633</strong>, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to omaha@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialist in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement, and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>OMIND</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-18\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=ebc5986c-5e7a-4ae6-a5c6-fd43288130f0\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68138\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Banquet Server\",\n                    \"id\": \"ebc5986c-5e7a-4ae6-a5c6-fd43288130f0\",\n                    \"type\": \"Part Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00 / hour\",\n                    \"description\": \"<p>Looking for your next career? Essential Personnel is seeking an enthusiastic candidate to fill a General Labor Warehouse position for a company in Omaha! Candidates with previous experience are encouraged to apply. Great hours and GREAT pay. Experience a plus but not necessary. An ideal candidate should be a strong team player, be reliable, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for General Labor Warehouse:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Understanding basic math and fractions</p></li><li><p>Read a tape measure</p></li></ul><p><strong>Responsibilities for General Labor Warehouse:</strong></p><ul><li><p>Operate overhead cranes</p></li><li><p>Ability to work with others</p></li><li><p>Using a lazer cutter</p></li><li><p>Place items on flatbed truck with overhead crane</p></li><li><p>Unload flatbed trucks and place materials within warehouse using overhead crane</p></li><li><p>Problem Solving</p></li></ul><p><strong>Benefits Offered for General Labor Warehouse:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #OmahaJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h5>Additional Info:</h5><p>Interested candidates, call immediately at (531) 999-7633, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:columbus@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Columbus Branch\\\">Omaha@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>OMIND</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-12\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=56b3312d-9202-4673-9de7-4ec4517aa14d\",\n                    \"rep_user\": {\n                        \"email\": \"omaha@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Omaha\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Omaha\",\n                        \"zip\": \"68138\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"General Labor Warehouse\",\n                    \"id\": \"56b3312d-9202-4673-9de7-4ec4517aa14d\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$20-24 / hour\",\n                    \"description\": \"<p>Are you looking for a new opportunity? Essential Personnel has immediate openings for Warehouse Supervisors in York.  The ideal Warehouse Supervisor will assist in loading & unloading shipments, training, ensuring orders are correct, and the warehouse is running efficiently.</p><p><strong>Qualifications for the Warehouse Supervisor</strong> <strong>:</strong></p><ul><li><p>Forklift, pallet jack experience preferred</p></li><li><p>Ability to adhere to employer safety regulations</p></li><li><p>Working knowledge of warehouse data systems</p></li><li><p>Inventory skills and excellent communication skills</p></li><li><p>Supervisory experience preferred</p></li></ul><p><strong>Responsibilities for the Warehouse Supervisor</strong>:</p><ul><li><p><strong><span style=\\\"font-weight: normal;\\\">Processing, packing and shipping orders</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Inspecting items for defects and reporting</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Assisting in training employees</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Restocking and maintain inventory of orders</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Oversee employees on either 1st or 2nd shift</span></strong></p></li></ul><p><strong>Benefits Offered</strong>:</p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link: http://www.essentialpersonnel.com/submit-resume.com, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p><p>Â </p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=c63b0a30-3db3-435d-8376-e590738bb5ec\",\n                    \"rep_user\": {\n                        \"email\": \"ajohnston@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Angelina\",\n                        \"last_name\": \"Johnston\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"York\",\n                        \"zip\": \"68467\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Warehouse Supervisor\",\n                    \"id\": \"c63b0a30-3db3-435d-8376-e590738bb5ec\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$16.50 / hour\",\n                    \"description\": \"<p>Are you detail-oriented with a knack for organization? Do you take pride in ensuring accuracy in every task? We are looking for dedicated Soil Sample Preparation workers to join our client's team for a seasonal opportunity.  Preferred candidates should have exceptional organization skills. Experience in a lab setting is a plus, but this is not required. An ideal candidate should enjoy working with lab materials, be able to work independently, and have a great attendance record. </p><p><strong>Requirements for Soil Sample Preparation:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Detail Oriented</p></li><li><p>Organization skills</p></li></ul><p><strong>Responsibilities for Soil Sample Preparation:</strong></p><ul><li><p>Receive and log soil samples</p></li><li><p>Weigh and label samples</p></li><li><p>Ensure samples meet lab specifications</p></li><li><p>Follow instructions</p></li></ul><p><strong>Benefits Offered for Soil Sample Preparation:</strong></p><ul><li><p>Flexible scheduling</p></li><li><p>Competitive pay</p></li><li><p>Work-life balance</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #KearneyJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a> or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=91ee4a3c-a2ee-4595-a869-2946116d4dbd\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Kearney\",\n                        \"zip\": \"68845\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Soil Sample Preparation\",\n                    \"id\": \"91ee4a3c-a2ee-4595-a869-2946116d4dbd\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17.50 / hour\",\n                    \"description\": \"<p>Do you thrive working with a team, enjoy the fabrication process and are looking for a full-time position? Essential Personnel is seeking a hard-working candidate to fill a Fabricator position at a company southwest of the Kearney area. An ideal candidate should enjoy working with tools, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Fabricator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Able to read instructions</p></li><li><p>Hard worker</p></li><li><p>Possess excellent time-management skills</p></li></ul><p><strong>Responsibilities for Fabricator:</strong></p><ul><li><p>Review work orders</p></li><li><p>Fabricate parts</p></li><li><p>Communicate with supervisor</p></li><li><p>General clean-up</p></li></ul><p><strong>Benefits for Fabricator:</strong></p><ul><li><p>401(k) Matching</p></li><li><p>Life Insurance</p></li><li><p>Medical Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Tuition Reimbursement</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday bonus for eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>Vision Insurance</p></li></ul><h4>Additional Info:</h4><p>Interested candidates, call immediately at (308) 233-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:kearney@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Kearney Branch\\\">kearney@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDKB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=0358b895-7f47-47bd-b7ca-614b8806c25a\",\n                    \"rep_user\": {\n                        \"email\": \"Kearney@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Kearney\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Holdrege\",\n                        \"zip\": \"68949\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Fabricator\",\n                    \"id\": \"0358b895-7f47-47bd-b7ca-614b8806c25a\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$23 / hour\",\n                    \"description\": \"<p>Do you enjoy working in a warehouse setting? Essential Personnel is seeking an enthusiastic candidate to fill a Forklift Operator position at a company in York. Candidates must have previous forklift experience. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Forklift Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Strong regard for safety</p></li><li><p>Can work at a fast pace</p></li><li><p>Past forklift experience</p></li></ul><p><strong>Responsibilities for Forklift Operator:</strong></p><ul><li><p>Operate forklift</p></li><li><p>Sort Inventory</p></li><li><p>Label product</p></li><li><p>General cleanup</p></li></ul><p><strong>Benefits Offered for Forklift Operator:</strong></p><ul><li><p>Flexible scheduling</p></li><li><p>Possible overtime</p></li><li><p>Provided PPE</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=0d7c9389-fb84-4ea1-9c28-6d4ac2f197a8\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"York \",\n                        \"zip\": \"68647\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Forklift Operator\",\n                    \"id\": \"0d7c9389-fb84-4ea1-9c28-6d4ac2f197a8\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$16.50 / hour\",\n                    \"description\": \"<p>Are you looking for a change in career? Essential Personnel is seeking an enthusiastic candidate to fill a General Laborer position at a company near Grand Island. Candidates will be trained upon hire. An ideal candidate should enjoy working with others, be able to keep a steady pace, and have a great attendance record.</p><p><strong>Requirements for General Laborer:</strong></p><ul><li><p>Able to well with others</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for General Laborer:</strong></p><ul><li><p>Breaking apart glass</p></li><li><p>Sorting glass</p></li><li><p>Working with insulation</p></li><li><p>General clean up.</p></li></ul><p><strong>Benefits offered for General Laborer:</strong></p><ul><li><p>Health Insurance</p></li><li><p>401k</p></li><li><p>Holiday Pay</p></li><li><p>Year end bonus</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=f6e1b7c9-68b3-4120-8aa8-20a032ff779e\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"General Laborer\",\n                    \"id\": \"f6e1b7c9-68b3-4120-8aa8-20a032ff779e\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.50+ / hour\",\n                    \"description\": \"<p>Great opportunity in a warehouse setting for those who are looking for a change in pace! Essential Personnel is currently filling a Full Time Monday-Thursday Material Handler position for an outstanding company in Grand Island! Ideal candidates should have at least six months of warehouse experience and prior forklift operating work history. Candidates should be able to work independently and have a great attendance record.</p><p><strong>Requirements for Material Handler:</strong></p><ul><li><p>Able to work independently</p></li><li><p>4 years of warehouse experience</p></li><li><p>solid work history</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Material Handler:</strong></p><ul><li><p>Filling and assembling orders</p></li><li><p>General clean-up</p></li><li><p>Forklift</p></li><li><p>Basic math</p></li><li><p>Able to read tape measure</p></li></ul><p><strong>Benefits Offered for Material Handler:</strong></p><ul><li><p>Matching 401K</p></li><li><p>Health Insurance</p></li><li><p>Paid Training</p></li><li><p>Vision, Dental, STD, LTD</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h5>Additional Info:</h5><p>Interested candidates, call immediately at (308)381-4400, submit your resume by clicking on the following link: http://www.essentialpersonnel.com/submit-resume, or click the apply button to complete our application. Email your resume to grandisland@essentialpersonnel.com</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=3f7d2220-9bbf-4e96-8474-60eaf1480465\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Material Handler \",\n                    \"id\": \"3f7d2220-9bbf-4e96-8474-60eaf1480465\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$17-18 / hour\",\n                    \"description\": \"<p>Do you enjoy working in a warehouse setting? Essential Personnel is seeking an enthusiastic candidate to fill a Forklift Operator position at a company in York. Candidates must have previous forklift experience. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Forklift Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Strong regard for safety</p></li><li><p>Can work at a fast pace</p></li><li><p>Past forklift experience</p></li></ul><p><strong>Responsibilities for Forklift Operator:</strong></p><ul><li><p>Operate forklift</p></li><li><p>Sort Inventory</p></li><li><p>Label product</p></li><li><p>General cleanup</p></li></ul><p><strong>Benefits Offered for Forklift Operator:</strong></p><ul><li><p>Flexible scheduling</p></li><li><p>Possible overtime</p></li><li><p>Provided PPE</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=ab4e75a2-59ba-461b-bae5-084dbe4a844a\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"York \",\n                        \"zip\": \"68647\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Forklift Operator\",\n                    \"id\": \"ab4e75a2-59ba-461b-bae5-084dbe4a844a\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Warehouse\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ DOE / hour\",\n                    \"description\": \"<p>Do you enjoy working with people and looking for a full time clerical position? Essential Personnel is seeking an enthusiastic candidate to fill an Office Administrator position at a company in the Grand Island area. Candidates should have at least six months of clerical experience. An ideal candidate should enjoy working with the public, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Office Administrator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Pays attention to details</p></li><li><p>Can work at a fast pace</p></li><li><p>Customer service</p></li></ul><p><strong>Responsibilities for Office Administrator:</strong></p><ul><li><p>Accounts payable</p></li><li><p>Accounts receivable</p></li><li><p>Building reports</p></li><li><p>Solving discrepancies for customers</p></li><li><p>Customer service</p></li></ul><p><strong>Benefits Offered for Office Administrator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Paid Holidays</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=9b57009c-1d57-4a24-ad49-d061f7847aeb\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Office Administrator\",\n                    \"id\": \"9b57009c-1d57-4a24-ad49-d061f7847aeb\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$16-17.50 / hour\",\n                    \"description\": \"<p>Do you enjoy helping and working with others? Essential Personnel is filling a Direct Support Professional position at a company in Grand Island. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Direct Support Professional:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Reliability</p></li><li><p>Proficiency with Microsoft Office</p></li><li><p>Excellent communication skills</p></li></ul><p><strong>Responsibilities for Direct Support Professional:</strong></p><ul><li><p>Program Planning</p></li><li><p>Provide support and assistance to clients</p></li><li><p>Maintain documentation and records</p></li><li><p>Maintain standards of safety</p></li></ul><p><strong>Benefits Offered for Direct Support Professional:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=1657d9b6-b550-4236-bdc1-ed92bfbf5bde\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hastings\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Direct Support Professional\",\n                    \"id\": \"1657d9b6-b550-4236-bdc1-ed92bfbf5bde\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$20 - $25 / hour\",\n                    \"description\": \"<p>Are you looking for a full time machine operating position? Essential Personnel is seeking a candidate to fill a full time Stamp Press Operator position at a company in Grand Island. Candidates must have at least 1 year of CNC machine operating and previous Stamp Press experience. An ideal candidate should be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Stamp Press Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Previous CNC and Stamp Press Experience</p></li><li><p>Basic computer and math skills </p></li><li><p>Experience using Calipers, height gauges, and tape measures </p></li></ul><p><strong>Responsibilities for Stamp Press operator:</strong></p><ul><li><p>Operating Stamp press machine </p></li><li><p>Reading blueprints</p></li><li><p>Load and unload machines with raw material</p></li><li><p>Machine adjustment and maintenance </p></li><li><p>QA on product</p></li></ul><p><strong>Benefits Offered for Stamp Press Operator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Attendance Awards</p></li><li><p>Medical, Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=c1a43541-3052-4d1c-a796-57c09b1fb562\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Stamp Press Operator\",\n                    \"id\": \"c1a43541-3052-4d1c-a796-57c09b1fb562\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17 / hour\",\n                    \"description\": \"<p>Do you have a passion for cooking and serving others? Essential personnel is looking for an enthusiastic candidate to fill a Kitchen manager role in Grand Island! The ideal candidate for this position is someone who is looking for a role where they can grow and serve others while doing it! Candidates must have prior cooking experience strong time management skills!  </p><p><strong>Requirements for Kitchen Manager:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Cooking experience</p></li></ul><p><strong>Responsibilities for Kitchen Manager:</strong></p><ul><li><p>General management of kitchen operations and supply </p></li><li><p>Assist with supply deliveries and inventory</p></li><li><p>Cooking all meals</p></li><li><p>Prep work</p></li><li><p>Serving meals</p></li></ul><p><strong>Benefits Offered for Kitchen Manager:</strong></p><ul><li><p>Health Insurance</p></li><li><p>Vision</p></li><li><p>Dental</p></li><li><p>PTO</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=3cd2956e-5a8f-4b60-aa8a-69a923693a46\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Kitchen Manager\",\n                    \"id\": \"3cd2956e-5a8f-4b60-aa8a-69a923693a46\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$40,000+DOE / hour\",\n                    \"description\": \"<p>Are you a truck driver that enjoys time behind the wheel? Essential Personnel is filling an Over the Road-Truck Driver position at a company in Hastings. Preferred candidates will have a Class A CDL with a minimum of 2 years' driving experience. An ideal candidate will have a clean driving record, and be able to travel to any state required for the position.</p><p><strong>Requirements for Over the Road-Truck Driver:</strong></p><ul><li><p>Up-to-date DOT physical</p></li><li><p>Superior attendance record</p></li><li><p>Clean driving record</p></li><li><p>Drives truck to each location in a safe and timely manor</p></li><li><p>Inspects truck for defects before and after trips, and submits truck reports</p></li><li><p>Assists workers in unloading of the truck</p></li><li><p>Tie down and tarp loads as require</p></li></ul><p><strong>Responsibilities for Over the Road-Truck Driver:</strong></p><ul><li><p>Drives gasoline or diesel power tractor trailer combination to transport products</p></li><li><p>Materials may be in liquid, loose, or packaged form during each trip</p></li><li><p>Reports to the company dispatcher</p></li><li><p>Drives safely</p></li></ul><p><strong>Benefits Offered for Over the Road-Truck Driver:</strong></p><ul><li><p>Health, Vision, Dental insurance</p></li><li><p>Short/Long term disability</p></li><li><p>Paid Training</p></li><li><p>PTO after rolled over</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p></li></ul><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=7a8dd895-aa82-4971-907b-6f2fc8a985cb\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hastings\",\n                        \"zip\": \"68901\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Truck Driver-Over the Road\",\n                    \"id\": \"7a8dd895-aa82-4971-907b-6f2fc8a985cb\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$17-$18 / hour\",\n                    \"description\": \"<p>Do you enjoy cooking and working directly with people? Essential Personnel is seeking an amazing candidate to fill a Cook position at a company in Grand Island. Candidates must have at least one year of cooking experience. An ideal candidate should enjoy working with the public, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Cook:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Cooking experience </p></li></ul><p><strong>Responsibilities for Cook:</strong></p><ul><li><p>Follow recipes </p></li><li><p>Provide personalized meals</p></li><li><p>Light cleaning duties</p></li><li><p>Assist with supply deliveries</p></li><li><p>Cooking meals </p></li><li><p>Stocking</p></li></ul><p><strong>Benefits Offered for Cook:</strong></p><ul><li><p>Wellness program</p></li><li><p>PTO </p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e71d6a25-04c4-4d6f-8448-e43c6c7c0b6f\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Cook\",\n                    \"id\": \"e71d6a25-04c4-4d6f-8448-e43c6c7c0b6f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ DOE / hour\",\n                    \"description\": \"<p>Are you looking for a full time bookkeeping position? Essential Personnel is seeking an enthusiastic candidate to fill a Bookkeeping position at a company in Grand Island. Candidates must have bookkeeping experience, be able to work independently, and have a great attendance record!</p><p><strong>Requirements for Bookkeeper:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Bookkeeping</p></li></ul><p><strong>Responsibilities for Bookkeeper:</strong></p><ul><li><p>Accounts Receivable</p></li><li><p>Purchase Orders</p></li><li><p>Payables</p></li><li><p>Quickbooks</p></li></ul><p><strong>Benefits for Bookkeeper:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO</p></li><li><p>Paid training</p></li><li><p>Great work environment</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentionalPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=a8b634c3-d8f2-46f5-bc4d-cac5b6228186\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Bookkeeper\",\n                    \"id\": \"a8b634c3-d8f2-46f5-bc4d-cac5b6228186\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Accounting\"\n                },\n                {\n                    \"pay_rate\": \"$16.00 / hour\",\n                    \"description\": \"<p>Do you have an eye for detail and cleanliness? This company in Hastings is seeking a full-time position for a Restoration Technician. Applicants must have a strong work ethic, have a great attendance record, and be enthusiastic about what they do.</p><p><strong>Requirements for Restoration Tech:</strong></p><ul><li><p>Able to work as a team</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Time efficient</p></li></ul><p><strong>Responsibilities for Restoration Tech:</strong></p><ul><li><p>Cleaning/restoring designated areas</p></li><li><p>Removal of debris</p></li><li><p>Ensure quality of site after cleaning</p></li><li><p>Follow safety regulations</p></li></ul><p><strong>Benefits Offered for Restoration Tech:</strong></p><ul><li><p>Monthly bonuses of up to $500 over a 90 day period</p></li><li><p>Paid training</p></li><li><p>Extra incentive pay for PPE</p></li><li><p>On-call incentive after 90 days</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=dfb1c846-5034-41f2-b576-d46b0bfcd665\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Restoration Tech\",\n                    \"id\": \"dfb1c846-5034-41f2-b576-d46b0bfcd665\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Construction\"\n                },\n                {\n                    \"pay_rate\": \"$20.00 + / hour\",\n                    \"description\": \"<p>Are you looking for work with a great manufacturing company? Essential Personnel is filling a CNC Machine Operator position at a company in the Hastings area. An ideal candidate should be able to follow instructions, work independently, and have a great attendance record.</p><p><strong>Requirements for CNC Machine Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Follow instructions</p></li><li><p>Previous manufacturing experience</p></li></ul><p><strong>Responsibilities for CNC Machine Operator:</strong></p><ul><li><p>Operation of a CNC machine</p></li><li><p>Ability to read measuring devices such as scales and calipers</p></li><li><p>Must be able to troubleshoot</p></li><li><p>Must be able to read blueprints</p></li><li><p>Loading/unlading machines</p></li></ul><p><strong>Benefits Offered for CNC Machine Operator:</strong></p><ul><li><p>Medical/Dental/Vision</p></li><li><p>PTO</p></li><li><p>401(k) savings plan</p></li><li><p>Flexible Spending Account</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=b8b66381-955b-4d9f-8910-85e231c2da5e\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hastings\",\n                        \"zip\": \"68901\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"CNC Machine Operator\",\n                    \"id\": \"b8b66381-955b-4d9f-8910-85e231c2da5e\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$18.47/hr / hour\",\n                    \"description\": \"<p>Are you passionate about making a difference in lives of students with special needs? If so, we have an exciting opportunity for you! Our school district is seeking a Substitute Special Education Paraeducator to assist students with daily tasks both in and out of the classroom. The ideal candidate should be compassionate, patient, and dedicated to helping others.</p><p><strong>Requirements for Substitute Special Education Para:</strong></p><ul><li><p>Good with people</p></li><li><p>Wanting to make a difference</p></li><li><p>Helping others with daily tasks in and out of the classroom</p></li><li><p>Flexible</p></li><li><p>Foster a positive and inclusive learning environment</p></li><li><p>Collaborate with other staff members to meet students' individual needs</p></li></ul><p><strong>Responsibilities for Substitute Special Education Para:</strong></p><ul><li><p>Assisting students with special needs in daily tasks</p></li><li><p>Support classroom teachers in implementing educational plans</p></li><li><p>Provide emotional support to students</p></li></ul><p><strong>Benefits Offered for Substitute Special Education Para:</strong></p><ul><li><p>Competitive hourly rate</p></li><li><p>Flexible scheduling</p></li><li><p>Professional development opportunities</p></li><li><p>Opportunity to make a difference in students' lives</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=c3ff1f9f-f94a-44cb-a848-1859054027bd\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Substitute Special Education Para\",\n                    \"id\": \"c3ff1f9f-f94a-44cb-a848-1859054027bd\",\n                    \"type\": \"Part Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$17.25 / hour\",\n                    \"description\": \"<p>Do you enjoy warehouse work? Essential Personnel is seeking an enthusiastic candidate to fill a packaging & shipping position at a company in Hampton. Candidates must be able to work in a fast pace and work independently. An ideal candidate should enjoy working in a warehouse setting and have a great attendance record</p><p><strong>Requirements for Packaging & Shipping:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Fast learner</p></li></ul><p><strong>Responsibilities for Packaging & Shipping:</strong></p><ul><li><p>Package boxes</p></li><li><p>Label boxes</p></li><li><p>Stack boxes</p></li><li><p>Work in warehouse</p></li><li><p>Load trucks</p></li></ul><p><strong>Company Benefits for Packaging & Shipping:</strong></p><ul><li><p>Paid Holidays</p></li><li><p>Accruing PTO</p></li><li><p>Great Work Environment</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=3bf51928-3fc0-490a-8be7-37c0b1a4a1c8\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Hampton\",\n                        \"zip\": \"68843\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Packaging & Shipping\",\n                    \"id\": \"3bf51928-3fc0-490a-8be7-37c0b1a4a1c8\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+  / hour\",\n                    \"description\": \"<p>Do you enjoy working with machines? Essential Personnel has full-time Machine Operator positions available in Grand Island. Machine Operating experience is beneficial but not required. An ideal candidate should enjoy working with metal materials, be able to work independently, and have a strong regard for safety.</p><p><strong>Requirements for Machine Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li></ul><p><strong>Responsibilities for Machine Operator:</strong></p><ul><li><p>Perform routine machine maintenance</p></li><li><p>Responsible for overall quality and quantity of work</p></li><li><p>Perform all duties in an efficient manner</p></li><li><p>Follow all safety procedures</p></li></ul><p><strong>Benefits Offered for Machine Operator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=ffb75d9b-c6cd-42a9-9f63-40e46e28acf9\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Machine Operator\",\n                    \"id\": \"ffb75d9b-c6cd-42a9-9f63-40e46e28acf9\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00+ / hour\",\n                    \"description\": \"<p>Do you enjoy working with machines and are looking for a long-term career? Essential Personnel is seeking a skilled candidate to fill a Maintenance Technician position at a company in Grand Island. Candidates must have 3-5 years of some technical experience. An ideal candidate should enjoy working with machinery, have some welding experience, and have a great attendance record.</p><p><strong>Requirements for Maintenance Technician:</strong></p><ul><li><p>3-5 experience or technical education</p></li><li><p>Superior attendance record</p></li><li><p>Ability to read blueprints, schematics, etc.</p></li><li><p>Can work at a fast pace</p></li><li><p>Construction knowledge is a plus</p></li></ul><p><strong>Responsibilities for Maintenance Technician:</strong></p><ul><li><p>Install, relocate, or remove new and existing equip.</p></li><li><p>Make repairs and perform preventive maintenance on equip.</p></li><li><p>Wire electrical circuits and controls</p></li><li><p>Building repairs or reconstruction</p></li></ul><p><strong>Benefits Offered for a Maintenance Technician:</strong></p><ul><li><p>Medical/Vision/Dental/STD/LTD</p></li><li><p>PTO</p></li><li><p>Matching 401(k)</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=b8d5d2af-da75-47c8-a4f3-132f2ce5b07b\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Maintenance Technician\",\n                    \"id\": \"b8d5d2af-da75-47c8-a4f3-132f2ce5b07b\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$20+ / hour\",\n                    \"description\": \"<p>Are you a skilled mechanic with with at least six months of mechanical experience. Essential Personnel is now taking applications for a skilled Service Technician for a trailer company in the Grand Island area. An ideal candidate will be able to work independently, be a self starter, and have a great attendance record.</p><p><strong>Requirements for Service Technician:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Mechanical skill and knowledge</p></li><li><p>Can work at a fast pace</p></li><li><p>Complete daily goals</p></li></ul><p><strong>Responsibilities for Service Technician:</strong></p><ul><li><p>Tire/ Trailer repairs</p></li><li><p>Complete preventative maintenance checks</p></li><li><p>Replacing and testing lights</p></li><li><p>Diagnosing problems on vehicles and trailers</p></li><li><p>Selling trailers</p></li></ul><p><strong>Benefits Offered for Service Technician:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel for Service Technician:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=d3f92e17-c28e-46fd-992b-a7c6b3addfc8\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Service Technician\",\n                    \"id\": \"d3f92e17-c28e-46fd-992b-a7c6b3addfc8\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$16.00+ / hour\",\n                    \"description\": \"<p>Are you looking for a fast paced Full Time position? Essential Personnel is seeking candidates filling an Insert Supervisor position at a company in Grand Island. Candidates must be flexible with shifts. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Insert Supervisor:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Managing Workflow</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Willingness to learn</p></li></ul><p><strong>Responsibilities for Insert Supervisor:</strong></p><ul><li><p>Operate Insert Machine</p></li><li><p>Prepare machines for production</p></li><li><p>Stack product</p></li><li><p>Supervise Employees</p></li></ul><p><strong>Benefits of Insert Supervisor:</strong></p><ul><li><p>PTO</p></li><li><p>Health insurance</p></li><li><p>Dental, Vision, Life and Disability insurance</p></li><li><p>7 paid holidays throughout year. If you work the holiday, time and a half pay plus 8 hours PTO to take off within 45 days of holiday</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=946c2cb3-c04b-44cd-9e0f-f865381e41c9\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68802\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Supervisor\",\n                    \"id\": \"946c2cb3-c04b-44cd-9e0f-f865381e41c9\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$17 / hour\",\n                    \"description\": \"<p>Are you looking for a machine operator job? Essential Personnel is seeking candidates filling a Press Operator position at a company in Grand Island. Candidates must be able to work days and nights. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Press Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Able to follow instructions</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Willingness to learn</p></li></ul><p><strong>Responsibilities for Press Operator:</strong></p><ul><li><p>Operate printing machine</p></li><li><p>Prepare machines for productions</p></li><li><p>Change paper or ink</p></li><li><p>General clean up</p></li></ul><p><strong>Benefits of a Press Operator:</strong></p><ul><li><p>120 hours PTO and 40 hours sick leave</p></li><li><p>Health insurance</p></li><li><p>Dental, Vision, Life and Disability insurance</p></li><li><p>7 paid holidays throughout year. If you work the holiday, time and a half pay plus 8 hours PTO to take off within 45 days of holiday</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDGIB</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=5e5ac295-198a-496e-985b-256cd82cbb09\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68802\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Press Operator\",\n                    \"id\": \"5e5ac295-198a-496e-985b-256cd82cbb09\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00-$24.00 / hour\",\n                    \"description\": \"<p>Are you a mechanically inclined person, and love to use hand tools? A business in Alda, Nebraska is looking for a enthusiastic Sprinkler Installer to join their team! If you are a conscious worker committed to producing the kind of results their customers have come to expect over the years, this is the place for you! They offer a great work environment, ongoing training, and growth opportunities</p><p><strong>Requirements for Sprinkler Installer:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Quality orriented</p></li><li><p>Customer service</p></li><li><p>Able to adapt to differnt work enviornments</p></li></ul><p><strong>Responsibilities for Sprinkler Installer:</strong></p><ul><li><p>Help install various fire sprinkler systems</p></li><li><p>Sprinkler repair/maintenance</p></li><li><p>Use of various hand tools.</p></li><li><p>Cleaning duties around the work area</p></li></ul><p><strong>Benefits Offered for Sprinkler Installer:</strong></p><ul><li><p>Paid Training</p></li><li><p>Benefits upon rolling</p></li><li><p>Great work environment</p></li><li><p>Full time hours</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=2d46cc62-c44c-41f0-a4c0-c861ed0de876\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Alda\",\n                        \"zip\": \"68810\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Sprinkler Installer\",\n                    \"id\": \"2d46cc62-c44c-41f0-a4c0-c861ed0de876\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$22-30 / hour\",\n                    \"description\": \"<p>Do you have experience in the repair and installation of production/manufacturing equipment? Performing and assisting with maintenance and repairs of machines and line equipment. An ideal candidate should be able to work independently, have a great attendance record, and be a quick learner.</p><p><strong>Requirements for Maintenance Technician:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Basic computer experience</p></li><li><p>Knowledge of PLC's</p></li><li><p>Strong electrical background</p></li></ul><p><strong>Responsibilities for Maintenance Technician:</strong></p><ul><li><p>Maintain and troubleshoot equipment</p></li><li><p>Schedule and perform preventative maintenance</p></li><li><p>Complete maintenance work orders</p></li><li><p>Installation of wiring and machine tool re-location</p></li></ul><p><strong>Benefits Offered forMaintenance Technician:</strong></p><ul><li><p>Health Insurance</p></li><li><p>401(k) plan</p></li><li><p>7 paid holidays</p></li><li><p>Payroll savings plan</p></li><li><p>Payroll mutual fun investment option</p></li></ul><p><strong>While Working for Essential Personnel for Maintenance Technician:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=13068000-e63a-4b82-ad3a-b1ef995ef2d3\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68801\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Maintenance Technician\",\n                    \"id\": \"13068000-e63a-4b82-ad3a-b1ef995ef2d3\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$21 / hour\",\n                    \"description\": \"<p>Do you enjoy working in a warehouse setting? Essential Personnel is seeking an enthusiastic candidate to fill a Forklift Operator position at a company in York. Candidates must have previous forklift experience. An ideal candidate should be a quick learner, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Forklift Operator:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Strong regard for safety</p></li><li><p>Can work at a fast pace</p></li><li><p>Past forklift experience</p></li></ul><p><strong>Responsibilities for Forklift Operator:</strong></p><ul><li><p>Operate forklift</p></li><li><p>Sort Inventory</p></li><li><p>Label product</p></li><li><p>General cleanup</p></li></ul><p><strong>Benefits Offered for Forklift Operator:</strong></p><ul><li><p>Flexible scheduling</p></li><li><p>Possible overtime</p></li><li><p>Provided PPE</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-23\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=6c755a20-864e-47b3-b0b4-6e8ffa07ff57\",\n                    \"rep_user\": {\n                        \"email\": \"Grandisland@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Grand Island\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Doniphan\",\n                        \"zip\": \"68832\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Forklift Operator\",\n                    \"id\": \"6c755a20-864e-47b3-b0b4-6e8ffa07ff57\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Agriculture\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>We're hiring Receptionists for a local company in Fremont! Apply with Essential Personnel today to get your name in! Candidates with clerical experience are encouraged to apply but we're willing to train anyone with the right attitude! An ideal candidate should enjoy working with others, be a quick learner, and a self starter. We have part time and full time options available.</p><p><strong>Requirements for Receptionist:</strong></p><ul><li><p>Attention to detail</p></li><li><p>Work well in small groups</p></li><li><p>Computer literate</p></li><li><p>Customer service</p></li></ul><p><strong>Responsibilities for Receptionist:</strong></p><ul><li><p>Phone and email communication</p></li><li><p>Customer service</p></li><li><p>Scheduling appointments</p></li><li><p>Sorting mail</p></li></ul><p><strong>Benefits Offered for Receptionist:</strong></p><ul><li><p>Retirement Plan</p></li><li><p>Vacation</p></li><li><p>Health Insurance</p></li><li><p>Bonus</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #FremontJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><h5>Additional Info:</h5><p>Interested candidates, call immediately at (402) 727-8336, submit your resume by clicking on the following link:<a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:columbus@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Columbus Branch\\\">fremont@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=fcaef7d6-31ae-45ef-a8c4-1c20cf4074bd\",\n                    \"rep_user\": {\n                        \"email\": \"Fremont@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Fremont\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Receptionist\",\n                    \"id\": \"fcaef7d6-31ae-45ef-a8c4-1c20cf4074bd\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": [\n                        \"\"\n                    ],\n                    \"description\": \"<p>We are currently seeking Production Assembly workers for the production of cards and books. The ideal candidate will have experience in inspecting, operating machines, and assembling and binding books.<br><br>Requirements for Production Associate: <br>â\\u0080¢ Experience in bookbinding or similar production environment <br>â\\u0080¢ Ability to inspect finished products for quality <br>â\\u0080¢ Proficient in operating machinery <br>â\\u0080¢ Attention to detail <br>â\\u0080¢ Ability to work in a fast-paced environment <br><br>Responsibilities for Production Associate: <br>â\\u0080¢ Inspect finished products for quality <br>â\\u0080¢ Operate machinery to bind and assemble books <br>â\\u0080¢ Follow production schedules and meet deadlines <br>â\\u0080¢ Maintain a clean and organized work area <br>â\\u0080¢ Assist in other production tasks as needed <br><br>If you are a team player with a strong work ethic and a passion for production, we want to hear from you! Join our team and be a part of creating high-quality books for our customers.</p><p><strong>While Working For Essential Personnel:</strong></p><ul><li><p>Weekly Pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p>#Essential Personnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to norfolk@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=5adccd89-2dcd-44cd-a5a1-11a62fffef0f\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Norfolk\",\n                        \"zip\": \"68701\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Production\",\n                    \"id\": \"5adccd89-2dcd-44cd-a5a1-11a62fffef0f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$21.50 / hour\",\n                    \"description\": \"<p>Are you looking for a hands-on job in the agricultural industry? A local elevator is seeking dedicated individuals to join their team as Grain Laborers. As a Grain Laborer, you will be responsible for assisting with unloading trucks and maintaining the warehouse in an orderly manner. If you are a hardworking individual with a passion for agriculture, this position may be the perfect fit for you! Join our team and be a part of the essential work we do in the agricultural community.<br><br><strong>Requirements for Grain Labor:</strong></p><ul><li><p>Willingness to work in a fast-paced environment</p></li><li><p>Ability to follow safety protocols</p></li><li><p>Previous experience in a warehouse setting is a plus</p></li></ul><p><br><strong>Responsibilities for Grain Labor:</strong></p><ul><li><p>Unloading trucks carrying grain</p></li><li><p>Moving and stacking bags of grain</p></li><li><p>Performing basic housekeeping tasks in the warehouse</p></li><li><p>Adhering to safety guidelines and procedures <br></p></li></ul><p><strong>Benefits Offered for Grain Labor:</strong></p><ul><li><p>Competitive pay</p></li><li><p>Health insurance</p></li><li><p>Retirement benefits</p></li><li><p>Paid time off</p></li><li><p>Training and development opportunities</p></li></ul><p><strong>While Working For Essential Personnel:</strong></p><ul><li><p>Weekly Pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p>#Essential Personnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to norfolk@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=e5301e90-4991-4c26-a282-733be31cda5e\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Newman Grove\",\n                        \"zip\": \"68758\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Grain Labor\",\n                    \"id\": \"e5301e90-4991-4c26-a282-733be31cda5e\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$14.00 / hour\",\n                    \"description\": \"<p>Are you a customer service-oriented individual with excellent communication skills? If so, we have an exciting opportunity for you! We are seeking a dedicated Customer Service Representative. The ideal candidate will have a strong ability to assess customer needs, troubleshoot and resolve issues, keep accurate records, have experience with Excel and can follow communication guidelines.<br><strong><br>Requirements for Account Manager: </strong><br>Excellent communication skills <br>Strong problem-solving abilities <br>Ability to assess customer needs <br>Detail-oriented <br>Strong organizational skills <br><br><strong>Responsibilities for Account Manager: </strong><br>Assess customer needs <br>Troubleshoot and resolve issues <br>Keep accurate records <br>Follow communication guidelines <br><br>Benefits Offered for Account Manager:</p><p>Competitive salary <br>Health insurance <br>Retirement plan options <br>Paid time off <br>Professional development opportunities</p><p><strong>While Working For Essential Personnel:</strong></p><ul><li><p>Weekly Pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p></p><p>#Essential Personnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to norfolk@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=2ee00d0f-308f-4ccd-997e-26b8a3ca8f4a\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Norfolk\",\n                        \"zip\": \"68701\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Customer Service Representative\",\n                    \"id\": \"2ee00d0f-308f-4ccd-997e-26b8a3ca8f4a\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Administrative\"\n                },\n                {\n                    \"pay_rate\": \"$18.00 / hour\",\n                    \"description\": \"<p>Seeking a Warehouse Associate in the agriculture industry at a local elevator. The ideal candidate will have experience in agriculture, be able to load and unload semis, and perform general warehouse housekeeping duties. If you are a fast learner and proficient in basic math, we want to hear from you!<br><br><strong>Requirements for Warehouse Associate:</strong><br>â\\u0080¢ Experience in agriculture industry<br>â\\u0080¢ Ability to load and unload semis<br>â\\u0080¢ Proficient in basic math<br>â\\u0080¢ Fast learner<br><br><strong>Responsibilities for Warehouse Associate:</strong><br>â\\u0080¢ Load and unload semis<br>â\\u0080¢ Perform general warehouse housekeeping duties<br>â\\u0080¢ Assist with inventory management<br>â\\u0080¢ Operate forklifts and other warehouse equipment<br>â\\u0080¢ Follow safety protocols and guidelines<br><br><strong>Benefits Offered for Warehouse Associate:</strong><br>â\\u0080¢ Competitive pay<br>â\\u0080¢ Short term position<br>â\\u0080¢ Excellent opportunity to make extra money<br>â\\u0080¢ Training and development opportunities</p><p><strong>While Working For Essential Personnel:</strong></p><ul><li><p><span style=\\\"font-family: Georgia,Times,\\\"Times New Roman\\\",serif; font-size: 18px;\\\">Weekly Pay - direct deposit</span></p></li><li><p><span style=\\\"font-family: Georgia,Times,\\\"Times New Roman\\\",serif; font-size: 18px;\\\">Holiday Bonus paid to eligible employees</span></p></li><li><p><span style=\\\"font-family: Georgia,Times,\\\"Times New Roman\\\",serif; font-size: 18px;\\\">Health Insurance</span></p></li><li><p><span style=\\\"font-family: Georgia,Times,\\\"Times New Roman\\\",serif; font-size: 18px;\\\">Vision Insurance</span></p></li><li><p><span style=\\\"font-family: Georgia,Times,\\\"Times New Roman\\\",serif; font-size: 18px;\\\">Dental Insurance</span></p></li></ul><p>#Essential Personnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to norfolk@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=1c571c3a-8c59-4a3f-b102-2e07540b410f\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"WISNER\",\n                        \"zip\": \"68791\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Warehouse\",\n                    \"id\": \"1c571c3a-8c59-4a3f-b102-2e07540b410f\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$28.00 / hour\",\n                    \"description\": \"<p>Essential Personnel is seeking food production Maintenance Technicians to play a crucial role in preventative, routine, and emergency maintenance of buildings and equipment to include plumbing, HVAC, boiler systems, compressed air, and ammonia refrigeration systems for a Norfolk production company. <br><span style=\\\"font-size: 18px;\\\"><br></span><strong><span style=\\\"font-size: 18px;\\\">Requirements for Food Production Maintenance Technician:</span></strong></p><ul><li><p>Previous experience in maintenance in an industrial setting.</p></li><li><p>Knowledge of pluming, HVAC, boiler systems, compressed air, and ammonia refrigeration.</p></li><li><p>Ability to follow maintenance logs and follow all LOTO, PRCS and all safety procedures.</p></li><li><p>Strong attention to detail</p></li><li><p>Good communication skills</p></li></ul><p><strong>Responsibilities for Food Production Sanitation Operator:</strong></p><ul><li><p>Monitor Pressures of flow rates of equipment</p></li><li><p>Monitor boiler performance, air and water quality</p></li><li><p>Perform general maintenance of the facility, welding-sanitary and structural.</p></li><li><p>Troubleshoot production equipment</p></li><li><p>Certification to operate Forklift</p></li></ul><p><strong>Benefits Offered for Maintenance Technician:</strong></p><ul style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: rgb(255, 255, 255); margin-top: 0px; margin-bottom: 12px; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\\\"><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Health Insurance</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Dental Insurance</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">STD</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">LTD</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Vision</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Life Insurance</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Matching 401k</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">PTO</p></li></ul><p><strong>While Working For Essential Personnel:</strong></p><ul style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: rgb(255, 255, 255); margin-top: 0px; margin-bottom: 12px; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\\\"><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Weekly Pay - direct deposit</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Holiday Bonus paid to eligible employees</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Health Insurance</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Vision Insurance</p></li><li style=\\\"box-sizing: border-box; margin-block: 0px; border: 0px; outline: 0px; font-size: 18px; vertical-align: baseline; background: transparent;\\\"><p style=\\\"box-sizing: border-box; margin-block: 0px 0.9rem; margin: 0px 0px 12px;\\\">Dental Insurance</p></li></ul><p>Additional Info:</p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: https://tinyurl.com/EssentialPersonnelApplication, or click the apply button to complete our application. Email your resume to norfolk@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placements and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=1b5ca411-3116-4362-8626-8368c401d952\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Norfolk\",\n                        \"zip\": \"68701\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Maintenance Technician\",\n                    \"id\": \"1b5ca411-3116-4362-8626-8368c401d952\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Light Industrial\"\n                },\n                {\n                    \"pay_rate\": \"$18.00 / hour\",\n                    \"description\": \"<p>Essential Personnel is hiring for a Assembly Technician in a manufacturing business in Osmond Nebraska.  Experience with is reading blue prints and assembly are a must as this position works in the assembly of agricultural machinery. Past experience with hand tools, wiring of components, basic electrical troubleshooting is preferred.</p><p><strong>Requirements for Assembly Technician:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p> Experience with Blueprints and Assembly</p></li></ul><p><strong>Responsibilities for Assembly Technician:</strong></p><ul><li><p>Reading and following Blueprints.</p></li><li><p>Use of hand tools and power tools for assembly of agricultural equipment.</p></li><li><p>Following electrical schematics to assemble electrical components</p></li><li><p>Perform operational testing of equipment</p></li><li><p>Clean maintain work areas</p></li></ul><p><strong>Benefits Offered for Assembly Technician:</strong></p><ul><li><p>Day Shift position</p></li><li><p>4 day work week</p></li><li><p>Family oriented company</p></li></ul><p><strong>While Working for Essential Personnel</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #NorfolkJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (402) 379-5200, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">norfolk@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDNB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=aab922fa-3584-4c6f-af68-614a9296bbd5\",\n                    \"rep_user\": {\n                        \"email\": \"Norfolk@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Norfolk\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Norfolk\",\n                        \"zip\": \"68701\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Assembly Technician\",\n                    \"id\": \"aab922fa-3584-4c6f-af68-614a9296bbd5\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$DOE / hour\",\n                    \"description\": \"<p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">We are a leading background screening company seeking a dedicated Administrative Assistant to support our operations.Â  If you're eager to learn and willing to take on a variety of tasks, we encourage you to apply.Â Â </span></p><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">We offer an excellent compensation package that includes base pay, commission, and potential for bonuses! Benefits such as health insurance, dental insurance, STD, LTD, life insurance, vision coverage, matching 401k and PTO is offered.</span></p><p><strong><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Requirements for Administrative Assistant:</span></strong></p><ul><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Be driven</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Well spoken</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Customer focused</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Task oriented</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Data entry</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Excellent attention to detail</span></p></li></ul><p><strong><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Responsibilities for Administrative Assistant:</span></strong></p><ul><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Answer client emails</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Complete employment verifications</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Data entry</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Review background screens.</span></p></li></ul><p><strong><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Benefits Offered for Administrative Assistant:</span></strong></p><ul><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Health insurance</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Dental insurance</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">STD</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">LTD</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Vision</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Life insurance</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">Matching 401 k</span></p></li><li><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">PTO</span></p></li></ul><p><span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\">#NowHiring #NebraskaJobs #Staffing</span></p><p>Interested candidates, call immediately at (308) 381-4400 or email your resume to dhill@essentialscreens.com.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=fd4c1e11-8b72-4f95-bcd9-4c35ce2585a3\",\n                    \"rep_user\": {\n                        \"email\": \"dhill@essentialscreens.com\",\n                        \"id\": null,\n                        \"first_name\": \"Dawn\",\n                        \"last_name\": \"Hill\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Administrative Assistant\",\n                    \"id\": \"fd4c1e11-8b72-4f95-bcd9-4c35ce2585a3\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Clerical\"\n                },\n                {\n                    \"pay_rate\": \"$DOE / hour\",\n                    \"description\": \"<p>Do you thrive on providing exceptional customer service?  Are you a detail oriented problem-solver with a knack for communication?  Join our amazing team at Essential Screens, one of the Midwest's fastest-growing companies!  In this role, you'll be the hero behind the scenes ensuring a smooth and efficient experience for our clients.</p><p>We offer an excellent compensation package that includes base pay, commission and potential for bonuses! Benefits such as health insurance, dental insurance, STD, LTD, life insurance, vision, matching 401K and PTO is offered.</p><p><strong>Requirements for Customer Service Specialist:</strong></p><ul><li><p>Strong computer skills and a knack for navigating software programs.</p></li><li><p>Excellent phone and communication skills, both written and verbal.</p></li><li><p>The ability to work independently while being a team player.</p></li><li><p>A goal-oriented mindset with a commitment to accuracy.</p></li><li><p>A passion for providing excellent customer service.</p></li></ul><p><strong>Responsibilities for Customer Service Specialist:</strong></p><ul><li><p>Be a champion for accuracy.  Review, verify and enter records with a keen eye for detail.</p></li><li><p>Become a communication powerhouse: respond to emails and phone inquiries promptly, keeping clients informed and satisfied.</p></li><li><p>Master the phone: Use your excellent phone skills to conduct employment verifications with professionalism and clarity.</p></li><li><p>Meet daily, weekly and monthly expectations.</p></li></ul><p>Interested candidates, call immediately at (308) 381-4400 or email your resume to dhill@essentialscreens.com.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=3339eb53-ec84-4a78-903a-4b91c8d144fb\",\n                    \"rep_user\": {\n                        \"email\": \"dhill@essentialscreens.com\",\n                        \"id\": null,\n                        \"first_name\": \"Dawn\",\n                        \"last_name\": \"Hill\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Customer Service Specialist\",\n                    \"id\": \"3339eb53-ec84-4a78-903a-4b91c8d144fb\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Clerical\"\n                },\n                {\n                    \"pay_rate\": \"$Base + Commission / hour\",\n                    \"description\": \"<p>Launch your workforce solutions career and help people land in-demand jobs!</p><p>This is your chance to join a rewarding, fast-paced work environment where you make a difference. Essential Personnel is seeking a dynamic and energetic Spanish/English Bilingual Recruiter to join our Fremont team.</p><p>Are you ready for a career shift? Do you thrive on connecting people with the perfect job opportunities?</p><p>We offer a fast-paced and rewarding work environment.</p><p>The most successful individuals in this role will be confident, customer-focused, and take pride in both personal and team achievements.</p><p>Sound like a great fit? Apply today!</p><p>We offer an excellent compensation package that includes base pay, commission and potential for bonuses! Benefits such as health insurance, dental insurance, STD, LTD, life insurance, vision, matching 401K and PTO is offered.</p><p><strong>Requirements for Bilingual Customer Service Representative:</strong></p><ul><li><p>Be self-motivated</p></li><li><p>Spanish/English bilingual</p></li><li><p>Thrive on competition and building rapport</p></li><li><p>Able to work at a fast pace</p></li><li><p>Have an entrepreneurship mentality</p></li><li><p>Prefer 2 years of customer service experience</p></li></ul><p><strong>Responsibilities for Bilingual Customer Service Representative :</strong></p><ul><li><p>Conduct in-person interviews</p></li><li><p>Engage prospect clients</p></li><li><p>Provide solutions for client struggles</p></li><li><p>Develop relationships with client hiring managers</p></li><li><p>Conduct due diligence research for sales opportunities</p></li><li><p>Manage base of candidates and applicants, including immediate follow up</p></li><li><p>Meet and/or exceed set goals</p></li></ul><p>Interested candidates, call immediately at (402) 727-8336 or email your resume to jslama@essentialpersonnel.com</p><p></p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekers unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search. Our focus is on matching people with positions that are rewarding, well paying and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>INDFB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=20e674d1-5d2f-4c53-9824-1bf37f7c0bf3\",\n                    \"rep_user\": {\n                        \"email\": \"jslama@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Jessica\",\n                        \"last_name\": \"Slama\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Fremont\",\n                        \"zip\": \"68025\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Bilingual Customer Service Representative\",\n                    \"id\": \"20e674d1-5d2f-4c53-9824-1bf37f7c0bf3\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Clerical\"\n                },\n                {\n                    \"pay_rate\": \"$45,000 to $60,000 / hour\",\n                    \"description\": \"<p>Essential Personnel is adding to our Columbus team and we're looking for self starters who enjoy working with the public, solving problems, and making connections in our community. Candidates must be driven, have the ability to work at a face pace and love working with people. Start your career in the workforce solutions industry by sending us your resume!</p><p>We offer an excellent compensation package that includes base pay, commission and potential for bonuses!</p><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Requirements for Account Manager:</span></strong></p><ul><li><p>Be self-motivated</p></li><li><p>Superior attendance record</p></li><li><p>Computer literate</p></li><li><p>Be well-spoken</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Responsibilities for Account Manager:</span></strong></p><ul><li><p>Match job seekers to client job opportunities</p></li><li><p>Manage base of candidates and applicants, including immediate follow up</p></li><li><p>Meet and exceed set goals</p></li><li><p>Conduct in-person interviews</p></li><li><p>Provide solutions for client and applicant struggles</p></li></ul><p><strong><span style=\\\"font-family: \\\"Aptos\\\",sans-serif;\\\">Benefits Offered for Manager:</span></strong></p><ul><li><p>Health Insurance</p></li><li><p>Dental Insurance</p></li><li><p>STD</p></li><li><p>LTD</p></li><li><p>Vision</p></li><li><p>Life Insurance</p></li><li><p>Matching 401k</p></li><li><p>PTO</p></li></ul><p>#NowHiring #NebraskaJobs #Staffing</p><p>Interested candidates, call immediately at (402) 562-7823 or email your resume to jslama@essentialpersonnel.com.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills, and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDCB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=88cfeb70-4921-4667-a521-f773771219bf\",\n                    \"rep_user\": {\n                        \"email\": \"jslama@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Jessica\",\n                        \"last_name\": \"Slama\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Columbus\",\n                        \"zip\": \"68601\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Account Manager\",\n                    \"id\": \"88cfeb70-4921-4667-a521-f773771219bf\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Professional\"\n                },\n                {\n                    \"pay_rate\": \"$16.00-$22.00 / hour\",\n                    \"description\": \"<p>Do you enjoy working with a great team? Essential Personnel is seeking an enthusiastic candidate to fill an Office Lead position at a clinic in Grand Island. Candidates must have at least one year of office experience. An ideal candidate should enjoy working with the public, be able to work independently, and have a great attendance record.</p><p><strong>Requirements for Office Lead:</strong></p><ul><li><p>Able to work independently</p></li><li><p>Superior attendance record</p></li><li><p>Hard worker</p></li><li><p>Can work at a fast pace</p></li><li><p>Detail Orientated</p></li></ul><p><strong>Responsibilities for Office Lead:</strong></p><ul><li><p>Verifying insurance</p></li><li><p>Pre-Authorization for insurance</p></li><li><p>Collections</p></li><li><p>Medical Billing</p></li><li><p>Clerical duties</p></li></ul><p><strong>Benefits Offered for Office Lead:</strong></p><ul><li><p>10 Paid holidays - Including your Birthday</p></li><li><p>PTO after 1 year of being hired by client</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay- direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #GrandIslandJobs #NowHiring #NebraskaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (308) 381-4400, submit your resume by clicking on the following link: <a href=\\\"http://www.essentialpersonnel.com/submit-resume\\\" target=\\\"_blank\\\" title=\\\"Essential Personnel Submit Resume\\\">http://www.essentialpersonnel.com/submit-resume</a>, or click the apply button to complete our application. Email your resume to <a href=\\\"mailto:grandisland@essentialpersonnel.com\\\" target=\\\"_blank\\\" title=\\\"Email Resume to Grand Island Branch\\\">grandisland@essentialpersonnel.com</a>.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seekerâ\\u0080\\u0099s unique needs. We specialize in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity employer and affirmative action employer.</p><p>INDGIB</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-20\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=bc5f58bf-dda4-45aa-b63c-da71d0ebd95b\",\n                    \"rep_user\": {\n                        \"email\": \"ereyna@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Erika\",\n                        \"last_name\": \"Reyna\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Grand Island\",\n                        \"zip\": \"68803\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Nebraska\"\n                    },\n                    \"title\": \"Office Lead\",\n                    \"id\": \"bc5f58bf-dda4-45aa-b63c-da71d0ebd95b\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Professional\"\n                },\n                {\n                    \"pay_rate\": \"$16 / hour\",\n                    \"description\": \"<p>Are you looking for a new opportunity? <strong>Essential Personnel</strong> has <strong>IMMEDIATE </strong>openings for <strong>Forklift Operators</strong> in <strong>Spencer, IA</strong>. The ideal <strong>Forklift Operator</strong> will assist in loading & unloading shipments, stage orders, and work in a cold environment.</p><p><strong>Requirements for Forklift Operator:</strong></p><ul><li><p>6-month experience</p></li><li><p>Excellent hand-eye coordination</p></li><li><p>Good organizational skills</p></li><li><p>Detail oriented</p></li><li><p>Good Written and verbal communication</p></li></ul><p><strong>Responsibilities for Forklift Operator</strong></p><ul><li><p><strong><span style=\\\"font-weight: normal;\\\">Loading/unloading warehouse materials.</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Optimize loads to ensure efficient.</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Identify damage to product.</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Identify workplace safety hazards.</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Adhering to safety management standards</span></strong></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Adhering to production schedules</span></strong></p></li></ul><p><strong>Benefits Offered for Forklift Operator</strong>:</p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link: http://www.essentialpersonnel.com/submit-resume.com, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=6700a36c-d9a4-4b28-a7b6-f6292d86231e\",\n                    \"rep_user\": {\n                        \"email\": \"desmoines@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Des Moines\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Spencer\",\n                        \"zip\": \"51301\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Iowa\"\n                    },\n                    \"id\": \"6700a36c-d9a4-4b28-a7b6-f6292d86231e\",\n                    \"category\": \"Warehouse\",\n                    \"title\": \"Forklift Operator\"\n                },\n                {\n                    \"pay_rate\": \"$17 / hour\",\n                    \"description\": \"<p><strong>Essential Personnel</strong> is seeking an enthusiastic candidate to fill an <strong>Industrial Sewing Machine Operator </strong>position in<strong> Des Moines, IA</strong>. Ideal candidate will have knowledge of how to set up the sewing pattern/stitch as well as fabric to use to complete project based on client specifications.</p><p><strong>Requirements for Industrial Sewing Machine Operator:</strong></p><ul><li><p>Demonstrate experience as a sewing machine operator</p></li><li><p>Ability to create, read and follow patterns</p></li><li><p>Working knowledge of sewing machine mechanics</p></li><li><p>Outstanding eyesight or utilization of correction measures</p></li><li><p>Excellent interpersonal skills</p></li><li><p>Ability to manage time effectively</p></li></ul><p><strong>Responsibilities for Industrial Sewing Machine Operator:</strong></p><ul><li><p>Deciding appropriate sewing techniques and selecting suitable materials to complete work</p></li><li><p>Inspecting patterns to meet job's requirements</p></li><li><p>Perform alterations to existing patterns or create new ones</p></li><li><p>Cutting, sewing, and gluing fabric according to work order</p></li><li><p>Affixing buttons, zippers, clasps, buckles and other fittings.</p></li><li><p>Replacing needle as required</p></li></ul><p><strong>Benefits Offered for Industrial Sewing Machine Operator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Health Insurance</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link:<a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialist in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement, and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=feb3958c-e448-4e10-bb07-d57527dda57b\",\n                    \"rep_user\": {\n                        \"email\": \"desmoines@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Des Moines\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Des Moines\",\n                        \"zip\": \"50131\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Iowa\"\n                    },\n                    \"id\": \"feb3958c-e448-4e10-bb07-d57527dda57b\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Industrial Sewing Machine Operator\"\n                },\n                {\n                    \"pay_rate\": \"$18 / hour\",\n                    \"description\": \"<p>Are you looking for a new opportunity? <strong>Essential Personnel</strong> is hiring for a First-shift <strong>Crane Operator</strong> in <strong>Des Moines</strong>. The ideal candidate perform all task involved in the production of the company's products such as metal sheets, rods, coils, rounds and beams in our warehouse. As well as utilize heavy equipment, both floor-level and overhead including cranes, mills, saws, shears, forklifts, and CNC machines. Also responsible for maintaining a clean environment.</p><p><strong>Requirements for Crane Operator:</strong></p><ul><li><p>Perform all tasks involved within the production of products</p></li><li><p>Production of Metal Sheets, rods, coils, rounds, and beams</p></li><li><p>Follow Standard work methods and practices</p></li></ul><p><strong>Responsibilities for Crane Operator:</strong></p><ul><li style=\\\"color: #2D2D2D; line-height: normal; background: white;\\\"><p>Read Measure tape</p></li><li style=\\\"color: #2D2D2D; line-height: normal; background: white;\\\"><p>operate heavy equipment floor and overhead; cranes, mills, saws, shears</p></li><li style=\\\"color: #2D2D2D; line-height: normal; background: white;\\\"><p>Knowledge of CNC machines</p></li></ul><p style=\\\"text-align: left;\\\"><strong>Benefits Offered for Crane Operator:</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>Advancement opportunities</p></li><li><p>PTO after 90 days of being hired by client</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link:<a href=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\" title=\\\"https://tinyurl.com/EssentialPersonnelApplication\\\">https://tinyurl.com/EssentialPersonnelApplication</a>, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>Essential Personnel employment consultants are experts at providing staffing solutions to meet each company and job seeker's unique needs. We specialist in the fields of industrial, technical, professional, executive and clerical, mortgage, human resources, information technology and accounting. We staff for temporary, temp-to-hire, permanent placement, and executive search.</p><p>We focus on matching people with positions that are rewarding, well paying, and a great fit for your personality, skills and goals. We are always seeking hard-working candidates who are looking to advance their career.</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=365da5d1-825e-4e56-8945-3329b349847a\",\n                    \"rep_user\": {\n                        \"email\": \"desmoines@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Des Moines\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Des Moines\",\n                        \"zip\": \"50131\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Iowa\"\n                    },\n                    \"id\": \"365da5d1-825e-4e56-8945-3329b349847a\",\n                    \"category\": \"Manufacturing\",\n                    \"title\": \"Crane Operator\"\n                },\n                {\n                    \"pay_rate\": \"$80,000 / hour\",\n                    \"description\": \"<p>Are you looking for a new opportunity? <strong>Essential Personnel</strong> is accepting applications for a <strong>Maintenance Manager </strong>for a well-establish company in Webster City. The ideal candidate will work along side the team, walk the floor, assist in all troubleshoot, and repair of equipment.</p><p><strong>Requirements for Maintenance Manager</strong></p><ul><li><p>Lead maintenance and repair of all mechanical, electrical, hydraulic, refrigeration and boiler systems.</p></li><li><p>Provide advance knowledge, skills and tools to keep equipment operating, MUST be able to read blueprints and troubleshoot</p></li><li><p>Ensure all operation meet OSHA and food safety guidelines</p></li><li><p>Develop, Implement and oversee preventive/predictive maintenance program</p></li><li><p>Supervise, schedule, train, instruct and monitor maintenance personnel</p></li><li><p>Analyze staffing needs to ensure maintenance department is staff with qualified candidates</p></li></ul><p><strong>Responsibilities for Maintenance Manager</strong></p><ul><li><p>Direct and coordinate maintenance operations within company policies and procedures maintaining oversight responsibility for all programs associated with food quality and food safety. Ensure compliance with all governing bodies, including but not limited to, OSHA, USDA, FDA, HACCP, SQF and COSTCO, and GMPs for both plant and personnel and maintain a sanitary, safe, and healthy workplace.</p></li><li><p>Report progress and plan for proactive maintenance.</p></li></ul><ul><li><p>Ensure maintenance and security of all necessary company information.</p></li><li><p>Commit to plant safety procedures.</p></li><li><p><span style=\\\"color: black;\\\">Conduct </span><span style=\\\"color: black; background: white;\\\">performance reviews and provide feedback to direct reports.Â  </span><span style=\\\"color: black;\\\">ProvideÂ progressive training to develop shift leads.</span></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Accurately perform required computer data entry and work order transactions</span></strong></p></li></ul><p><strong>Benefits Offered to Maintenance Manager</strong></p><ul><li><p>Matching 401(k)</p></li><li><p>PTO</p></li><li><p>Employee discounts</p></li><li><p>Professional development program</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link: http://www.essentialpersonnel.com/submit-resume.com, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=0f215b3f-c057-4736-afce-fc3fc2db4b52\",\n                    \"rep_user\": {\n                        \"email\": \"desmoines@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Des Moines\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"Webster\",\n                        \"zip\": \"50595\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Iowa\"\n                    },\n                    \"title\": \" Maintenance Manager\",\n                    \"id\": \"0f215b3f-c057-4736-afce-fc3fc2db4b52\",\n                    \"type\": \"Full Time\",\n                    \"category\": \"Manufacturing\"\n                },\n                {\n                    \"pay_rate\": \"$24 / hour\",\n                    \"description\": \"<p>Are you looking for a new opportunity? <strong>Essential Personnel</strong> is accepting applications for a <strong>Construction Project Manager</strong> for a well-establish company in Des Moines, IA. The ideal candidate will work alongside the team, good with deadlines, assist in troubleshooting, and coordinate with management.</p><p><strong>Requirements for Construction Project Manager</strong></p><ul><li><p>Provide advance knowledge, skills and tools to keep project on time</p></li><li><p>MUST be able to read blueprints and schematics</p></li><li><p>Ensure all safety guidelines are followed</p></li><li><p>Develop, Implement and oversee preventive/predictive maintenance on storage locker systems</p></li><li><p>Supervise, schedule, train, instruct and monitor personnel</p></li><li><p>Analyze staffing needs to ensure department is staff with qualified candidates</p></li></ul><p><strong>Responsibilities for Construction Project Manager</strong></p><ul><li><p>Direct and coordinate operations within company policies and procedures maintaining oversight, responsibility for all projects, ensure compliance with safety protocols, and training of new and existing staff.</p></li><li><p>Report progress and plan for efficiency on project completion</p></li></ul><ul><li><p>Ensure installation of product is complete and properly inspected.</p></li><li><p><span style=\\\"color: black;\\\">Conduct </span><span style=\\\"color: black; background: white;\\\">performance reviews and provide feedback to direct reports.Â  </span><span style=\\\"color: black;\\\">ProvideÂ progressive training to develop shift leads.</span></p></li><li><p><strong><span style=\\\"font-weight: normal;\\\">Accurately perform required computer data entry and work order transactions</span></strong></p></li></ul><p><strong>Benefits Offered for Construction Project Manager</strong>:</p><ul><li><p>Matching 401(k)</p></li><li><p>PTO</p></li><li><p>Employee discounts</p></li><li><p>Professional development program</p></li><li><p>Vision, Dental, STD, LTD</p></li><li><p>Paid Training</p></li></ul><p><strong>While Working for Essential Personnel:</strong></p><ul><li><p>Weekly pay - direct deposit</p></li><li><p>Holiday Bonus paid to eligible employees</p></li><li><p>Health Insurance</p></li><li><p>Vision Insurance</p></li><li><p>Dental Insurance</p></li></ul><p><strong>Additional Info:</strong></p><p>Interested candidates, call immediately at (515) 895-4789, submit your resume by clicking on the following link: http://www.essentialpersonnel.com/submit-resume.com, or click the apply button to complete our application. Email your resume to desmoines@essentialpersonnel.com.</p><p>#EssentialPersonnel #DesMoinesJobs #NowHiring #IowaJobs #Staffing #ClericalJobs #LightIndustrialJobs #ProfessionalJobs</p><p>Essential Personnel is an equal opportunity and affirmative action employer.</p><p>INDDES</p><p></p>\",\n                    \"hot_job\": \"1\",\n                    \"date_added\": \"2024-09-24\",\n                    \"url\": \"https://staging.wurknow.com/WurkNow/job-application/login?id=dabd4ff4-7a92-4789-a73d-da2894056d46\",\n                    \"rep_user\": {\n                        \"email\": \"desmoines@essentialpersonnel.com\",\n                        \"id\": null,\n                        \"first_name\": \"Des Moines\",\n                        \"last_name\": \"Branch\"\n                    },\n                    \"address\": {\n                        \"country\": \"US\",\n                        \"city\": \"des moines\",\n                        \"zip\": \"50131\",\n                        \"address1\": null,\n                        \"address2\": null,\n                        \"state\": \"Iowa\"\n                    },\n                    \"id\": \"dabd4ff4-7a92-4789-a73d-da2894056d46\",\n                    \"category\": \"Light Industrial\",\n                    \"title\": \"Construction Project Manager \"\n                }\n            ],\n            \"count\": \"92\"\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.654321\",\n            \"CALL_ACTION\": \"GET\",\n            \"TIMESTAMP\": \"2024-10-14T14:41:16\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"wurknow\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"92 jobs returned\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"\",\n            \"call\": \"https://staging.wurknow.com/WurkNowAPI/api/Sourcing/GetAgJobPostings?boardId=3M1FGKAO\"\n        },\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.920761\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"92 jobs returned\"\n}"}],"_postman_id":"7ffb9dbf-0eb8-4e5c-b211-cccca4211180"},{"name":"Job Get By ID","id":"408a215c-ea0e-4c73-aecd-98873ea8de9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_url\": \"{{_api_url}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p>NOTE: Not Implemented</p>\n","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ffc5f79f-76f3-4970-ad49-f803c760d59a","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{_api_user_name}}\",\r\n      \"api_pw\": \"{{_api_user_pass}}\",\r\n      \"api_url\": \"{{_api_url}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:41:30 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"462"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638714"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Job GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:41:30\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:41:30\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"e3tfYXBpX3VzZXJfbmFtZX19Ont7X2FwaV91c2VyX3Bhc3N9fQ==\",\n            \"PAY_LOAD\": {\n                \"api_request_query\": {\n                    \"id\": \"z5G7h3l6a1kMvyS65NP3cwomX9Cp7fZXRqMdYdKAZiQ=\"\n                },\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004497\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"408a215c-ea0e-4c73-aecd-98873ea8de9b"}],"id":"ae67cd26-3829-4f3e-8d54-ae19f93f666d","_postman_id":"ae67cd26-3829-4f3e-8d54-ae19f93f666d","description":""},{"name":"Note","item":[{"name":"Note Set","id":"e50cea72-bce0-474b-b9fa-0b941d7b8b96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"e94fa68c-b46a-47ef-b4e8-db31dd54ab1b","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:41:59 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"412"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1638717"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:41:59\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:41:59\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": {\n                \"api_request_custom\": {}\n            },\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004539\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"e50cea72-bce0-474b-b9fa-0b941d7b8b96"}],"id":"c903fb52-9fae-427e-ac16-60285a309b20","event":[{"listen":"prerequest","script":{"id":"47da0ff4-8884-42ed-8d1a-3f0f38410a56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"adb2d034-fd3b-4803-9f2f-edf5f023b2ad","type":"text/javascript","exec":[""]}}],"_postman_id":"c903fb52-9fae-427e-ac16-60285a309b20","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"9c7f12aa-21ce-49a2-8f2f-a5635a8668e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n      \"api_request_query\": {}\r\n  }\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"3125490e-6b12-44ca-ae29-2762f5c07b1e","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"*/*"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{wurknow_api_un}}\",\r\n      \"api_pw\": \"{{wurknow_api_pw}}\",\r\n      \"api_url\": \"{{wurknow_api_url}}\",\r\n      \"api_id\": \"{{wurknow_api_id}}\"\r\n    },\r\n    \"vendor\": \"wurknow\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Oct 2024 14:42:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"405"},{"key":"X-SASnode","value":"ip-172-26-0-21.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"2687256"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 1,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2024-10-14T14:42:26\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2024-10-14T14:42:26\",\n            \"CALL_HEADERS\": null,\n            \"MESSAGE_CONTENT\": \"\",\n            \"APIKEY\": \"YXdlc29tZWNvZGVyQHd1cmtub3cuY29tOkB3ZXNvbWVDb2RlcjIwMjA=\",\n            \"PAY_LOAD\": null,\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"wurknow\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"wurknow\",\n        \"elapsed\": \"0.004818\",\n        \"key\": \"11111-22222-33333-44444-55555\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"9c7f12aa-21ce-49a2-8f2f-a5635a8668e0"}],"id":"c7da31f0-5729-4a13-b05a-ad36e2a6f75b","event":[{"listen":"prerequest","script":{"id":"94f80af5-5bb2-4080-99af-300caf75e704","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12e98db0-ff25-4d01-b185-3199194466ad","type":"text/javascript","exec":[""]}}],"_postman_id":"c7da31f0-5729-4a13-b05a-ad36e2a6f75b","description":""}],"id":"77de37b2-7ce4-48e3-9a7f-8440481a1f5f","description":"<p>Ceipal</p>\n<p>Overview</p>\n<p>This integration is fairly limited. It only supports,* authorization, applying and retrieving jobs*</p>\n<p>API Docs</p>\n<p><a href=\"https://developer.ceipal.com/?version=latest\">https://developer.ceipal.com/?version=latest</a></p>\n","event":[{"listen":"prerequest","script":{"id":"7b9c071d-aaea-4ffe-989c-09555cd74c32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43e9e9bd-22af-4382-a723-77f164175720","type":"text/javascript","exec":[""]}}],"_postman_id":"77de37b2-7ce4-48e3-9a7f-8440481a1f5f"},{"name":"Zenople","item":[{"name":"Authentication","item":[{"name":"Authentication","id":"33cd188f-b842-4d37-8073-461be189a85d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.  <b>NOTE: This process is internal - this endpoint is available for testing purposes only.</b></p>\n\n<ul>\n<li><p>api_un - User Id - <b>NOT USED</b></p>\n</li>\n<li><p>api_pw - Password - <b>NOT USED</b></p>\n</li>\n<li><p>api_id - Client ID - <b>REQUIRED</b></p>\n</li>\n<li><p>api_url - Base API URL - <b>REQUIRED</b></p>\n</li>\n<li><p>api_secret - Client Secret - <b>REQUIRED</b></p>\n</li>\n<li><p>api_sandbox - sandbox for testing - <b>OPTIONAL</b> - default: FALSE</p>\n</li>\n<li><p>api_performance_dump - dump all call details - <b>OPTIONAL</b> - default: false</p>\n</li>\n<li><p>api_verbose_dump - dump detailed response for a failed call - <b>OPTIONAL</b> - default: false</p>\n</li>\n</ul>\n<pre>\n      \"api_un\": \"{{api_un}}\",\n      \"api_pw\": \"{{api_pw}}\",\n      \"api_id\": \"{{api_id}}\",\n      \"api_url\": \"{{api_url}}\",\n      \"api_secret\": \"{{api_secret}}\"\n    }\n</pre>","urlObject":{"path":["authenticate"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1e47c3a4-7abc-4397-a6b6-3a6c024c25f7","name":"Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:14:24 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"223"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377105"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/authenticate"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"ZBaseApiUrl\": \"https://ascendapi.aqore.com/api\"\n        },\n        \"api_log\": {},\n        \"api_status\": 1,\n        \"api_xstatus\": \"Authenticated\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.016253\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_authenticate\"\n    },\n    \"atsconnect_message\": \"Authenticated\"\n}"}],"_postman_id":"33cd188f-b842-4d37-8073-461be189a85d"}],"id":"310ae5b3-908d-4acc-8b80-20c5649d0943","description":"<p>The steps necessary to obtain a connection which will allow\nfor subsequent successful API calls.</p>\n","event":[{"listen":"prerequest","script":{"id":"6ffeb773-a194-4d9e-8845-a023e2d4e080","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48eff6b1-de43-40d4-a601-9ed6e836c4c2","type":"text/javascript","exec":[""]}}],"_postman_id":"310ae5b3-908d-4acc-8b80-20c5649d0943"},{"name":"Application","item":[{"name":"Application Get By ID","id":"52c62fa4-3b81-49a3-a6d6-e8d8ff4e85de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For retrieving applications for a job by the job ID.</p>\n\n<p><b>Not Implemented</b></p>\n\n<pre>\n  \"api_request_data\": {\n        \"api_request_query\": {\n            \"id\": 9999\n        }\n  }\n</pre>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"adfec91f-76b2-4c3e-be3f-b1796af998d0","name":"Application Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n\t\t\"api_request_query\": {\r\n\t\t\t\"id\": 9999\r\n\t\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:34:52 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"354"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660414"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:34:52\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:34:52\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003246\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"52c62fa4-3b81-49a3-a6d6-e8d8ff4e85de"},{"name":"Application Get","id":"8ba1ac1f-b01e-444a-8ff7-47425f01895f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get","description":"<p>For getting applications for a job</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["application","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d9d18000-6239-4092-9d6b-9ba17236f3ff","name":"Application Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/application/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:34:09 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"354"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660411"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Application GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:34:09\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:34:09\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003916\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"8ba1ac1f-b01e-444a-8ff7-47425f01895f"},{"name":"Application Set","id":"781df495-d6ee-407c-aa8e-b90c21a71e61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","value":"{{apikey}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":0,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {  \t\r\n  \t\t\"job\": {\r\n  \t\t\t\"id\": \"64711\",\r\n  \t\t\t\"title\": \"Job Title\",\r\n  \t\t\t\"company_name\": \"Company Name\",\r\n  \t\t\t\"location\": \"PA\",\r\n  \t\t\t\"referral_source\": \"Indeed\",\r\n  \t\t\t\"url\": \"https://ca.indeed.com/jobs?q=&l=remote&from=searchOnHP&vjk=492585e30515ed44\"\r\n  \t\t},\r\n  \t\t\"candidate\": {\r\n  \t\t\t\"first_name\": \"Jones\",\r\n            \"last_name\": \"Does\",\r\n  \t\t\t\"email\": \"jones.does.3.November.2025.1@mailinator.com\",\r\n  \t\t\t\"cell_phone\": \"9992996301\",\r\n  \t\t\t\"address1\": \"124 test street\",\r\n  \t\t\t\"city\": \"Salt Lake City\",\r\n  \t\t\t\"state\": \"UT\",\r\n  \t\t\t\"zip\": \"84116\",\r\n  \t\t\t\"country\": \"US\",\r\n            \"resume\": {\r\n                \"mime_type\": \"application/pdf\",\r\n  \t\t        \"file_name\": \"My_Resume.pdf\",\r\n  \t\t        \"file_data\": \"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dF0KPj4KZW5kb2JqCgoxIDAgb2JqCjw8L1R5cGUvUGFnZS9QYXJlbnQgNSAwIFIvUmVzb3VyY2VzIDIyIDAgUi9NZWRpYUJveFswIDAgNjEyIDc5Ml0vQW5ub3RzWwo0IDAgUiBdCi9Hcm91cDw8L1MvVHJhbnNwYXJlbmN5L0NTL0RldmljZVJHQi9JIHRydWU+Pi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNSAwIG9iago8PC9UeXBlL1BhZ2VzCi9SZXNvdXJjZXMgMjIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgXQovQ291bnQgMT4+CmVuZG9iagoKNCAwIG9iago8PC9UeXBlL0Fubm90L1N1YnR5cGUvTGluay9Cb3JkZXJbMCAwIDBdL1JlY3RbMzk3LjE0MyAzODIuNiA0MTAuNTU3IDM5NS4zXS9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKGh0dHA6Ly93d3cucGVybHRrLm9yZy8pPj4KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNSAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI1MTQyMjAyLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCAyNQowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMzYwMTQgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTc2IDAwMDAwIG4gCjAwMDAwMzYyNzMgMDAwMDAgbiAKMDAwMDAzNjE3NCAwMDAwMCBuIAowMDAwMDAzMTk3IDAwMDAwIG4gCjAwMDAwMTc5MTcgMDAwMDAgbiAKMDAwMDAxNzkzOSAwMDAwMCBuIAowMDAwMDE4MTM0IDAwMDAwIG4gCjAwMDAwMTg3MTUgMDAwMDAgbiAKMDAwMDAxOTE0MCAwMDAwMCBuIAowMDAwMDI3NDM0IDAwMDAwIG4gCjAwMDAwMjc0NTYgMDAwMDAgbiAKMDAwMDAyNzY2MyAwMDAwMCBuIAowMDAwMDI4MDg4IDAwMDAwIG4gCjAwMDAwMjgzNzQgMDAwMDAgbiAKMDAwMDAzNTA4MSAwMDAwMCBuIAowMDAwMDM1MTAzIDAwMDAwIG4gCjAwMDAwMzUzMDcgMDAwMDAgbiAKMDAwMDAzNTY3MyAwMDAwMCBuIAowMDAwMDM1OTA2IDAwMDAwIG4gCjAwMDAwMzU5NTkgMDAwMDAgbiAKMDAwMDAzNjQxOSAwMDAwMCBuIAowMDAwMDM2NTE2IDAwMDAwIG4gCnRyYWlsZXIKPDwvU2l6ZSAyNS9Sb290IDIzIDAgUgovSW5mbyAyNCAwIFIKL0lEIFsgPDg5MDgwMTc1NzAxRUU3ODcwQzdDNzcxRkYwNUEwNTEyPgo8ODkwODAxNzU3MDFFRTc4NzBDN0M3NzFGRjA1QTA1MTI+IF0KL0RvY0NoZWNrc3VtIC8yREJEQUM0QzI5RkRDQzQ2REY3RTZGMzU1Q0VBN0MzMwo+PgpzdGFydHhyZWYKMzY2OTEKJSVFT0YK\"\r\n            }\r\n  \t\t},\r\n  \t\t\"language\": \"en_US\"\r\n  \t\t}\r\n  \t}\r\n}"},"url":"{{ats-connect}}/application/set","description":"<p>For setting candidate data.</p>\n\n<ul>\n<li>job<ul>\n<li>id - <strong>REQUIRED</strong> - for which the applicant wants to apply, id fetched form the list of job postings</li>\n<li>title - <strong>REQUIRED</strong></li>\n<li>company_name - <strong>REQUIRED</strong></li>\n<li>location - <strong>REQUIRED</strong></li>\n<li>referral_source - <strong>OPTIONAL</strong> - default is \"Haley\"</li>\n<li>url - <strong>REQUIRED</strong></li>\n</ul>\n</li>\n<li>candidate<ul>\n<li>first_name - <strong>REQUIRED</strong> - applicant first name</li>\n<li>last_name - <strong>REQUIRED</strong> - applicant last name</li>\n<li>email - <strong>OPTIONAL</strong> - Required, if applicant cell_phone not used</li>\n<li>cell_phone - <strong>OPTIONAL</strong> - Required, if applicant email not used</li>\n<li>ssn - <strong>OPTIONAL</strong> - applicant Social Security Number</li>\n<li>address1 - <strong>REQUIRED</strong> - applicant address line 1</li>\n<li>address2 - <strong>OPTIONAL</strong> - applicant address line 2</li>\n<li>city - <strong>REQUIRED</strong> - applicant city</li>\n<li>state - <strong>REQUIRED</strong> - applicant state</li>\n<li>zip - <strong>REQUIRED</strong> - applicant zip code</li>\n<li>country - <strong>REQUIRED</strong> - applicant country</li>\n<li>resume - <strong>REQUIRED</strong><ul>\n<li>file_name - <strong>OPTIONAL</strong> - default is applicant name followed by underscore resume (e.g., John DoeResume.pdf)</li>\n<li>file_data - <strong>REQUIRED</strong> - base 64 encoded resume</li>\n<li>mime_type - <strong>REQUIRED</strong> - MIME type of resume. Accepted values are \"application/pdf\", \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\", \"application/msword\", \"text/plain\"</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  \"api_request_data\": {\n      \"api_request_query\": {\n        \"job\": {\"id\":\"z5G7h3l6a1kMvyS65NP3c9LY+FLhon0i9YXLbuP5zEk=\"},\n        \"candidate\":{\n            \"first_name\": \"Testing\",\n            \"email\": \"tst@testing.biz\",\n            \"cell_phone\": 9009999999\n        },\n        \"file_name\": \"Resume.doc\",\n        \"file_data\": \"VUVzREJCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQWJXbHRaWFI1Y0dWaGNIQnNhV05oZEdsdmJpOTJibVF1YjJGemFYTXViM0JsYm1SdlkzVnRaVzUwTG5SbGVIUlFTd01FRkFBQUNBQUErV25YVHZMN250OHhHd0FBTVJzQUFCZ0FBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZUpVRTVIRFFvYUNnQUFBQTFKU0VSU0FBQUF4Z0FBQVFBSUF3QUFBTitEK1hJQUFBQmRVRXhVUlFBQUFDTWpJeWtwS1RNek16dzhQRUJBUUVsSlNWTlRVMXRiVzJOalkyeHNiSE56YzN4OGZJT0RnNHVMaTVPVGs1eWNuS09qbzZ1cnE3T3pzN3U3dThQRHc4dkx5OVBUMDl2YjIrUGo0K3ZyNi9QejgvNysvZ0FBQVAvLy81QkJiTnNBQUJxUFNVUkJWSGphN1YySll0UElzcDI1ZDdoQUxQVlcxZFhyLzMvbk82ZWRRQUtCbUltQm1DZERZbG1iVTFKWDF6bTE2YS81Ujd6K09zUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRStQcVZrb2ExVUdiVG1ldWMrV0ZUdVIweCtydFNOaC84THYvdDhlLzJkNXp6SFdUYnplL3BuM0U3WXZ4bjgrLy9xZSsyL0dIRzl4L2ZuOFZ3SDkrLzIvVHVodTdHZS94L045Mzc4TStJN2ovK284My9Kbm0zdjkvL0YvNTNRN29CWldpVi8rdnNvL1U2WmltMTk5WWFOeDB6MVNIR0ljWWh4aUhHbnlwR3g2dy9HdWIrOWVvVFFBS2Y4T0xIaVJXM0ljYTJ1ZWozZUdmNzd2YjRVYmM1Ny9hVFNkajl2czB0M29vWUxjU3dXNFFVYmovaGY1OG5pR0h4ZE5xMmxqL2V5cUNhbzJJQU5ReW96c0ZWKzZ5ak5RNHdJQXVzT1ZUOEVPTVE0eERqdDRzaHFaYWF1eFM4Zk05NVpqTk4xbk5wK1Juamwzb3NNbU9YYkxYTWxOTWJFU05HQ1Rua0ZLSm9LQzVPTFBpWWlwY2NuNkZ4ZVVoUE13VHhYbldXcEc4R2pIUmMxNTViYVQxM0t6QVgxbktidUJ2MnpOMlFxdVN1clptMUR0N2EyazNxQml6bFdmalBrT3dXeFVoTmZLOVFpcEJGMHBoZE5JMmJFMk9rS3VyYnRDRFJ5OVl3eUdKb3QzYzNNS2FxbGtuSWhaOEd6V3JsTFF3cU9wcndOMTE0UlFlZ1k0Vml0UFdDYXBUN0ZiOTl3dFdRRW1aWGx5ODZXUmhoeEQ1c3ZUcFVaYTM0L1hmRFVvYkJVSXZsRWsyRmZjVExKbjVwem4ycUtCZnJyZW5HV3dVaktWVkxCWE9QbW9wWVRQYTl1ektpNVl3RElteWxjaGlta3JMaDl2eHVNYktwMHloVFFoT0pVZlc3OEdJNDZKSHlOWDJoU21oMUhHYS9YWXhpdzJwdHM0REM1dFl3OWZUdlk1ZUdQV29IeThVa0JidUJqKzJYSUpLRGJ4eGlIR0w4UHhZamg3RTFMNjRHQzJITUlDRjBIMHhqZHlFT3JBZGNtVDdFSEtPRkdsT1VzbldaSTFpTUlic05nTGU2bU9RM2k3RjMvUkR1d2wwNTJXa2JOVzZuVTkxT3RyZTU3ZW5VUHJUNVB6OVBhY3ZiVnB6cyszWVhQd1EzcDQvYmZycTdlLy9SNGQvdTdUZUxBVHJkVTlaUWswa2VkQklrMVdTV3B1Z01NK0J1WUhGS2xsSlNFWUNvMUdFcXNhTmlHZFFwVmdLcmZ1akdJY1loeGlIR1Q1eXB6dWxQalVHL2UvZlRZUERtWWRWWEVQZmhGNU5HNWlkL3dpZU1PeDd2dUNqKy9hWXpEbjdnaWZmeG4zRW0rTmZnNGxzcFlFdVNUc21pQXpPZjBjRUs2blFCTEIxMnpRZGZtbFIxVWJhVUFpMUd3SHdieDU0aytxUmpqMUhTM05WakJ4akpFMHhrM1FyUEZJS2VTZzdpbzU2YzRLZ2tiWnM0REx1Y0pLUVk4Y1V4MU5lTFljbmNyQ0swRjRVV29OQ3dxeHBFQWEzVE5NMnlCejNDSDFqRlRHZE9NREFDbm9KM1NVVkhBQ1dVbVNxc09xaGdKUjBzcWJXa1UyRi9PcjRobTBXd1Mzd3VOWXlFeFZ4aWpTVXF6cGhTdTRadXRIVXh4dk9YeExpNlhraUw2bFYzK3lFeFFPVkkrV3F6WGpLSVhSa2RjcWxBckFGV09Nb29HTWhwMWxHeFUrMUQ4Y1o5MnFnTnYvR1AvNkVGT00zSWZmUlJEUitzTXVCdTZ6Q2VCblllMjZTV05pYjJyalhYT25vdCtCNXQvZFZpQUZKSWRFR3lGVWNtamlFQkxLakp1MmxlZ2dJQVRsSnZnQkJKK0FGejk4QW1oQ0hKbStPNkZLRkthWUxSaDloMUQ5QVpYSWRkb1JrdXJjT0NwaDFmdFV2QzBYa1F4VVIxSVBYUXRUaGY0UCtYelZTbDRtL0RwWUVTUTVTS0Mxc3F4bExSV2JVV3JKUlpqWmRNc1MxQ1BZb0NVUm5XZWVuS0E2cFp6WEdXWEl1TVprMUxwa0wxWEVyUnpNT3dGMDQ5OEpQWHVmZzlqUE5rckhDeldMbUczU2lYdThUNzQvZkhxUGFiWG9XWHhzdW8xN0VibkZ4eVYxN0NTcFV3WGl1L2ZuT2FxcnoxT3ExSTlST1hzR0FFVk54Q2Faa3VLN3poTWdjdHZhU0lKWWY1cCtabXY5cjhxZmdVUFIzOXdrRWFhb2xST3pSQXBNZHRhajRsNkFjR1BzWTVWRWFDVTA3OEZqSHlvU1VhR2c2RUhjQTF3R2lmSHByQWtmK3J4Y0NrZ2NscTlLS1ZUaWg4ZjhIVTFkZi9XdVo1bzAydU0xZ1VUbFk0cHRXRU9ZeStkUHFzNkZqSGNWZzl1K0VvVEZiakY0dHhRTU5EakVPTVAxcU1DUFFKWk52S0RnTUFJQ3ZWWUZiampNM1BWQXl3dzdNMEl4YTFxcU1CMU1PU1ZPMSttdFlHR3dJekxhV0VYcWVFNFRNTVVOTGVzTkVBaWJNV3k1TkdYUEVwNFVBYkJSWStGOU9XZVdLRlFZTDVyNjhVSTlVVnJnQVFaNVFqdVJqUElFY0w0VHBzUkFmZ3dVY05UdmJhZHhnVTNRU1FmR1pBbUIwMnhDbU9WRmc5V0l1TXZSVG92V1NCMll3d25Kbm42b0JkNjF1Y2h5VlZ2N2NJOHhKNDRnMW5sckMzVjRyUko3UHorc0MwRCs1WDY4NWNDbnpNdUx3RGhpRERXcStkWURucWltOWc3MDdPeU94UTJKVEJBM3VOQzlSZ0M2d0hNREUrQUFERDV2RFVlTytsOGNEQmZjZ0RnWStCZmVjNG4rV1NVTzVMdXRFWG1Xd1AzUFV6RHozejFVVXhQL0hNOXZCaGpFZUFyRDBpb3VQSmlZMlhvcXpscDMvcjB6OTh2RmFNTEM0VkRJZXRKNkFpaTFsSFROWEFCaVhtWVJKQ2dHYUVtRUFFVTIwQnBCVm9SVXIzT1FIa0o0K1JwSEVHRDFiTEVROUNhd0VEVkRzQVRCbmNCd01VbzZjNUMxQXdRSHFRQVl5NWlZRldnZVV5NklIaFYzcWRpdnVVRThEUTNyT2NuRzdtcDhUU1BFZHo2dUlEdm5NRy91VVJmL2VnVUNyWldmZFFpcnhMa0tWQ0VIc0RzNDFwaHdRNXh3MWlRSG1henhKcktoMTY3b0M1aEJDT0RsWlFrcXdnOWtuODduSk0rSnEzUCtGK3cvZUIrYWxjYWNLMUo4T3pQdjR3MWsrL0g3aGo1V1Y4WnRQajBZRjkvUjZQcVBab256MUJoYWZRK2VqNHo2cGg2dytvcjdjYm1Qb2FzWGhJUHFoUGV4eFJNT3U2V0U4WStER2NWb1Vmd0h4d0UzeDF3eExlOTNRWDZMQlJEQ05NclNINkJncXIydTVBZktFVXB5QWlQdWNVQi9nd2hpZE9waUhiU2VVdTFMRmhXT0ZjK0hweDlQKzhualpKN2hqVU1GTUZXcHBobUdZMEUzTzVSUzEwWWVHSGRCemFDOFlMRGxXWWE2Rmtzek5CVlN1R09teWNiemdEMkpNWXRSb21rSlM0a0orQzNGZUYvVFRERkFHclNDMFFmQjlNQ3VabHhkR01TRndQakxUSGsrcGpsbC9MQzBjODdHKy9EWXpRaFRDc1l5TEVlQ1dkTGN5UUt0YVorYWx4bE5sQS9YczE3c1Z3Zmx0VXllZ1Rnb2FDYjFYWVBtNHNVQUw4TmhoK2NER3pnVlBEY2xiWXpWejRobFVGZklzRXF4UW1GZFJpRGJlTS9xRlhrMWdBaWVYYWlRbFRaQUdFQXFDQXZWRFBDVitjb3pNbllienYwS0pFbk5KMkR6SjdZdllPNWtzNkdya3pwdU9NMlJkTEUxcUFBd1ZLbHpIWllwZUFINGFweERGVEF3QUllZ05GeXRDZmlIUFRXL1JhTVJvdkNVQmVxY0dJR2lvVGNDZFlLb2IyeElXQ1NiRFc4Ri9ManR0VUM5YmlpUHU4TUtoRGJoM1h0R29GYk1FTlV2cUNnQyt0MGFjRGtGalcwWHpEU1JVTE5tTnR1VGg4eFZwZGxwLzBXcnJ4R0N1TTUyRERZMWZNK0JFWThiVVorZElGV2wrdDRoNElvc1JZTW1kUE15Y2x4d25rb1FYckJKTVk4NFlCM2cyWVZ1aHJXL0EzMC9rR1dQc0w2enRlY3ZEZ0Z1TVA0cHlhTW9ZMmtQdE1MZTlCdzRpWUhqVzdzcFFpQTB4UlNRQWh0Q245T0NuNy9rYkVZQjBOWURNdUt6M01STmF3djQzVnVtTU5JMEx0T29pczhabHJCL0U2NWkvbUlwbU1OeUxHd2NVUE1RNHgvbWd4dkFCQXEvZCsraENpcFZOeDVRYkYyRTY3cy9UeGJwdjdKcnRMKy9EeEJzVXdRaXB3QWNHUEFrUForQ1dwMm9kdUhHSWNZaHhpL0lnWTRCS0FyeGZRb1BHRjQ3VS91Ky9Ma0hmOERERjYxbGxUazFLWXJpTVIzRFVWb2Q4MUZsQ29VSEtXYk5LN2hDbmd0MkM0TlV0SlZuTGQ4N1JJVnczSWxJR25XSnF3b0ZndVJhSXhXQUlhaTk4WkhCOW5ZaXpFSk9PTU9Ra093aVFmVGV6QzZQTUxkNFBoZW0weFJSQ2l1RVZXWjhRdGdRdG1IMlgzS1lML3A0MzhhVW9GMVFiMzgrQmFkRUZ0WldweTVtUEtUSTBLc2tMcjRGWHJiTXk1a29UUFczSVNQYWhpWmlpRS9pbWNNS1IxVk41ajFtdUljZmF2TnNZaEdMbFlIUzA2Qjh6cVRNQUF4RkR0YStBOXBLU3RwZ1h6M0xlZzk5VVZnekYwbkdOVmFUTHBMZkxJZFZaR0ZsWjUzU3JaSE9memo1Ylh3cUpqL1pvcTN1ZkxDUjV2ZTZaaTFDSVpoNHJLRFl0UlBaMnVLOFV1M0xBWXkwVmw4MjIvWGxKeEJoeS9NNWV2SU45WUhXNEcyNUF3am5sL3dITmVzaTlYTVIvbXZndk9vTTYzUnhyWWZzU0d2SFEzTUlNTytXTE5vd1dQWHkzNi8yMS9EOUhUWCsvK3NyYnJVRWJ6L3JvZmd2Zlp1TnhieTVPVDVMSC85YTR6Ry9iRG5QSWgvNjEvai83aExGOFovOVNVcjNZM0VtUDhXeXB4UnZGQmdtVGRvZXMxYU5TNmk0UEJZQW1LdEtFKzVjR0lQRXdLcHZ3T2N3UDdrT21UZG83TkRJWVgyYlByazJsWGpJdG4ycjdrcFZVWnRKNEo1MjFoTWwyTGxzZTJlalV4MmdxTkRXT2w4dERWQ0ttZmZ6Z1F6ci9QVmZxTWFROUcwTmVLODJGckQ1dm5ka3BuSzlEWVhJOWJVcGxyd0M1clVkYWdtdTBjaXA4clhuN0ZRZFg3dkluWEMySTBZYU1IWHNXeWpQQTVnNEJ2dkd5RDhaYlcxTEFsejZ6TExqT0pnUmU0bDM3K3lCeUdXZHFERFIrNWxGN1lNZ0xYcU5CSit0UEZhSXduTVY2WFl1aDFTemtBVVFsN0RCanowVjFNMEkwUTJYTWdUR2JWN2h6V09UTGk3M0pLZ1FBcUpWZG04Z21xeFJnNkk5OEMvUmtpS3ovZGlmMzB1OEc2WElZYnRhWSt4SW9uTGpYOGw0ckx6N0JCbVRZWTZZd01DWGRsQUtlbFVyUVJyQWFycGZDQUtRREUyTmVYZFR3T2xHbk1LaFhqNmw5Tm0zNHNZakhHbHdmMmIrQzFueXlHS1dPS1g5bXVmaC9oZnh6Ri8vVHpqTDBiVDQ1Lyt1bFRnc0NqTTlZVmF2Z0JIdlZTSWhMR1NvUU9KM0lmd1J2SFRNNHVwUWtWS0NvTWl6TzJDUXNRTXZrU0ZzencwU0oxQld0U256VVVaVjdKb2ttdGh3eUdoRzAxc2c1UHd6U0w1bVpaeEF4ZjBvcFVnYmtaaWRuajhSTE84UktKRmJBLzJMcVF2R2JhdlFJOWRZNzFKZmdDOVR2enowQ21zS0RpU1hzWXY5ZVlnMWNOdEg0eHNPWURSaTdzUVRlVnZWU2ZBSnBEWUpJUGpzc3lJeDJzTXprY0lGbUNkY3dwQW92cVFRTmpBTHgrdGQwWXkyclZ1dXpVK2xrbTYyejdHbTNkK2p6UEt6alg0cjNJUEJ0RWJncm5xZnJjVW5Bc2dnUnlqQ055bS9QK2RQZG5QSDlKNUdTK09pN3hYeTJYMUFXOXBPTGpqekIvSTg3TzBIZlZ6ZzU2TFM4NGk2dlV0VE1aRXNhc24xa3JCaEEyQW8vVWFzM1lzY0RhNnJTeXVyOW9XeTM0R3JId0lyUVlsV1BsOUdFOURtb3NYbW05L1NUenh5ejVWQkxNbExTd00xOExROTZIbFlRUUlsRmkwcmo3WkZpUG9aUTlFKzJodXVxd0VJTkx2bk9Zcys3RVo2aEVGUEJJZHJDUzZKekFQdUtEWTBvYkZDREJRUDZrdThHOGpzN0dPa3k0b2VWaXN3dGNkbllES3dOV2thbXJ6SEtsa2RUSkZRTGtVWHJHV2lhZk1yMk5wUkNabFN5R00rQWVZbC9ZdjFVYUFjanBNdTUzd0hFVnh2RHRlZzM3QmR0Yi9ibTZRYUpUKy9pMjN0OVBQZU5MZXphZUNEQWVaOFR4VjYxZkdNd3h2ckNlWTE0UHFMUHJYQWRuWXVXZkpkcTVEQXNvVFAzRXFDZ05veU81Mm54ejJSeDBnOFl2SzNaUlpvMUYwVkdUV21ZWkZzZmRxaDZrcjQzV1FKZDdVUEJlUXB0TW1JYUJoRFhFVG0weTI3UDFhK1VhNHUrYVF5RUVpQndnTGRsZmdGcm1MY0FRZXRLNmM2cFI4S0krN2l5clVRRWFEZ1lEeHVSbVdENFZ4NXhWcWJCeWhNZWVsWXNndXN2U0tjMm0rakpnS0FNeituQ21HQVlyTWxNYmVyVUpkOXhiSll5dHhNWFN6dWJxWWFDY29jOGloZmhzbjR6ZS9aRWc2cE5jWkQ0Y01Yb2NjKzEzYi9iNG52dXloUFBCRnBiemVXdTcya3lWL3dUelI4TGM0Nm8zbzVzWm94Y2FZVVNINUJPczFJUDJWSjhOOThpM3hTU3daOHVWM21vdXcyNG1samt4bVIyVEt5Qmh0MW9YR1NsTldtYktuL1NSdVY5bHJtVm0xdDV5YXRkaS9Wb3FUbjhudEU4eGlsZStrYzlNWG1iQ0VmUHJvQW90cElUeERRNlZhTDZZYjhjeXM3UDNuS1dYaWQ1emNkbGg5RThKSFlBU2R0QUoxY2pWY3hKVGJrb2d5NFAzQUVpZFNBeTEvMEJIakFzOEk1a3AvYjBEU2pQYnNYUmh0cit4Rm9EWmpNWTZnTUpDTTM1a2pXc2F0cG8wc29UV3lnN3pDU2plbVl2SHprbzRyb1ZocTlxV2xXZXNDcGpHZG8rVjFRWFVQVHUzZkxzb1YvTEh6ZCsvUTRuamwrRExsOWhmdko5VzdqRldmNUtQZXlzcTN2Z3dGcGRwbGRRSElMcTBwd2dHdFVWZ3hkUnZSWXpKSHRjdHI0NTRZSm9CMWptejJWK0VhYlkwYmthTUw3eFdOeHpmYUovY1lYMjVhYitFSzkrYkR0cFNwL05TKzlwSjFCNzlQSUhDNTk3bTdmSXJkOEhkV09HeW1IUDB2bWQ2L3lZdFI0N0JUcVdHQUtnVWlpVmFDQmdYQnhWS2JFMkozZWpvY0Q3dnNyTkNBeG9sdXRsa3RRVGJCUHZrU0s4SW9yU2ZZRkpBczJCeElzc29YS0oxaWFmRzRva3JpV0cwMnlzWDNUcHVEVUF2WkFEaUJRcnRMZHFFcnJqSmhoUUd4WUZ3ZklFaCtWbFcrQmpzS2JhQjNSU0FNVFVJaDBQWnpvSitGR2laMW1RMWdCTGpBODRlcDBTZkFSdUZYV2d0WDlZVzhRZDBRNzg1eHdKUkw5N3pPUEcyNjc5eURESXQ0bDlrVTE4Z0JvdjFjaTkxdVhscUxXMHRjOVJYeVcyc1lzeFYyRkRaNkFLR2ZwUTZwVGZGWGlDdERaWWZ2S04xSUg3V240L1dCZlMzakhPSGk4N2VER3htUWRPdE9EeXRpdk5WQ0ZpdktFWUZ3Y0Fkem5TZmR4TmhRMVlNRE55ZExrQlRQWUJtaU95Z1BPY0NPUmlYQkthMFJqOFc4UTZzeGJwTDlnSmc5d3ZnTWFadXhNUU9GMkFjeGJGQ0ltRjVNUkVkcERYS3JoanhtbUt3RW9GZ0Z0QjBBTm9XNE50cWdHM0dZbFlBV3VGU1poT0xtbmQydktpNDZsSkpEOW5Zb2hLNTRwQzY2bGlZUVpKd0l1eEZyYUpQb2hkTkxEdFJRTEZCSjBNdTNGcWw2RFVIMWJNOWc3NXh2eStobmMvMFAray8zMjUwYVpoWENqMDBtS1J3TVF2N3NiTEVHRmVXR3VreGpSWDYxOVJqTm1YSlNRWHZycmdGd3ZwbTdBV0tpcnZKbkorSjI5bEh3TzRWdzhpV1owaHdGakJhem9ja05aNWRTbGozZ3BHSnJjMXNoVkhHNjNXRHBaTXNkWE1ZdXlmbTMvaGk0QS9pTUs4Q2M2VkFSczJjSkxhSjJaVWRBREhocjhJZmVwZGpwK2xKMFVVd0w1ZEtnVGxSZG9paG5reG9qWGxXSjBNZGNPeUVHbGxuYVZGb29DcTV3ZHBFMmZkWFczRk1NNXc3U0FZQWNCUHV4S0lZcXg4ckgxZldWeVZXWElHUXpsNDdtTnBtN0ppdjl0VVpZNVZpZ1dSa0VnaE9iSk1WVyt0MEF3SXZsbkgrb0d1cXF5c3pxSytPUDNSaTB6djZVaWoxTXJ2eHFDSFdZNFRlUG8xcnBmLzIwMWZWNytoWStiejlTU3lxblUvMDFHVGNkOXNlNHdvekZWMHVrMC9hQVZ3NDJZaWhpRXZwRHRPaEpDZGhZd0phOExxS2NpZVFCejJ5TTlYTnlaYWJwejhIT01TeFZWQ01NaHc3Q2dHSStPTDhLazl6THJDUWsrRk9Kek9rWEJ6REd4ckRuancwS0FBRTJldkZnSUpqME1Od1FBVk5Pa2czNXRMVVdHZkpFdjNvRFlPSjdtYk1BNkN5bFQ0MW0xcll5UkZrMTVKQmExZGVYRjRiVW1aZm9SUkdpZEJwQ096TlNOMnRKQmFpYWVuc3M1MlZaWnR4S2JqUDVZcGc1QnNRNWFYSk1uK3ZPTmN1TWRUMUdoUHVLT3gydFZUWG11SDZzakVBalo3UUdUTlpRZ2tkRG5RdFVNdnZpekN0RG1wMm1vV2RiZ1RBb3JMeEFDUDcyQXJvaEYxNmg1MWtCNXdJQ3poWE5XWXYyZGlwMlZhRkpzNkViK0JacnFBYmN1NTJCZU9nNWxLLzYxeFd4MzVZQVd2b2xtR2QvKzRaM3pENlpxQXkyV3RrOWYycXV1emNCNkNWN2JjVzhzRHVXOC9xVnVrbUc5UmhDNnZ0R0FsWmI4SFQ0eHVBVURqZThqWHVSbTExdGRGZ1pFbDFZWTRLaFNHd0swUVZqY3BCeUtoellReHNqWXhjS0pFaDR5RXNiQlhnUDFBV0drVWNQMWNqTFMyd3JFQWtFMWkraHRsb0ZKZnh4QnNzUnJUTVlzMzUrZ1lkLy9ZMW5sL3puVFpzWDRjcGZ5aUNkZ0VZaVl3WjExQUE0bHFOT1RCcWhPRUtLcFgyUkdpWXA2Mk9zUjViYXFMYmtpR0VDdDRFVXpub2ZjQ2tCRVFSTTl0MWVXWG5GYk5JN0FoVHFwTjkwWmhDekI1b2VYVVdKTkkwemxldEpxREpsenZSWGpDb010Q1BZdzR3WUFSbVVjZnlkaGNIOEFYZCtqMXVoTmQ3WmhjSUZoUjdlalFUYS8wWkZjamRlYnBMWTFORzF4a3FFTjhuczRzOWs0dTFiWmpzNkNpRnZYRVZLZ1VMWkd6R2hYRUpWV3M4cGJ1QzNjRHNrNmdmNUVQblBpY0c0N3BOaGxVYllVSmxqaEZoUjdQUUZuaG9kSDJ1WW5LTUZkeEpZWUNXRDBGajRJcjRCZWRwS3gvWnMxZlhpc01PcVgyMUZXU21rL0preGJpcndGYlZGODM0VWZod2lIR0ljWWh4aUhHSWNZanhKVWdIeWNoREc3dkhBc2NhWUFNZklzY2Vzb1M3dC9LNFczZTN2Yy91NUQ3RWViSjBBbTNlZFBQYngvcnhvOHZpYmtXTUdONEhMejd1Ym00NStLMlhIU2pQM2RYOW8vamJFZU5ROFVPTVE0dy9Xb3dIV2w4NjZkcnkzWDJPQUo3bktTUDdzL0cyNzBaa3hqd2YrU29Wckp2SnJQUTE4WmtEa2EzZnRYZncvalIvZTZPSWw1cGxzczNrZW1CY0RUWE5XbWVRRmM3TEdlemY1ZGw4MWxoVFBYVGpGOXdOb0NqSnRUQUExb0NzU3A2ajB0YzZ4aWpNa3l5cDFCc1FRMmRtMzVxd1hGSU11eEtnK0ZOS1NkT0p6NEJWdlFFeHRPQTJaR01yWkRyRkdwdSsyR0Iyb0xIWkpGM294ZDYrR0YvK2llUHB6RHB1UkRkYVpKemRpbGo3aFE4THY3b1lMT1ZsT3BHeWI4UHRpdEVtQXhXc1FiUldibGVNQXhvZVloeGl2UGppMDAxVzVlSDk1L3E0eFh2L2hOeWY5VExjcjZ6enEzNUQ1MWJ3OCttR3RicjM5Z01KU3BmZkRjNjVyQUpOVENsbXJWeVlaVDIrek9YZ21tdUZqeUFMMG5LSU03TXpDYnZFcHdETE0zVjR3cGZBdW9PWmdxdU5wVDg4a3IxTFlzQTd1KzJzeHpTN0ZDTndRZ2hBMXlQR2NtMHhwTE02ajBrWFVWdlV5QVlRZm9hY1kvYSsrdDQ5Qk1qYUE0Tit4a1RxQUxFc084emEzWG1tb3JJRWNGck9qcmtickgvdzJIRkdKbUdCRVBEUkNkZ21PUTlMeVlNSmRMMitHSStRMXFOUTd6UEFzRHhaYUtXZDkvdjhCN1Z2TkhvdnYwTEYreWlNTko1N0lwaXgvNFNORlgxa0d3cHNNZVpNYzJGb0g5MVlTY3FHUjN5U1dhMnJreExqbDNXdWlPZHF6ekJaYjlwWSs3U2VLM0gvR0tHMVgxL0pGdVBTbGhTWGl4RkRFQTB1cmxycmxHUXJtdWhSVkJhVWVjZkhHWkRaK3JnNlRFRTVNdHZCaDhvbjkvRVJUdGlacVJldGIyTmxoR0xkRk8vNFpDZ2V1VE56bEk4SUZMeFllZzFGMnFCdTF4YURKWEQ0QzlrNERHaTlWT25yR1NqS1F0QXBpYzg1QTY4U1lVeGZXZURIeEUvemJLWUFaSitNeFZCVGNSZUZpYmxOV1k4S2ZXaDdCUThBSVJOQ0hvQi9ub05kNHZrQUNMdVVsTDNlYm55L0VQVEZySlZuK25PdzY4RVBQcUxxQndaVnk4MVd6a3ZtRTJvWWlTK1lkUnJ6Y2tlcjdGRFJkUFRjbTBybGhyZHB4Vk55cTNaQVMyS0djeHk3QTdYMXl3QlVaWjBtSm42cmNXVjhoc3NlMC9jYnhMQnVwZUJ1Tk13dlREeWFLNzJDenpacnh0U0p2R3JIaHVucTF2OXlzdVlieDFTL2hka2VDUGNRNDFjN2VEQ1ZkdWoxYUV1Tk81L08xZTRmc3FtZGJiWFdNNmFBVGFSWlQyOVZqTXFxRXc5UVRweTlBMjZhYWdjMnBkc05DRFN4ZGFhczUxK3V3dDAzS3dhVC81aTd5U2R2YUJsOHlCbGJPM0ZDRXZhaWtDellNS1ZxUzFYZXNtNjhPUDJYUThVUE1RNHhEakVPTVE0eERqRU9NUTR4RGpFT01RNHhEakVPTVE0eERqRU9NUTR4RGpIK0pESCtENVhmdUpXUlFvQmNBQUFBQUVsRlRrU3VRbUNDVUVzREJCUUFDQWdJQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFNQUFBQWJHRjViM1YwTFdOaFkyaGxZMlJnWkNnUVoyQmdDT0JrWUdCUmd6SGNnUXdBVUVzSENKWVIvM29WQUFBQUd3QUFBRkJMQXdRVUFBZ0lDQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFDd0FBQUdOdmJuUmxiblF1ZUcxczdWM3JVdVBLdGY1L25xTEx1NUxhcWRqNEJneVFEU2syWS9hd0F3ekJuajJUbkVxbDJsTGI3aUNwbGU0V3h2TXI3M0IrbmRmTGs1eTFWa3V5akMvSWdBZHlObE0xWUV0OVdiMnUzMXJkRWovODhTNE0ySzNRUnFyb3NOTGNhbFNZaUR6bHkyaDRXUG5VTzYzdFZmNTQ5RjgvcU1GQWV1TEFWMTRTaXNqV1BCVlorTTJnZDJRTzNOM0RTcUtqQThXTk5BY1JENFU1c042QmlrV1U5VG9vdGo2Z3Vkd1ZZeWRCNmU3VXVOamJpanRidGpPMm5lbkwrK1ZucHNiRjNyN200N0tkc1Mwd3RkaDlvTXAydmpOQmJhQ0E2MkhNcmJ4SHhWMGdvNXZEeXNqYStLQmVINC9IVytQMmx0TERlbk4vZjc5T2QzT0N2Ynhkbk9pQVd2bGVYUVFDSnpQMTVsYXpuclVOaGVWbDZjTzJSWktpSk93TFhabzEzUEk1cVpyYllXbU51QjB1WVkwMzRycTBibERqV2ZHMi9mTGliZnZGdmlHM295VXkyYXRmd0UzNmNYRSsxUVVkbHAwTDI4Nnd5dE15THIxTTE3cllYeW1WazRvZG5JRVN1YTFHWTd2dXZoZGFqMWMySDJ0cGhTNDA5MVkyOTNqZzVSeFg0U0ttUWJ0bUhWclV4QzJxYWE3NHlBaXpwRU9yN203bmpZMi9kT2d2RitkZGJ5UkNQbTBzSDI1Y2s1R3hQSnB5UnFNUWxxNTBwNjVGckxUTkdUTW83ekJCV3EyY3RwRU5nK1htam5lenBrUHQrd3ViQWpudE9wZytHRjd0Vm9yeGQ1VVpUNzVhSWZidktRUzV4WWU2VUtPaTMxelpvZG1vWTV2Y2pFRkZwazVlRC9NNE5GQkpCSXVBMkpVeVVOekZRa3U4eFFQcWRqQXpRbEhyQS9XSUlkUFlWUmhoeHFGTEVXUWVJMS9Td21HVXFvVUdGQWdNUmNVSGhkNno4VUdIZCtXR1ErTlEvdUQraVBjY2hXZE0yeTdTaDk1MUhlL1ZNRHhDQUVobktzQ0NWdVVvd3dET2Y1aDZmbUVBV0tBMjRKNm8rY0lMek5FUHpwZm5sNW43am5RZlZrNjFFRjBlbVdhRmdkdk9Hb1V5bUV6dlZkak1DSGl6TmhRUnJCYzhpUmxMWXlyMTFiTWNhOG1EQlROazE1Y1ByMVhJbzVrV3NiUWV1UEpiRG4xUmh4K1krbHhDNUNQOVlWMFljckNBaXQveVdKay8zRy9vcm40NzRoeWpINllOMnBVZ3pZbmxDYVFWaFA4NHZaZ1lLOEtuVUhDcHJLTGxzcE9mLzhTNkoreGFESk9BNjZWY1d0YWhETHRLVVZ0ZlptSHBkWjVZMEFncnZScU5rNXNlL1p4WjIxVXpueXRkUXN3MUgyb2VqN0liY0FHUlBYMnB1VjVkQ0c4KzEzNGxHemp2Vkl2Qnl3aHRwVEJzb0FoVzEzZ2doK0FzUEJGUitIYzkvcEVZS3dlVG1nSHNDK09PbFFZSE9lQ0JnV0FBSFpXT1I4REF3MHFMdm82bHI4YjBMWmNWRFYyWXJjQ3hHVnVIM25UUnlLOXdzZG1LTFYwTGhBVnFhaWJtSHFVMEViakV0SG5BbzJIQ2g5QmFSSFRCQTlkdk5icUpUOVB4eGtJT1IzYmEwYzJmRG5zamRFVERwaXNxRUlkMDFDQzA4eWlqcG5EVERacmRUb2RHZ1Jma3QwS1lyWTBLODAwbWo1RkplNk15R1UzaWtZaklJOWNDN3Z1d1R1SU1FbG9MWkNqdGs2WFRlSXAwSWhXSlo1WlBvNHg4aXJ3UlJjZFNaSmdHc0M2akd1WjNHZGRhYzQzaXhJenVOU2t2L08xZnRmQS9kWC9Gb3Q5NU1WOWNrc0RkVjZ1YnIwT0E3emJIbjFUNVpTUnFvMVNGYlMwUTNBQ0pqYTFXYzI5ZlJnL0NvSkxMMkh2bHkxaXFBcDRLbEQ2c2ZOZWdmNVUzTUFIQzNIOWxBTzlOVEl1VHFzWnI5cTJQbE5nYkRueDhMR2x1TnMxZWFyajRMUVlOQVg2Q1l4NmdYMDVkY25aVk8wbmN2MnhWUEgreHI2ekZRbnhqcTlGczc2VTMrNUM1NDVZT1NYZ05qcnhRcnZvQ0hIbkxqWmNxd1dhVDQ5ZXZCRy94YzdGZVBDMXZ6b0dwbVczdytmTmxFallmVkp1UTZ5R0VnMVF4dHBwNzc3WlRvYVozN2lrSENWVkd2c0NvVUp0MmNMTmdMYlkyMDhUeE1sY0ozZ2NpVld5bTdGbEVXSG5lYlRieFhKYzVLMjF3aGkyTmgzbTJoZ1p0TnJ1OXg0V2RsU3dvQWRjZXlZelhuRDQzTjVnL3YzWUp2Q0hxemF2WEJ1c2E5OVdyK1UwOTNCdFNXRWNObmxZUlNadUUzT0FhWW1EQnkrOXc1bVFqTWVsNU9WU1g4bHpweldXYlNHVmx0YmR5VjVXUmxvNTJiTGQvdzVxTnhtOUtxOW51RWpVRFFOUm92TXRNYUwzTmdyNEsvR1Y2Wm5XeVFzMTJWNm9aalZ1ZW5YT3A2a3AyUHJUSzh2UE9aVWNseExqWm9MUElIYXdTMHBNQ3pwcFNtc3NaWGlXM05oK2d5M05zTGxONGNZNjlGS2dwejdPNXZPTEZlZll5dTZ6bE9UYVhCenplZTY1WFkrek5RY1NIWnA0aXJOMDliMUE2OURYWEVkL1h1N3RGT2wrZ0tRRkVxR2xYalM0ZVZvd0twTCtrQ2VBR1BGQk9BR0Z4aTNSUlJEQjlmbVoxYVQ2dnVzd0J1ckpDMjZaL214SGF4ajM3TXpOeGZnT3F2T3EvSlJjNUY5ZkQwWS9uNHY5YlREYS95L09md3NIWEZFSG50MGxlSXhkZlAzYWIzMVo0alh4OEpYaXV2dlFzZVhxanIveEovZ1Y1eCtnaHlzUUFibEVENjZvcGZTMzRqVW16OWFNZnFJVVIvMHhFTkQyMFBuL1JqZVJMRXdkOFVsT0pKU0FUaUZzUkhGWkFESFRiQ2VBc0NCSmozVE1KdUlnbkRkYkxEdGcvYlJSVXFxY084dDQ5RmtweVdjNjEySFVoeWRTbUpiRnM3cGhIOHcxNnpjclJxZFRHc29zdGRzNk56U2FBMXRsazhhcng4N1V0dk50OFlQWjI1ZWlxYzkzOWVIbDh6dDUzZXNkbjUxM1gzdkwrZExFbGFXbXRwR1huQVZLMkswZlh3a2lzdjRJVnMyUGYxOEtZQTFha1ovcXgyV3F6Q3k0ajFyVmJhNUpaZ3BERmN5NytlQ0x0cEFwa2NDdXE3Szh5Zm41cUxsUmZnaXRZd29uRkg3OTgrVkpMLzM5NWZvcmV3MktaR3JBZnBiYWpFb1JkZ0tjYnNTOWZxcXk1dnpZOXE5V3FqSXFmSEY5M090ZnM0NDgvZDA1Nlo3OTAyRzk1R1ArQjVacmYvWFJ4Y1h6OWwyK3Q3aGNUcHZyL0VKNlZ0NEpKdzZ4aWZRMXVob1VUNWlVYUMrWE1DSXVNTmpjeUNBemprYy9jTTRYb2ZMQ0RIUW5XRjVFWVNHckhHWVRNQWRnTk9HQXdJcVdIUEpKZjNUTmlZQ3pZbWtNUU1OZ1dIOFpPSUhSaGw2SG1ZWWhUNHd4ajBXYyt1a0VWNDZPTFZUWWVnZjR4Zkp1QWpCSnNCUk9uRFpCV0s3eFJKRDJZcjBEbUVJMnpRT3RBYVpwK2tOaEVpeTMyYlpVQXVIMnFWZWdZTUNUZGJlN2lNbHF0S2p0akl3NFNHQ3Q5STN4a0UyZjRmSmV3RTJ4SEQzd2FwcFd5N3E0SElVNkZ3RGNqOUMwK0RRc0QzRVJxREd6aWxvRWNMTDhSSkUwY2tZMGxxTDZDaWJYSm1WQ1FHSDdOUm9TUkl0WnFOTnRJRXdRbVQ5MEtEWk1DajJOT01xVVJsZ3FPbHRFWEltSnhvazJTcXBMd0U2K2dBYUJvdENRR0FvUTF5QWhYY0tFZ0FtbUJleWJCSk9mSWlQdEVYNnpsTFdqQVVPU0xJaWJOcUZvL2dhSGdHeFBScmRRcWNwcFRwREJiL0hzSkVFRjZscDBFUXQvOCsxLy9hOUpIV1pFZEg3aldRT0VKNHEvSnJHZC93TWpYMWFqbTAvM0toN09mUHB6RC8xNzMwZHFNeDJMd3VkOEQ2UjlXOEV0cmQyZDNkMmVuM2Q3ZGZiZmIzdDdlMjk2cnpJK1FINTdKQjZsSks4SlY2OWt1WVNMNVU5VWdVRlRwUVBqT1dFNSsvM3ZTc0pQdnFwbmxDOVFOclpMaENCUVMxRTJRWW1BajNFVEY1K1BSZjRFQ29JY3ppeGxVWDBqK2N5M25GNkVuQlJma08xTTg3bDV0WFhaNjdQdlA0T1pPOGVVRHZ5T1BaMkJHVTJXb3hrUDJvWGR4dmxObEo5MHVhNmNMZjRrVi9LVFVqTU9uQlh4VzJtZFhDSTZLWHBwOWJ3UllxdEoyb0FJSmtRUnVqSC8zRWtSMzd0SHJZbHhONFRWMG9RV2ZBTXJFQVNCd0kyQXBjYUFtdEJLS1FWcGFGRVQzeitjc2ZaYjlKZFp5QlM1T2VrZzRLQVpad21mUWJqVTI3R09YNk15K3p2aEN6TGpHRUdlenBiNEk2VjBMWG5nNHB6M0h2dW9UWVJBVnJJdEl0Sk11UFJDQmtjT0lmWDgxVWxhWmtZb2hFR1FKbmRKVkpxeTM5U0lhbFM2Rlhwc0FxekdPeVlRMUZybWppZUNhRUU1aDdRdmk5a3VzNU5qRDRBMmpqZWhWUGdjbGFaaGVXRFYvQ2NqWlMxbEVxSU84TnZJSjhVVWhVQnViK0JKOVlRb0RmQkdxaUxRQW1NemhOa21EeDFaQ1E0ZnNvRHNrNnlGb2ZuQkxkdTJoL1NJa0JNQVIzV1FBeFJjZ1FaakR3UkZiSUtib3lZQWl4RjhxQWJQS3BNMWo0SnFETVFiZ0NvOG1LWGd5VXlzRG53ZHdsd0c2OVhrU2tmdndSandJUkRRVVR0TUJ5SG9qZ210aXpDSmw0UUlBTEVRMStNNGE3QytqTGZaallsRmZCSWUySHZxbWUvZ3JBUDJLOGlWcFJPOHdna2s4VHdDRGJrUnNXUWg4aFFWcTd0MHdKQ1dnUlVKTTNHSzlNY3gyQndsSUlFaEpvZDlvdWdTQVl3RXlsUU5RRG9JSi9JeThOQ0FQZVVqUzZzWWNMSlVsTUtyOFNtUm9LOUZMUVJzMGtTQ1FROUo1SkEvNU1XVWRrWi9LQ0tad3V1aVJYT1BrNjFjQStYWVNpM1VUNnRWQTZ1a3c2L1BINnoreHpoZEkxODQ2bHllZDUwMGRkaCtZSDR6cTV5UVNCTXZadi8vMVArdzlvR1E4QjBSWDFpU2x4R1QvZmZMeDR1cjQ4aTkvcXpJQUtIZ1Nxc3A2NjZiTUplWTVCbjNHRnlPdFczQnFyeFpuaVprQnY1QkRvSERFS2JuQWNnSVFvMjB0aVVrcndiN1IvWkRxcGdtUWkxZ3pqaUpOTjhINHVIL0xLU01tVjBKaERMVS81RkV5NEI1a25KU0FDSTY1cDNHSmNnVEpGWmdsMTBOSXNjSEJTWWh4NVAzb3BSOE1RWW1QUnN5QlVDMENoRnUza255QWE3R3VsVFRmUFZVUHUrQlpjdFZyb0RLV3pvOWdkUFl6TUlNRElpN2RDYWFFaVZxUDFyM1p1bk45SGRVL3hiRHRtekhnMzgyb2YwL3drSjBMOEtUNm14dkFzY0VLQTRaQ2FKR1dBRUF0TFUvZ0FvWWVIekVYR2NBWWdobVd3VjJwaDBJTnR5NkpqOUh0ZS9nbUd4Z3JTcHk3QjJqM3owUjZOd0VaVEVnbEMraGFXRzAxalhsbnpIQ0lnUkFIWWVvWW9xcnNRenh4NTJRd0lzSEVTQmUrMGdxc291NEZpaEtqbEZ4QVVscFU2ZU1JNWczU1d4QXRSd3pmQ1liRkRxU0hocUEzVkExSEZOaXBFTUpFaUdCZkNQUHRqZWlDYTFqZDR3d29BYlppencxNi9YVUkybVNFZ1B0ZGpnZ0Y0b1FDYUdHWHdPV2xFMncvMlV4T1FURWhlMHlzSzFZR1ZJQUM3Y2Y2WGF1WldRZTRGbjlDNXNGdm5QOGZLeDJBSlV4SVNVTVhCd1I0K2Zzd2p2YlNxTFJ1WEN3S3NZc0d0QWlmcWM0MlYraTdBRUJHbXpWaklXNFlIMkFSRGtDZWpBanpucmxYU29Wb2VnblpuZUVUSUJPaUVORHNMZ0E2WTN0Z0o1U2dnRGtrQUNlVnJUS0FxWGcvaWZCNEVkZzFOTSttQitwR2l1RUJadWdYQ2xjbWhwd1Q2UG1neGxqRnE3S2RIVGJDc1Z6RkVZaHo1Z2ZESlRIV0JOQnhPRElvY05JYkdoT09BQk1QMVNOYzdTYzZ3b0NYMkt3bklFWUR1Qkl1R2dXcmdFWGRTdDhGWTRET1dLOXpEQUNvQ2w0a3hCTC8ydmE4MnBtV1VCSjhPZVhhaHJ4bUJOeUF2Zjh5clM5UFBiOGhmRG5tK0dMTytuM2xZOTlmZU84eEQvQ2Rsa0Y2OXFQVWtMbURJN1pXNWhmL0tsWCsrVFBFMEFrV1dKZGs3UnZFN0ZkNUlRcHJKcUNWUzJvZ1N5ZkprMW5PNk9XNEI1aVpIRmFNeE1TcGtsNGJhVEhJMzVSb0JBOHdSOTBDQUZuSEEvNHgxc2dXRkUvUHNJNFFDZnYzVnVQdjdyMjcxQVRSSGNUTG1XY1RmbkhYc0dXeDF6bjJ5a3NEMFJUaHVIWHgveERTbDRodnIzS1UwdVVyZkhLSXFGb2dQbDVHanU4ZW1Hd2ZpeElBWnlTQ0lpeHR1c29tMGc0K3hRZmc3VS85ak14eVlYQ2dXWjZBbXlhVU0vdU1nQTNXM1F4WVRwNWtsN2IyWm1NZDN3Q0VnMnFudFRNRER0SURIVUM4NVNySWVSRnRYWmU0dDlMMjNxMXRGZ1VaL2xvVTZwUjJta0NqWnZWcENobFN3QnRNdHlVTFNTT3hrdDdaU2lXVEtVQUhSNXhYVWNMcTV0UUtTQndqVG9EZlVRSWhBQXRoSEtMRVNFRFV4WklXMXJPcWFha0lkUzBtWFNQaUF6NkJFUDZtY3kvbnhLSjhoeW5iVlFLMTZ5Y3lzR3lRYlVFUE5lNjBzU1F1djhPNXRoYWRXU1RIV0ltYWxPL2FVcUVSREtJS0pGbENuYWwrVDkrb0RCbWRjYnZJQVpmK0JpbnNvcGZPL2tZQnFDMFFHVG5zWWwzaG1Yc2UyaTRBM3JRczZuSlM3b2VBdU4wNU0yaUZKUWJjbmZISm1QTjBOTzJzOGFTV3NRYkNoRTFycHVrd0FYaHJQSGNsUGEyd1ZnSGlBZEtRVVRQRzlmbnNsQ3lyRTFrSmlPMDBhN1N1amUydnRMSFZkeDlFWE5pZzgvN1R5WEh2N09NbCszRFc3WDFjK3p4TDgybGdITG9mWlNVbXhMRVhuSkxsbldjR3p6aU5jd1ZtSkdPWHVLMmZQZU5lVGJXOHN1S2tIeFFpOHVnUnVUWVl4cE55WVp6OU02NlR5aTBpaUYwQjg4cHRPU3BOUnlpMEFBY0hVY3Zac051N1dYQjZBeXVxazdrTkgxZEhwVU1kQUdLQ05JVW1uMUU0emdINXBxc2NZUkNWa2FXS3JNdHJjWjdNN2VWbVZFMVBFdVdSdGZ2bmM4cWhnYUlRMVNROUhKQUdZV25jRHA4VHJJeHVWWENMNEkvZTYxTFlDRUVyZEZOS2pUT1FpN1Y0OW1hc0VpQWJuSm9hUTc2c2xkc0Z6UGE2ck51bDZZZlNJcGJFMm9DS0VMMHovQk1CQXJnRmpmc1Q4aUJwOFdxNlB3VWhKRmk3V0xWYTdtWEVEZ1pFNmUzVExHbXRRaXhPZTdMb2hKRVhjR01RZUlDNW5aOTNmdXI4amRYWXhxeWlISGNhN3pMdXJKdWtQN1JaaXVQbnRTL1VqR050elFIQWVobEF0SWhIaytWOG9NSG1EOUN1bksxVjV0RHBzL3J6VWpIbDdMTFh1ZTUwZTExMmZQbWVIZVBweWJQZVdXZmQ4MDc3eTg4NzdUZDN0dmYzbSszMjl2YnUvazRLQmRPamhpSjk1TDd3aVBuYzJCczRDVlcwQUZPZk9hNHllMVNpV3F3aFZ2TXpLM1Q4RVJ4T0tDdzRIb1diWGMrNno3OGFyZThVMzBtUHQ2ZmYzRU1DOVNWL0p1cm8vd0JRU3djSXpBQXhqanNTQUFCbmFnQUFVRXNEQkJRQUNBZ0lBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQUtBQUFBYzNSNWJHVnpMbmh0Yk8xYlcyL2pOaForMzE5aHFPaStLWkxzWEd6dlpJckZBTVhPZG1ZV2FLYm9ZMEZMbE0wZFNSUklLcmJuai9XOXYyd1BieElsUzQ2Y1pJMXBreFpvRVo0TEQ3OXo0YUZJdi9saGwyZVRlOHc0b2NXdEYxMkUzZ1FYTVUxSXNiNzFmdm44b3ovM2Zuajd0emMwVFVtTWx3bU5xeHdYd3VkaW4yRStBZUdDTHpYeDFxdFlzYVNJRTc0c1VJNzVVc1JMV3VMQ0NpMWQ3cVdhU284b1pXUEZGYk1yTGZCT2pCV1d2QzFadEJvL3MySjJwUk9HdG1PRkpTOWc2b3FuZEt6d2ptZCtTdjJZNWlVU3BHUEZMaVBGbDF0dkkwUzVESUx0ZG51eG5WMVF0ZzZpeFdJUktHcHRjRnp6bFJYTEZGY1NCempEY2pJZVJCZFJZSGx6TE5CWSt5U3ZhMUpSNVN2TVJrT0RCRHJ3S3I5Zmo0NkkrL1VBTlBFR3NkR3hvWmpiN3AwbDQ5MDdTMXpaSEluTmdFL213VWNncXY5OC9OREVBc3ZIemlWNVcxREZqSlNqbDZtNVhYbEthVzJxRk5BSnFzeWRodUZsb1A5MnVMZEgyYmVNQ013Yzl2Z29lNHl5dUVhYzVuMmdBVjhVQUllUDcyV1lXbTRtRnoybytTcGd1S1JNMUlhazR3c1VvRE90MDJzajhtdzR2U1RWc3E1Wmt2U3lnam16QUZJTkF0Mi9KM2o3bmRlcW5NY2RzT2c0UUpXaGgwUVVrMXVuamdwRVlTQjU2clFCbHpSRmxhM3JzcC9TcW9CRndGWmhBTVM3RWpNaVNTaFRZc3VXQmpmS012b0lsV2F2Y0RTMENpakJtYzNRZWttOWFpajFjKzZUQWdLVGxrdEh1bFV0T0orSlB2ZDkvam1RTkYvdUhsQWZ6VHpPcGpuMTN0b2RNcVd3TzZZb3huNkM0NHkvZmFNcld6MDgwWDlMSTIrOUh4bkdkNmpna1RlQkltYVpjcEx0RzVvM2FXbVFSSCtOQzFnYzVCWGZFczY5NFBncy8yUUVaVDB6MlBGaDlZem1xR2h4bEVURVVOanVFY2pLQ0h0ZzZnOEU5Z0hsM2NrZHFFeDdyUGc3S2luL1I1ZFJqNTdQT0EzMHc3WUIzd2pUdEZ1ZVlKcmovTWZGeFo0TG5EL0ZnazlVVUxYY3lidC8velM1ZXpmNUdhK3JETEZCbElZRXhzQTF5dHBnS01QTXVHNUo3YW9TbktJcU00MnExV3dNWGpOVWJranNXVjd6dDE5Q2NjQk1FR2hzNVNLNVlQUUxodFlpbzlETGZEZTd2TDVDbDk1RVZrb29IbGxXVTI2bWl6U0cyRTdwY2d1cWZGb0tWUmdLNnN1L2pRamZvSVJ1ZmJDV1krSHZicjN3SW9ybUVTbDY2ZnREdW9EK3hJZDJEdnU4UkRFMGsvNkdNdktWeWhLbnVhUExZOXozY20xeER5L3NnS1AxSHZEMmFUVndaN0NjTFJFYlg3Zm9LY3E0RTNjbFlrZ2gzOEpka1NTL2p5cEI1U1FRakNUQlZMT2lyTndnTzRHeVk4VXdndllYbkVWaVlTbXlCNUhHNVRRQjhZejVZdFVLTDFJa1dHNzg4aWpqcnNZYWFXMkViUlFpaUpaY3h0K3cyVFc3dFB0Z05SWEhBRU1obmFzbU4yRWpXSVZiUmcyVlRBZ3JSZWZrSzlDamFTblVXSWFLZFlYV01JUUxOUkREVmlvWUJNNHZkelZDV01DVzUzL0JyRkNyNjUzVGg0NElGVWRUdmhHUVJsaUJLTHk0S212TXJUMlcrblZqS2NZd1MzajM2ZEFFMmI5bmVEZFEzdFNrTll0R29ETnBUZDJRN3JRMTZmMG5yL0ZqcTBDTXFScTE0NzJqRVF5TzJPekxEUzZVRC8wTUpRbDRRTm1pS2tKR2NsS2JQekxReTZxSVJhVVZ5b29DcTRSMWcwY2Z6Z1Fid1g1Q29DUVVjaEx3V3BPazdVd3BBY29tUTEvRCtWc1BaemZhc0MxZTNSQmtPRWVrOE9YNTFzYmg5SUNwclBpbXcvS0VYTkhIRDZlS1p0Z05KUDBsWlVXWlRBMFplYkI3UUJobHFPUXlxSjg2c2Mvb3RqTTVqSFNTOUF2R3BTL29Hb3VOL0ZRaGsvQ2hpZDBKZFhUZlFVb2xpQ1hlWUsyd3pzc1E1MkFlWkZTVFg0ZjYvb1ZSNHFUMW9Eb1lxTC9DK2YybUZESjVYWWJQTVBEYk5QeHRSWk45bjFrUFZiVWNNU2c1QUZtcHR2cnJhMVZGR3NLS0NpSFA3K0ZGT0o4cG1qNnd4UkR5OFA4S1pkMWR0bmFEYWhJSzFTU2diSXYyL0tFYU5GQmdWS0xaK3ZML2IrSzdwZXl5U2VUSFZTTmpnaEY1WWw5dDFReDExNWJlTEdlb0x2YXU2M2lKTTZhTVlyTDIxc3lERnRjY3d6WTNaVlZhM1NUMEE0bmNseHl3WTVZWjJqdnBNM0hKVDBuT1IrZmRZTW90YnFaalUwNDFDeHRNMWhzaGQ1L3crL0V3ZllBbTRqSHJQMUo3TXFseVJMYTNJbkk2S2lLalp3eEorNkZsSEU3dmtEb0NQbU9vQURBTW5WaWpiUjErVW8xV1Z5YjZnNzQ2S3ZFMlJRV1QvZDRmRHRmdGdhNVBqMGtKYUg3aHZBbW44dEZPMTZnWmFvL3dtWUppWEdmbldGelRqYzJqbytvOUhGaDN6eGhUUk9rN0dsUFA1UDAvYXg2L2wxK01DNnhxbDc1STY5c2FMTmZFWmFrN1VyZkc5MlNGL1lnVXdqL3pzSE1VK3JyYnRjOUNCUzNxVFU4cHE4Q0hUSC9DMEZuRWFVYVNBWll0U2VTMWxPcDErem1NTmMzQmJ2QTR0S3Nqc1hNZWNrMDhQTS8weU5VMEpYbmdHeFZvdEJMTklsc3UrbyttZUIzR0ROL2p6TERyVUpVREVISjFmMXpsdnJ4SlE3QUoxdjZSbTVFUjdTYUJTNktjcUVNVFpKV3FsOWgrYUVJcklFTlNyd3Q1ODlDbnRzTmlkS3ZCRkU1QWRJc1RmN1hYMnlJY1hSdzRlbTBENnRDeVJ3SXlmUVdrRGNqc0ZaQTJJSmV2Z0xRQnVYb0ZwQTNJOVNzZ2JVQnVYZ0ZwQXpKL0JhUU55T0lWa0U1akZyNGdSTm9rRnlhbDY3REwvZlhYVDFVZWVTNlRvOUFjd1lZYjNaTGhsRUNIL2NmdmZTQkg1alNuNzR6dlVWYkpXNkp2R0hwNUpGSUhGNkt1Y0c4OVA3eVlkajUxWkRnVjlxNXJwS3NHWUQwQjlGWXp6YXRVZ1g3UmovazNERzh6ZVgxOWFPZVhrTjVZcU1mNjRPYXNUcGk5QUNkRUoza2dPaWY4bHk4Qi9nYm9rUjdRNDJkend0V0xjTUtwUGppckM2NWZoQXRPM0F1aU0rOEZOeS9BQ2RPVFBEQTlKL3p6bHdEL3FYdkI5TXg3d2VKRk9PRlVINXpWQmUzRDdWL1dCeWR1QnRQbjJRd2NzbnVTTHFqQTNJOXBrWkoxWlo3KzFBVGZYSUdtbEFyNTl3bkhZajFvQmJrRGdIbzk2Y3BvQytYelNxblAvdVJGTG5pOGhiaEloZ3drL1FZR2RXQVd1TEdnYjVyQmUxMzlDRjI5ODFwY082OUYrK0F4V2hvWXBITU5qUlF4VTc4dGxCMXBmVHRzSDlkSnZDQUc5N1FTelNWMFBYUjRmMnpHMTR4QXBKc3JiUlBzNmlYbzRmTzkxZ3hCNTRjQzVrOTVHd29MSXJGdkNRZW10RDdGZkN6ekprY0g3SVZJVnhSejRUcXZxNU1hcmQvZVJJUElHdTNnT2VGVFJ1VFBtRXlNVVNZWUlzTHJQdmVJMmhsbVgzcEVSMDRqempnekZobUNudjdJSzNyWEZmWUdPdzdsdjMwY0pzS20wL2wxTDMyRmVJTks4N2J3a0pGVnEzM0QyTStqclczZlFuYzBRSUdUUDJJMEVYL0lwSEEvUWpmWC8wYzQxSXFNOTJGQmwxYzMvY2J5QXNsWHFOMm56THEyK0RuYXRWYmIvR1RITUhCY1dsL1p1Y0x3eGdrcisrb2JsZ3pScFFRVTAyd3g3MkZDcVh4ZTNjc3orTVFBSmYrdHVOQTVyak5manpPbzA5YW83NXNyLytheFF4ZzZDZHVmUjNhOUc0emtTMkgxUitDQzRBd2VLbW95L2pERkRTRkh2TlpSejJZR3BhYWpqMzFkbTUzUzRQeFVxYU0rNlA4Vi9kdi9BVkJMQndoN0IrUDFld2tBQUlVL0FBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFBZ0FBQUJ0WlhSaExuaHRiSTJTUzIrRE1CQ0U3LzBWeU0wVnpDc1BMQ0JTRHoxRjZxV1Zlb3Njc3dHM1lDUGJoUHo4OG94b21rT1B6SHpMem80Yzc2OVZhVjFBYVM1RmdqekhSUllJSmpNdThnUjl2TC9hTzdSUG4ySjVQbk1HSkpPc3FVQVl1d0pEclc1VWFESmFDV3FVSUpKcXJvbWdGV2hpR0pFMWlIbUVMR2t5TEJxVmE4bkZkNElLWTJxQ2NkdTJUaHM0VXVYWWk2SUlEKzZNWnV6RzFZMHFCeXBqR0Vyb04yanNPUjZlMlQ3aGYwUDE3REtTbFBLMnFNZkgwTU02MzNWRFBIN1BkSzZ5ckh4MFFNY0d1RXRJRGJVdkhOcG5aRTNuTHdyM1VUcTMyOGRJNHlITXJXaHRxT0hhY0dZTnVxR25FbXdtRzJFUzFPVWRSRjdSL0k4b1QxL0F6TDFhTDhqZ3BpbWFLMW9YczdIMkpxZVZLcHZGcmIrYlZGWjBBOHlBbXExdzQvbVRKNlN3MjRJYjBEVmwzYVo3TklpOEVPSHB5QndFS0dxa1NnLzhwT0J0YUFHdkhkL1pPdjdxd0VWelBYN3VOc2ROYUMyQVk2MWtmMXBYYitXdVhocGVacllmNDdzL3h2aFhxZmpSQTA1L0FGQkxCd2djenZIVGJnRUFBUDRDQUFCUVN3TUVGQUFJQ0FnQStXblhUZ0FBQUFBQUFBQUFBQUFBQUF3QUFBQnpaWFIwYVc1bmN5NTRiV3k5V3Q5ejJqZ1FmcisvSXNON0NpUzVUTU1rZEF3cExWY1NHRXlidWI0SmV3RWRzdFlqeVFIKysxdkprS1lFWHltMjdnbndqMTFwZDcvZGIxZmNmbGduNHV3WmxPWW83MnJOZDQzYUdjZ0lZeTduZDdXdms5NzUrOXFIOWgrM09KdnhDRm94UmxrQzBweHJNSVllMFdmMHV0U3QvUFpkTFZPeWhVeHozWklzQWQweVVRdFRrTHZYV3ErZmJqbGwrWlcxNEhKNVYxc1lrN2JxOWRWcTlXNTErUTdWdk42OHVibXB1N3U3UnlPVU16NC9WbFgrOUd0VmlQaWl5TDZRTDhZcHUyZzBydXI1NzlyWmRwR3ZUSE5SYSsvc3NOdCsrM2FySVA4NDV3WVNhNXV6N1dXN3RMc2FxV3c5YzFpOVdLMTI2TDJmMy9sR3p3Y0syQVRUMnU2TzJhUjBSNkNjMTlxTjIvcGJFY2VMSGNETStKRDd4R096T0NqNDRxWjVlVkZPK0dmZzg4WGhaVGYvYkY1ZW55WTlYT0JxRERIRkdIUVhUTTVCNzJtWUlncGdzdFkyS29QVGRQUmxSK0ZLd3dQR1VDUjl4b1ErV3Z4NXd0SnpMbU5ZUS96V1dJY0R6TDFEMEZDYjQwemVqL2VXcW8zaTF0ZzJsa3U0c2pEMm1wZU5SZ201UlZDNWJGdzFUNVdxK1ZSQTlXQnhZaXVIdHBNNkxzU0lSV0E1UTNUUUdFd0tBWGgxbXZEdmlNbUVSTzFIMndLVktaV1FCbXlEbWVtaXlCSzVEK3F0OUpQdHNaUGVRVnhXaHVxM2R1bXh5S0FxV0h2alJOdjBkUWdDSWdOeFQ5R0ZFNVorNE9McjdGSjBlNXV3RGo5QXhmSDRjcHBmeUJRelZKeC9wNjZPS0lXWmtVS2RrZ0U4T00zSnR3bGp4THhVa256OUpMdkRvdVZjWVNiM3MzUlZTcnBJemtUaGF3K0JsR2ljK3c3QXB4ejJuZnhQaXFVTEh2bGF2a3V6UG4zY1krdkh0K0RjbHVENjBZR1NndW9wVEVJdzJYNjFxU3pjSjdBMkk4RWlXS0NJWVQ5YlZhRW1TRk94R1RIRjV0YXJEMHd0ZTZnU1ppYjRtQ1ZUY0RieDVHZXdIUUFVZ3F6RXBpWnNPaVRodEpzNWx4N2tmeVRMeEQxQ2NXR0lsaEFlWnNvbEgrdjdKM0pLbURBaHF2ZkJqeXhudlcvTmRhL1l5dVg2NnZmVUZUeE5JUjd4eUdTcUdOZ2xOUFFFTW1NWVVhbEhUSnpmZldqNUtxZlVMUzJkbWgwOGZPaHhBUlp1Tk4zd0ZXWmJqTXdFcmp3QmZHTE41Q3VKaDJSNUFYL2gxQXNFTGVTNkxOVWpVQkV4THlwRzE5YytZSUZDa0JiNG1LUm0wd1VoTEJTck45aUVZblpyc0p5eWQyd1FCOXFSSGZ2Vnc5WWVtRmwwbUFiYi9BZUN6NlVkSFZXL3RTRE9tZlp3TmlPcTZpTVcrbnJBcGlEdXQ5TXZYNVVlVkNsT01zeU10ZlNBYXFyNG00T0k5Uy9MZHhtYnpDVXE2SEdsellDMDlxbjVrS1l2ZmFyOG1zYk1nQ1ZjRTBoU1FkODlKWllPMGEybHg2UXJZSXlyTHdBK09LTXJHekhFOTR3cUlZR3ZWRWpsVHFZVjYwREdaQlc1MUVRTnJiKzdURVNaY0IyR0QwOXJHSXA0QzRvSG9QVVd0eHBsWWxoUzlUTWRWTVNydzVSRmZzSTJaTS93U2VDVXZTUVFNdURTVTJqcE1WaXZQTU1FYzBoNlVEUFdmSit4azZOcTdhdjNsMWVuamhoL21oeU1Kd05mT2RhVjJmL3NMTXMyVWhTN3lvTFBVMjc2ekFuZDBqWUdQallRdTA3QXBhZ3RJQUlUR3FZOGxPMmVMVkZCWmpCUDY5VXJ5Sk9JejRKMHdGdytHT0tDZEVTVUNMdVlwTlE1MlJPenlpZTZOa2w5eTAvamhySXJVUHVZdWRxZEdKOHUzMVlNbS9uc2FhVk50VzZPWEhEVXN1RHp4VGxabEFpeExXU25rc012b0dTZ09aT2pURkp6NjdFbzJya01xT0gwSDBxU0k5VGNhdklXMmhRT2hrZE1lQ2JYWVRZMU5yNTdZa01zSTZJb2hqaHd2L3doZGd2V0NUcm8ycTdMUTQ5S3VqNnVLUm9sRXdOZ3NaY3BXamRUaXFKOFIvYnNaNGlaaWs2bmZJRVF1SEk0b3NhNnkyUUVIZ1pQVk9nTmhiQU5aNTlBc1VUVlgxNTJSdnJWd0t4VStjcDNzUnNDcHA2Nktya21QUkY4QjRVVXI3OEkxWExzTkhDSE56a3hKYVV2TTJmZGx3T3V2WERWL0w4SDI0Q2pkUGtGTnZ0cUNEalhWeDB1bWRvY04vdkg5RlZraFF0bDZmeExKK3dCNUNpSmNmOEloS0drQ2tEcDN4TzFIeVB1ZTZJMHZRL05Sb0IreEh1WXNVeDRZSk8ycGNwWlJmR0IxNG5IMFc1MFJjRWJHa3gzUmJmNkRkempJNXEvTW0zNGJHUERTRDl4czNoZ01tUEMxM3pPcVJ3RDFYVUx4TUFZWmJ0N0lzeDI5T0dEL3YxY3JJak9Ka3pHQjZpc0M3Y1RpZXdBV1R5bUhJWlN2QUY2VlRicnN0U2VZZGpjVDBqVVEya2J5di9OWU9VT0xVRWRQSzM4elJ4b0QzTUMvZEtaN0hqYms2SkhGWEUzeHhsUFNWQ0YvMTJvdi9sellMM29iNVB0ZndGUVN3Y0lwTlFlS0NFR0FBQjRLUUFBVUVzREJCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFjQUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJGalkyVnNaWEpoZEc5eUwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOTBiMjlzY0dGdVpXd3ZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMlpzYjJGMFpYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQVlBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMjFsYm5WaVlYSXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWZBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMMmx0WVdkbGN5OUNhWFJ0WVhCekwxQkxBd1FVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBRU52Ym1acFozVnlZWFJwYjI1ek1pOXdiM0IxY0cxbGJuVXZVRXNEQkJRQUFBZ0FBUGxwMTA0QUFBQUFBQUFBQUFBQUFBQWNBQUFBUTI5dVptbG5kWEpoZEdsdmJuTXlMM0J5YjJkeVpYTnpZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR0FBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5MGIyOXNZbUZ5TDFCTEF3UVVBQUFJQUFENWFkZE9BQUFBQUFBQUFBQUFBQUFBR2dBQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0RCQlFBQ0FnSUFQbHAxMDRBQUFBQUFBQUFBQUFBQUFBTUFBQUFiV0Z1YVdabGMzUXVjbVJtWFk5QmJvTXdFRVgzbk1KeTF2WUV1aWtva0EzcUFYb0RhZ1pxTmN4WUhsT1MyOWUxb2k2Ni9QcFAvK2xmcnZmdHByNHhpbWZxZFczUFdpRTVuajJ0dmQ3VFlsNzFkYWd1Y1Y2NjkvRk5aWnFreTZuWG55bUZEdUE0RG51OFdJNHIxRzNid3JtQnBqR1pNUEtnTk4wTnlVa1BsVkpsWTBSeDBZZVViZW8zVHgrOHAxNFg0SW1rUjhEU1JSVGVvOE0vMWN4T0xFL2l4WEJBS2s0UzRHWHhEcUcyRFd5WUpnaGY2MmxrdDI5SVNVTlJ3ejkzZmdUUFMwUDFBMUJMQndna0krVHh1d0FBQUFRQkFBQlFTd01FRkFBSUNBZ0ErV25YVGdBQUFBQUFBQUFBQUFBQUFCVUFBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld5dFU4MXF3ekFNdnZjcGdxOGo5dGJUTUUxN0dPd0p1Z2RRSFNVeDJIS0k1ZEs4L1pMU05obWowRUJ1bHZSSjM2Y2Y3dzRYNzdJemR0RUdLc1NIZkJjWmtnbWxwYm9RUDhmdi9GTWM5cHVkQjdJVlJ0YjNSemJrVVh5WWhVZ2Q2UURSUmszZ01XbzJPclJJWlRESkk3SCtpOWRYcG9jMUU3QVYrMDAyOFZYV1lUN2tkLzJFcnBKemVRdmNGRUk5S3pLNVBaWVdjdTViTEFTMHJiTUdlSUNwTTVYeUtsak9kVXJHQ3d1MVJNT3hTZjVFWUYxVWZIL0tsdW9uR3F5SEd0VVlYOFRpb0ErSmN3T213UmU2TzFtQ3JsOUdZUUx4T0lKaFZVOFl4dUdvTWJ5b2J1VGVZVnk5ckVlRzliVWk4M0Q3NjZ2OUNsVFpPblhYOWNTdGV2RkNZNkpSaWt4V21ubUZoYU82K1dSWFZpOFFENmkzVzRNNzllL3I3MzhCVUVzSENDZmlnOFllQVFBQU5RUUFBRkJMQVFJVUFCUUFBQWdBQVBscDEwNWV4aklNSndBQUFDY0FBQUFJQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUJ0YVcxbGRIbHdaVkJMQVFJVUFCUUFBQWdBQVBscDEwN3krNTdmTVJzQUFERWJBQUFZQUFBQUFBQUFBQUFBQUFBQUFFMEFBQUJVYUhWdFltNWhhV3h6TDNSb2RXMWlibUZwYkM1d2JtZFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT2xoSC9laFVBQUFBYkFBQUFEQUFBQUFBQUFBQUFBQUFBQUFDMEd3QUFiR0Y1YjNWMExXTmhZMmhsVUVzQkFoUUFGQUFJQ0FnQStXblhUc3dBTVk0N0VnQUFaMm9BQUFzQUFBQUFBQUFBQUFBQUFBQUFBeHdBQUdOdmJuUmxiblF1ZUcxc1VFc0JBaFFBRkFBSUNBZ0ErV25YVG5zSDQvVjdDUUFBaFQ4QUFBb0FBQUFBQUFBQUFBQUFBQUFBZHk0QUFITjBlV3hsY3k1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT0hNN3gwMjRCQUFEK0FnQUFDQUFBQUFBQUFBQUFBQUFBQUFBcU9BQUFiV1YwWVM1NGJXeFFTd0VDRkFBVUFBZ0lDQUQ1YWRkT3BOUWVLQ0VHQUFCNEtRQUFEQUFBQUFBQUFBQUFBQUFBQUFET09RQUFjMlYwZEdsdVozTXVlRzFzVUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJ3QUFBQUFBQUFBQUFBQUFBQUFLVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTloWTJObGJHVnlZWFJ2Y2k5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdnQUFBQUFBQUFBQUFBQUFBQUJqUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDNSdmIyeHdZVzVsYkM5UVN3RUNGQUFVQUFBSUFBRDVhZGRPQUFBQUFBQUFBQUFBQUFBQUdBQUFBQUFBQUFBQUFBQUFBQUNiUUFBQVEyOXVabWxuZFhKaGRHbHZibk15TDJac2IyRjBaWEl2VUVzQkFoUUFGQUFBQ0FBQStXblhUZ0FBQUFBQUFBQUFBQUFBQUJnQUFBQUFBQUFBQUFBQUFBQUEwVUFBQUVOdmJtWnBaM1Z5WVhScGIyNXpNaTl0Wlc1MVltRnlMMUJMQVFJVUFCUUFBQWdBQVBscDEwNEFBQUFBQUFBQUFBQUFBQUFmQUFBQUFBQUFBQUFBQUFBQUFBZEJBQUJEYjI1bWFXZDFjbUYwYVc5dWN6SXZhVzFoWjJWekwwSnBkRzFoY0hNdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBUkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2IzQjFjRzFsYm5VdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCd0FBQUFBQUFBQUFBQUFBQUFBZkVFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5d2NtOW5jbVZ6YzJKaGNpOVFTd0VDRkFBVUFBQUlBQUQ1YWRkT0FBQUFBQUFBQUFBQUFBQUFHQUFBQUFBQUFBQUFBQUFBQUFDMlFRQUFRMjl1Wm1sbmRYSmhkR2x2Ym5NeUwzUnZiMnhpWVhJdlVFc0JBaFFBRkFBQUNBQUErV25YVGdBQUFBQUFBQUFBQUFBQUFCb0FBQUFBQUFBQUFBQUFBQUFBN0VFQUFFTnZibVpwWjNWeVlYUnBiMjV6TWk5emRHRjBkWE5pWVhJdlVFc0JBaFFBRkFBSUNBZ0ErV25YVGlRajVQRzdBQUFBQkFFQUFBd0FBQUFBQUFBQUFBQUFBQUFBSkVJQUFHMWhibWxtWlhOMExuSmtabEJMQVFJVUFCUUFDQWdJQVBscDEwNG40b1BHSGdFQUFEVUVBQUFWQUFBQUFBQUFBQUFBQUFBQUFCbERBQUJOUlZSQkxVbE9SaTl0WVc1cFptVnpkQzU0Yld4UVN3VUdBQUFBQUJJQUVnQ2ZCQUFBZWtRQUFBQUE=\"    \n          }\n  }\n\n</code></pre>","urlObject":{"path":["application","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5b0e77f8-2cfe-43a3-81b2-263ecffb6fbe","name":"Application Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n  \t\"api_request_query\": {  \t\r\n  \t\t\"job\": {\r\n  \t\t\t\"id\": \"64711\",\r\n  \t\t\t\"title\": \"Job Title\",\r\n  \t\t\t\"company_name\": \"Company Name\",\r\n  \t\t\t\"location\": \"PA\",\r\n  \t\t\t\"referral_source\": \"Indeed\",\r\n  \t\t\t\"url\": \"https://ca.indeed.com/jobs?q=&l=remote&from=searchOnHP&vjk=492585e30515ed44\"\r\n  \t\t},\r\n  \t\t\"candidate\": {\r\n  \t\t\t\"first_name\": \"Jones\",\r\n            \"last_name\": \"Does\",\r\n  \t\t\t\"email\": \"jones.does@mailinator.com\",\r\n  \t\t\t\"cell_phone\": \"9992996301\",\r\n  \t\t\t\"address1\": \"124 test street\",\r\n  \t\t\t\"city\": \"Salt Lake City\",\r\n  \t\t\t\"state\": \"UT\",\r\n  \t\t\t\"zip\": \"84116\",\r\n  \t\t\t\"country\": \"US\",\r\n            \"resume\": {\r\n                \"mime_type\": \"application/pdf\",\r\n  \t\t        \"file_name\": \"My_Resume.pdf\",\r\n  \t\t        \"file_data\": \"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dF0KPj4KZW5kb2JqCgoxIDAgb2JqCjw8L1R5cGUvUGFnZS9QYXJlbnQgNSAwIFIvUmVzb3VyY2VzIDIyIDAgUi9NZWRpYUJveFswIDAgNjEyIDc5Ml0vQW5ub3RzWwo0IDAgUiBdCi9Hcm91cDw8L1MvVHJhbnNwYXJlbmN5L0NTL0RldmljZVJHQi9JIHRydWU+Pi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNSAwIG9iago8PC9UeXBlL1BhZ2VzCi9SZXNvdXJjZXMgMjIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgXQovQ291bnQgMT4+CmVuZG9iagoKNCAwIG9iago8PC9UeXBlL0Fubm90L1N1YnR5cGUvTGluay9Cb3JkZXJbMCAwIDBdL1JlY3RbMzk3LjE0MyAzODIuNiA0MTAuNTU3IDM5NS4zXS9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKGh0dHA6Ly93d3cucGVybHRrLm9yZy8pPj4KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNSAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI1MTQyMjAyLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCAyNQowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMzYwMTQgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTc2IDAwMDAwIG4gCjAwMDAwMzYyNzMgMDAwMDAgbiAKMDAwMDAzNjE3NCAwMDAwMCBuIAowMDAwMDAzMTk3IDAwMDAwIG4gCjAwMDAwMTc5MTcgMDAwMDAgbiAKMDAwMDAxNzkzOSAwMDAwMCBuIAowMDAwMDE4MTM0IDAwMDAwIG4gCjAwMDAwMTg3MTUgMDAwMDAgbiAKMDAwMDAxOTE0MCAwMDAwMCBuIAowMDAwMDI3NDM0IDAwMDAwIG4gCjAwMDAwMjc0NTYgMDAwMDAgbiAKMDAwMDAyNzY2MyAwMDAwMCBuIAowMDAwMDI4MDg4IDAwMDAwIG4gCjAwMDAwMjgzNzQgMDAwMDAgbiAKMDAwMDAzNTA4MSAwMDAwMCBuIAowMDAwMDM1MTAzIDAwMDAwIG4gCjAwMDAwMzUzMDcgMDAwMDAgbiAKMDAwMDAzNTY3MyAwMDAwMCBuIAowMDAwMDM1OTA2IDAwMDAwIG4gCjAwMDAwMzU5NTkgMDAwMDAgbiAKMDAwMDAzNjQxOSAwMDAwMCBuIAowMDAwMDM2NTE2IDAwMDAwIG4gCnRyYWlsZXIKPDwvU2l6ZSAyNS9Sb290IDIzIDAgUgovSW5mbyAyNCAwIFIKL0lEIFsgPDg5MDgwMTc1NzAxRUU3ODcwQzdDNzcxRkYwNUEwNTEyPgo8ODkwODAxNzU3MDFFRTc4NzBDN0M3NzFGRjA1QTA1MTI+IF0KL0RvY0NoZWNrc3VtIC8yREJEQUM0QzI5RkRDQzQ2REY3RTZGMzU1Q0VBN0MzMwo+PgpzdGFydHhyZWYKMzY2OTEKJSVFT0YK\"\r\n            }\r\n  \t\t},\r\n  \t\t\"language\": \"en_US\"\r\n  \t\t}\r\n  \t}\r\n}"},"url":"{{ats-bugfix-connect}}/application/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Nov 2022 18:30:36 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"37254"},{"key":"X-SASnode","value":"ip-172-26-12-220.us-east-2.compute.internal"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"852136"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/application/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {\n            \"success\": true\n        },\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": 0,\n            \"CALL_STATUS\": 1,\n            \"CALL_REQUEST\": \"Application SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"0.374523\",\n            \"CALL_ACTION\": \"POST\",\n            \"TIMESTAMP\": \"2022-11-09T18:30:37\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Success\",\n            \"VENDOR\": \"zenople\"\n        },\n        \"api_status\": 1,\n        \"api_xstatus\": \"200 OK\"\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": {\n            \"values\": \"{\\\"applicant\\\":{\\\"resume\\\":{\\\"file\\\":{\\\"fileName\\\":\\\"My_Resume.pdf\\\",\\\"data\\\":\\\"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dF0KPj4KZW5kb2JqCgoxIDAgb2JqCjw8L1R5cGUvUGFnZS9QYXJlbnQgNSAwIFIvUmVzb3VyY2VzIDIyIDAgUi9NZWRpYUJveFswIDAgNjEyIDc5Ml0vQW5ub3RzWwo0IDAgUiBdCi9Hcm91cDw8L1MvVHJhbnNwYXJlbmN5L0NTL0RldmljZVJHQi9JIHRydWU+Pi9Db250ZW50cyAyIDAgUj4+CmVuZG9iagoKNSAwIG9iago8PC9UeXBlL1BhZ2VzCi9SZXNvdXJjZXMgMjIgMCBSCi9NZWRpYUJveFsgMCAwIDYxMiA3OTIgXQovS2lkc1sgMSAwIFIgXQovQ291bnQgMT4+CmVuZG9iagoKNCAwIG9iago8PC9UeXBlL0Fubm90L1N1YnR5cGUvTGluay9Cb3JkZXJbMCAwIDBdL1JlY3RbMzk3LjE0MyAzODIuNiA0MTAuNTU3IDM5NS4zXS9BPDwvVHlwZS9BY3Rpb24vUy9VUkkvVVJJKGh0dHA6Ly93d3cucGVybHRrLm9yZy8pPj4KPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNSAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tVVMpCj4+CmVuZG9iagoKMjQgMCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzYwMDJFMDAzMT4KL0NyZWF0aW9uRGF0ZShEOjIwMjEwNzI1MTQyMjAyLTA0JzAwJyk+PgplbmRvYmoKCnhyZWYKMCAyNQowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMzYwMTQgMDAwMDAgbiAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAzMTc2IDAwMDAwIG4gCjAwMDAwMzYyNzMgMDAwMDAgbiAKMDAwMDAzNjE3NCAwMDAwMCBuIAowMDAwMDAzMTk3IDAwMDAwIG4gCjAwMDAwMTc5MTcgMDAwMDAgbiAKMDAwMDAxNzkzOSAwMDAwMCBuIAowMDAwMDE4MTM0IDAwMDAwIG4gCjAwMDAwMTg3MTUgMDAwMDAgbiAKMDAwMDAxOTE0MCAwMDAwMCBuIAowMDAwMDI3NDM0IDAwMDAwIG4gCjAwMDAwMjc0NTYgMDAwMDAgbiAKMDAwMDAyNzY2MyAwMDAwMCBuIAowMDAwMDI4MDg4IDAwMDAwIG4gCjAwMDAwMjgzNzQgMDAwMDAgbiAKMDAwMDAzNTA4MSAwMDAwMCBuIAowMDAwMDM1MTAzIDAwMDAwIG4gCjAwMDAwMzUzMDcgMDAwMDAgbiAKMDAwMDAzNTY3MyAwMDAwMCBuIAowMDAwMDM1OTA2IDAwMDAwIG4gCjAwMDAwMzU5NTkgMDAwMDAgbiAKMDAwMDAzNjQxOSAwMDAwMCBuIAowMDAwMDM2NTE2IDAwMDAwIG4gCnRyYWlsZXIKPDwvU2l6ZSAyNS9Sb290IDIzIDAgUgovSW5mbyAyNCAwIFIKL0lEIFsgPDg5MDgwMTc1NzAxRUU3ODcwQzdDNzcxRkYwNUEwNTEyPgo8ODkwODAxNzU3MDFFRTc4NzBDN0M3NzFGRjA1QTA1MTI+IF0KL0RvY0NoZWNrc3VtIC8yREJEQUM0QzI5RkRDQzQ2REY3RTZGMzU1Q0VBN0MzMwo+PgpzdGFydHhyZWYKMzY2OTEKJSVFT0YK\\\",\\\"contentType\\\":\\\"application/pdf\\\"}},\\\"sSN\\\":\\\"\\\",\\\"zipCode\\\":\\\"84116\\\",\\\"fullName\\\":\\\"Jones Does\\\",\\\"country\\\":\\\"US\\\",\\\"address2\\\":null,\\\"state\\\":\\\"UT\\\",\\\"email\\\":\\\"jones.does@mailinator.com\\\",\\\"city\\\":\\\"Salt Lake City\\\",\\\"address1\\\":\\\"124 test street\\\",\\\"phoneNumber\\\":\\\"9992996301\\\"},\\\"locale\\\":\\\"en_US\\\",\\\"job\\\":{\\\"jobTitle\\\":\\\"Job Title\\\",\\\"jobCompany\\\":\\\"Company Name\\\",\\\"jobUrl\\\":\\\"https://ca.indeed.com/jobs?q=&l=remote&from=searchOnHP&vjk=492585e30515ed44\\\",\\\"referralSource\\\":\\\"Indeed\\\",\\\"jobId\\\":\\\"64711\\\",\\\"jobPortal\\\":\\\"Haley\\\",\\\"jobLocation\\\":\\\"PA\\\"}}\",\n            \"call\": \"https://ascendapi.aqore.com/api/job/JobApply\"\n        },\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.435719\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_application\"\n    },\n    \"atsconnect_message\": \"200 OK\"\n}"}],"_postman_id":"781df495-d6ee-407c-aa8e-b90c21a71e61"}],"id":"cc3c6872-e58c-424a-91c1-2fe6d6559284","_postman_id":"cc3c6872-e58c-424a-91c1-2fe6d6559284","description":""},{"name":"Candidate","item":[{"name":"Candidate Get","id":"61b0dd6d-e283-4c6d-a9ce-a635e412a681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url-}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {\r\n    \"api_request_query\": {\t\t\r\n\t}\r\n  }\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"53439795-791e-499f-bbb0-9028f99ebb44","name":"Candidate Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:19:45 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"351"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660393"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:19:46\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:19:46\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.021143\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"61b0dd6d-e283-4c6d-a9ce-a635e412a681"},{"name":"Candidate Set","id":"b900c554-f189-4a1e-b0b7-d379d8538bbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>Not implemented by Zenople.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"2e87e3e8-537a-424e-a4c8-c6ea14ddcb2c","name":"Candidate Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:21:02 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"351"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377111"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:21:02\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:21:02\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.019893\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"b900c554-f189-4a1e-b0b7-d379d8538bbe"},{"name":"Candidate Update","id":"cd89fd5a-d608-4539-ae3a-6320f5c27abf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set","description":"<p>For updating candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"1c27f934-4a1b-40be-a926-d37282852c33","name":"Candidate Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"},{"key":"","type":"text","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:22:23 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"350"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660399"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:22:23\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:22:23\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004779\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"cd89fd5a-d608-4539-ae3a-6320f5c27abf"},{"name":"Candidate Get By ID","id":"9af8f6a7-e121-42e4-9093-ef69499c2553","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving candidate data.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"db858082-3daf-463f-a93d-3f0791d83401","name":"Candidate Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:23:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"350"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377114"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:23:26\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:23:26\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004746\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"9af8f6a7-e121-42e4-9093-ef69499c2553"},{"name":"Candidate Search","id":"f73b8f64-a1db-41d3-b241-582710039072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get","description":"<p>For retrieving all candidates matching search criteria.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b88bd00a-a23e-4208-9b80-2cc5db3b8923","name":"Candidate Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:24:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"350"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377117"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:24:11\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:24:11\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004666\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"f73b8f64-a1db-41d3-b241-582710039072"},{"name":"Candidate Set Education","id":"c27d08ee-f9dd-49c8-b977-16b0464e2c6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"d45b6b0a-72aa-408a-9e26-0c7ee5bd215d","name":"Candidate Set Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:25:16 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"358"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660402"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:25:16\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:25:16\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003236\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c27d08ee-f9dd-49c8-b977-16b0464e2c6c"},{"name":"Candidate Get Education","id":"a253ed39-887d-4352-aef7-f4eda77c10c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/","description":"<p>For submitting a candidate's education record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","education",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"5542d7bd-b4e4-4308-8e43-76c9a152cac8","name":"Candidate Get Education","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/education/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:26:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"359"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377120"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/education/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Education GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:26:06\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:26:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003892\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"a253ed39-887d-4352-aef7-f4eda77c10c8"},{"name":"Candidate Set Work History","id":"6d54bf67-fb64-4570-8e1e-3cbd47eea460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","set","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"91873029-77d5-4eb4-82df-29e9f9c01d35","name":"Candidate Set Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/set/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:26:44 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"363"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377123"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/set/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:26:44\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:26:44\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003428\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"6d54bf67-fb64-4570-8e1e-3cbd47eea460"},{"name":"Candidate Get Work History","id":"c618fd34-233c-4db4-9064-43a246e42d6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/","description":"<p>For submitting a candidate's work history.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["candidate","get","workhistory",""],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"b320e47d-b242-4cb8-a54a-11fe411fec3f","name":"Candidate Get Work History","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/candidate/get/workhistory/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:27:26 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"362"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660405"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/candidate/get/workhistory/"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Candidate Work History GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:27:26\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:27:26\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003069\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_candidate\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"c618fd34-233c-4db4-9064-43a246e42d6a"}],"id":"005ddb2f-fadf-4e0e-beba-ead1c8c89e60","_postman_id":"005ddb2f-fadf-4e0e-beba-ead1c8c89e60","description":""},{"name":"Custom","item":[{"name":"Custom","id":"d623c661-12a9-4419-b20d-2f3e67545d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/custom","description":"<p>Allows arbitrary API calls to be sent to Zenople via ATS-Connect</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["custom"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"ddce072a-7b59-4b75-a7ec-ff7eaaa9a6a5","name":"Custom","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"{{apikey}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:16:06 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"347"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660390"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/custom"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Custom\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:16:06\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:16:06\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.025722\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_custom\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"d623c661-12a9-4419-b20d-2f3e67545d6f"}],"id":"3695b46f-3871-4301-ad35-a414d2f2f1af","_postman_id":"3695b46f-3871-4301-ad35-a414d2f2f1af","description":""},{"name":"File Upload","item":[{"name":"File Upload","id":"9999e689-98cf-44c6-b8b4-5e3fdbc2128d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["file","upload"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"a5d1f1d9-7818-4ef0-b86c-c3d3120a13f5","name":"File Upload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/file/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:29:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"348"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377129"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/file/upload"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"File Upload\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:29:11\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:29:11\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004492\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_file\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"9999e689-98cf-44c6-b8b4-5e3fdbc2128d"}],"id":"92a2dc6e-0edd-4858-90cf-f8bd331d7a2c","_postman_id":"92a2dc6e-0edd-4858-90cf-f8bd331d7a2c","description":""},{"name":"Note","item":[{"name":"Note Set","id":"8e29fbe4-8f61-4350-99cd-e8944f4d1413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set","description":"<p>For creating a candidate record</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["note","set"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"615728dd-7de6-49f2-b892-87d877b09e2d","name":"Note Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n     \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n     },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/note/set"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:17:54 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"344"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377108"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/note/set"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Note SET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:17:54\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:17:54\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.024\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_note\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"8e29fbe4-8f61-4350-99cd-e8944f4d1413"}],"id":"1d711b6b-1de7-43eb-8eec-aa1114b6a1a0","event":[{"listen":"prerequest","script":{"id":"e8c5b8dc-eb91-43de-bd8d-c28c55f16127","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ca863a8d-804c-42e1-acb1-08265d504b46","type":"text/javascript","exec":[""]}}],"_postman_id":"1d711b6b-1de7-43eb-8eec-aa1114b6a1a0","description":""},{"name":"Job","item":[{"name":"Job Get","id":"20e2b83a-593f-4cb1-9fe3-1af9b6d5541f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving all jobs.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"0bd571f8-d658-46fe-90ec-600640b7a781","name":"Job Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:31:46 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"349"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"660408"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:31:46\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:31:46\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004558\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"20e2b83a-593f-4cb1-9fe3-1af9b6d5541f"},{"name":"Job Get By ID","id":"04df1676-9802-4054-bd28-f2a28b12f02b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get","description":"<p>For retrieving job details by job ID.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["job","get"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"96aa0bcc-19c9-4b96-be7e-a5f3d4509911","name":"Job Get By ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_secret}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 0,\r\n    \"api_verbose_dump\": 0\r\n  },\r\n  \"api_request_data\": {\r\n  \t  \t\"api_request_query\": {\r\n  \t\t\t\"id\": 9999\r\n  \t  \t}\r\n  }\r\n}"},"url":"{{ats-connect}}/job/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:36:42 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"348"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377138"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/job/get"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Jobs GET\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:36:42\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:36:42\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.003108\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_job\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"04df1676-9802-4054-bd28-f2a28b12f02b"}],"id":"f2b1275b-db0b-40a1-9ffc-f8aafb7ef26c","_postman_id":"f2b1275b-db0b-40a1-9ffc-f8aafb7ef26c","description":""},{"name":"Resume","item":[{"name":"Resume Parse","id":"669de343-5d52-4255-b14b-0edf27a450fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{client_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{client_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse","description":"<p>For uploading a file attachment to a candidate record.</p>\n\n<p><b>Not Implemented</b></p>","urlObject":{"path":["resume","parse"],"host":["{{ats-connect}}"],"query":[],"variable":[]}},"response":[{"id":"002433c4-f255-4d43-acc3-4642d67b23b3","name":"Resume Parse","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"*/*"},{"key":"apiKey","type":"text","value":"{{apikey}}"}],"body":{"mode":"raw","raw":"{\r\n  \"api_connect_data\": {\r\n    \"api_connection\": {\r\n      \"api_un\": \"{{api_un}}\",\r\n      \"api_pw\": \"{{api_pw}}\",\r\n      \"api_id\": \"{{api_id}}\",\r\n      \"api_url\": \"{{api_url}}\",\r\n      \"api_secret\": \"{{api_secret}}\"\r\n    },\r\n    \"vendor\": \"zenople\",\r\n    \"api_sandbox\":1,\r\n    \"api_performance_dump\": 1,\r\n    \"api_verbose_dump\": 1\r\n  },\r\n  \"api_request_data\": {}\r\n}"},"url":"{{ats-connect}}/resume/parse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Dec 2021 21:28:31 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS)"},{"key":"Content-Length","value":"350"},{"key":"X-SASnode","value":"release-host.ats-connect.com"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"0"},{"key":"ServerNode","value":"(null)"},{"key":"Vary","value":"User-Agent"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Varnish-Debug-TTL","value":"0.000"},{"key":"X-Cacheable","value":"NO:Not Cacheable"},{"key":"X-Varnish","value":"1377126"},{"key":"Age","value":"0"},{"key":"Via","value":"1.1 varnish-v4"},{"key":"X-Cache","value":"MISS"},{"key":"X-Varnish-Debug-Hits","value":"0"},{"key":"X-Varnish-Debug-Age","value":"0"},{"key":"X-APIVERSION","value":"1.1"},{"key":"X-APIAUTH-VAL","value":"valid"},{"key":"X-ORIKEY","value":"11111-22222-33333-44444-55555"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-ENDPOINT","value":"/resume/parse"},{"key":"Connection","value":"keep-alive"},{"key":"Accept-Ranges","value":"bytes"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_response\": {\n        \"api_data\": {},\n        \"api_log\": {\n            \"CALL_ATTEMPTS\": null,\n            \"CALL_STATUS\": 0,\n            \"CALL_REQUEST\": \"Resume Parse\",\n            \"CLIENT_ID\": null,\n            \"CALL_TIME\": \"2021-12-29T21:28:31\",\n            \"CALL_ACTION\": null,\n            \"TIMESTAMP\": \"2021-12-29T21:28:31\",\n            \"APIKEY\": \"xxxxxxxxxxxxxxxxxx\",\n            \"MESSAGE\": \"Error - Not Implemented\",\n            \"VENDOR\": \"zenople\",\n            \"ERROR_TYPE\": \"ATS\"\n        },\n        \"api_status\": 0\n    },\n    \"atsconnect_status\": 1,\n    \"atsconnect_ticket\": {\n        \"api_version\": \"1.1\",\n        \"request\": \"\",\n        \"vendor\": \"zenople\",\n        \"elapsed\": \"0.004591\",\n        \"key\": \"xxxxxxxxxxxxxxxxxx\",\n        \"fn\": \"_api_resume\"\n    },\n    \"atsconnect_message\": \"Error - Not Implemented\"\n}"}],"_postman_id":"669de343-5d52-4255-b14b-0edf27a450fc"}],"id":"930078c8-23c4-4bff-a3ee-3a934fbd0667","event":[{"listen":"prerequest","script":{"id":"fb9f1590-3e44-4af4-9200-a128fea3ba00","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2582b237-a07e-4e3c-9ca4-f67ed2bcf73f","type":"text/javascript","exec":[""]}}],"_postman_id":"930078c8-23c4-4bff-a3ee-3a934fbd0667","description":""}],"id":"33c3b029-0c44-4da4-98b4-44bc18cc82ca","_postman_id":"33c3b029-0c44-4da4-98b4-44bc18cc82ca","description":""}],"event":[{"listen":"prerequest","script":{"id":"c821d4c9-1496-4b1b-9726-c575b471de01","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d081d775-a095-4792-83cc-486c6023fb9d","type":"text/javascript","exec":[""]}}]}